diff --git a/go.mod b/go.mod index ca10a8a0..2a0b1780 100644 --- a/go.mod +++ b/go.mod @@ -27,7 +27,6 @@ require ( github.com/grafana/pyroscope-go v1.2.0 github.com/hashicorp/golang-lru/v2 v2.0.7 github.com/inspektor-gadget/inspektor-gadget v0.35.0 - github.com/kinbiko/jsonassert v1.2.0 github.com/kubescape/backend v0.0.25 github.com/kubescape/go-logger v0.0.23 github.com/kubescape/k8s-interface v0.0.177 @@ -201,6 +200,7 @@ require ( github.com/json-iterator/go v1.1.12 // indirect github.com/kastenhq/goversion v0.0.0-20230811215019-93b2f8823953 // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect + github.com/kinbiko/jsonassert v1.2.0 // indirect github.com/klauspost/compress v1.17.9 // indirect github.com/klauspost/pgzip v1.2.6 // indirect github.com/knqyf263/go-rpmdb v0.1.1 // indirect diff --git a/main.go b/main.go index 695190e8..1d17cca1 100644 --- a/main.go +++ b/main.go @@ -25,7 +25,6 @@ import ( "github.com/kubescape/node-agent/pkg/containerwatcher/v1" "github.com/kubescape/node-agent/pkg/dnsmanager" "github.com/kubescape/node-agent/pkg/exporters" - "github.com/kubescape/node-agent/pkg/filehandler/v1" "github.com/kubescape/node-agent/pkg/healthmanager" "github.com/kubescape/node-agent/pkg/malwaremanager" malwaremanagerv1 "github.com/kubescape/node-agent/pkg/malwaremanager/v1" @@ -43,13 +42,10 @@ import ( objectcachev1 "github.com/kubescape/node-agent/pkg/objectcache/v1" "github.com/kubescape/node-agent/pkg/processmanager" processmanagerv1 "github.com/kubescape/node-agent/pkg/processmanager/v1" - "github.com/kubescape/node-agent/pkg/relevancymanager" - relevancymanagerv1 "github.com/kubescape/node-agent/pkg/relevancymanager/v1" rulebinding "github.com/kubescape/node-agent/pkg/rulebindingmanager" rulebindingcachev1 "github.com/kubescape/node-agent/pkg/rulebindingmanager/cache" "github.com/kubescape/node-agent/pkg/rulemanager" rulemanagerv1 "github.com/kubescape/node-agent/pkg/rulemanager/v1" - "github.com/kubescape/node-agent/pkg/sbomhandler/syfthandler" "github.com/kubescape/node-agent/pkg/sbommanager" sbommanagerv1 "github.com/kubescape/node-agent/pkg/sbommanager/v1" "github.com/kubescape/node-agent/pkg/seccompmanager" @@ -194,23 +190,6 @@ func main() { applicationProfileManager = applicationprofilemanager.CreateApplicationProfileManagerMock() } - // Create the relevancy manager - var relevancyManager relevancymanager.RelevancyManagerClient - if cfg.EnableRelevancy { - fileHandler, err := filehandler.CreateInMemoryFileHandler() - if err != nil { - logger.L().Ctx(ctx).Fatal("failed to create the filehandler for relevancy manager", helpers.Error(err)) - } - - sbomHandler := syfthandler.CreateSyftSBOMHandler(storageClient) - relevancyManager, err = relevancymanagerv1.CreateRelevancyManager(ctx, cfg, clusterData.ClusterName, fileHandler, k8sClient, sbomHandler, preRunningContainersIDs) - if err != nil { - logger.L().Ctx(ctx).Fatal("error creating the relevancy manager", helpers.Error(err)) - } - } else { - relevancyManager = relevancymanager.CreateRelevancyManagerMock() - } - // Create the network and DNS managers var networkManagerClient networkmanager.NetworkManagerClient var dnsManagerClient dnsmanager.DNSManagerClient @@ -282,7 +261,7 @@ func main() { var profileManager nodeprofilemanager.NodeProfileManagerClient if cfg.EnableNodeProfile { // FIXME validate the HTTPExporterConfig before we use it ? - profileManager = nodeprofilemanagerv1.NewNodeProfileManager(cfg, *clusterData, cfg.NodeName, k8sObjectCache, relevancyManager, ruleManager) + profileManager = nodeprofilemanagerv1.NewNodeProfileManager(cfg, *clusterData, cfg.NodeName, k8sObjectCache, ruleManager) } else { profileManager = nodeprofilemanager.NewNodeProfileManagerMock() } @@ -320,7 +299,7 @@ func main() { } // Create the container handler - mainHandler, err := containerwatcher.CreateIGContainerWatcher(cfg, applicationProfileManager, k8sClient, igK8sClient, relevancyManager, networkManagerClient, dnsManagerClient, prometheusExporter, ruleManager, malwareManager, sbomManager, preRunningContainersIDs, &ruleBindingNotify, containerRuntime, nil, nil, processManager) + mainHandler, err := containerwatcher.CreateIGContainerWatcher(cfg, applicationProfileManager, k8sClient, igK8sClient, networkManagerClient, dnsManagerClient, prometheusExporter, ruleManager, malwareManager, sbomManager, preRunningContainersIDs, &ruleBindingNotify, containerRuntime, nil, nil, processManager) if err != nil { logger.L().Ctx(ctx).Fatal("error creating the container watcher", helpers.Error(err)) } diff --git a/pkg/applicationprofilemanager/v1/applicationprofile_manager.go b/pkg/applicationprofilemanager/v1/applicationprofile_manager.go index c895bb66..a5fcb0b4 100644 --- a/pkg/applicationprofilemanager/v1/applicationprofile_manager.go +++ b/pkg/applicationprofilemanager/v1/applicationprofile_manager.go @@ -97,10 +97,14 @@ func (am *ApplicationProfileManager) ensureInstanceID(container *containercollec return fmt.Errorf("failed to get workload: %w", err) } pod := wl.(*workloadinterface.Workload) - + // fill container type, index and names + if watchedContainer.ContainerType == utils.Unknown { + if err := watchedContainer.SetContainerInfo(pod, container.K8s.ContainerName); err != nil { + return fmt.Errorf("failed to set container info: %w", err) + } + } // get pod template hash watchedContainer.TemplateHash, _ = pod.GetLabel("pod-template-hash") - // find parentWlid kind, name, err := am.k8sClient.CalculateWorkloadParentRecursive(pod) if err != nil { @@ -117,7 +121,7 @@ func (am *ApplicationProfileManager) ensureInstanceID(container *containercollec return fmt.Errorf("failed to validate WLID: %w", err) } watchedContainer.ParentResourceVersion = w.GetResourceVersion() - // find instanceID + // find instanceID - this has to be the last one instanceIDs, err := instanceidhandler.GenerateInstanceID(pod) if err != nil { return fmt.Errorf("failed to generate instanceID: %w", err) @@ -128,10 +132,6 @@ func (am *ApplicationProfileManager) ensureInstanceID(container *containercollec watchedContainer.InstanceID = instanceIDs[i] } } - // fill container type, index and names - if watchedContainer.ContainerType == utils.Unknown { - watchedContainer.SetContainerInfo(pod, container.K8s.ContainerName) - } return nil } @@ -370,6 +370,7 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon ObjectMeta: metav1.ObjectMeta{ Name: slug, Annotations: map[string]string{ + helpersv1.InstanceIDMetadataKey: watchedContainer.InstanceID.GetStringNoContainer(), helpersv1.WlidMetadataKey: watchedContainer.Wlid, helpersv1.CompletionMetadataKey: string(watchedContainer.GetCompletionStatus()), helpersv1.StatusMetadataKey: string(watchedContainer.GetStatus()), @@ -377,9 +378,9 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon Labels: utils.GetLabels(watchedContainer, true), }, } - addContainers := func(containers []v1beta1.ApplicationProfileContainer, containerNames []string) []v1beta1.ApplicationProfileContainer { - for _, name := range containerNames { - seccompProfile, err := am.seccompManager.GetSeccompProfile(name, watchedContainer.SeccompProfilePath) + addContainers := func(containers []v1beta1.ApplicationProfileContainer, containerInfos []utils.ContainerInfo) []v1beta1.ApplicationProfileContainer { + for _, info := range containerInfos { + seccompProfile, err := am.seccompManager.GetSeccompProfile(info.Name, watchedContainer.SeccompProfilePath) if err != nil { logger.L().Ctx(ctx).Error("ApplicationProfileManager - failed to get seccomp profile", helpers.Error(err), helpers.String("slug", slug), @@ -388,7 +389,7 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon helpers.String("k8s workload", watchedContainer.K8sContainerID)) } containers = append(containers, v1beta1.ApplicationProfileContainer{ - Name: name, + Name: info.Name, Endpoints: make([]v1beta1.HTTPEndpoint, 0), Execs: make([]v1beta1.ExecCalls, 0), Opens: make([]v1beta1.OpenCalls, 0), @@ -396,14 +397,16 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon Syscalls: make([]string, 0), PolicyByRuleId: make(map[string]v1beta1.RulePolicy), SeccompProfile: seccompProfile, + ImageTag: info.ImageTag, + ImageID: info.ImageID, }) } return containers } newObject.Spec.Architectures = []string{runtime.GOARCH} - newObject.Spec.Containers = addContainers(newObject.Spec.Containers, watchedContainer.ContainerNames[utils.Container]) - newObject.Spec.InitContainers = addContainers(newObject.Spec.InitContainers, watchedContainer.ContainerNames[utils.InitContainer]) - newObject.Spec.EphemeralContainers = addContainers(newObject.Spec.EphemeralContainers, watchedContainer.ContainerNames[utils.EphemeralContainer]) + newObject.Spec.Containers = addContainers(newObject.Spec.Containers, watchedContainer.ContainerInfos[utils.Container]) + newObject.Spec.InitContainers = addContainers(newObject.Spec.InitContainers, watchedContainer.ContainerInfos[utils.InitContainer]) + newObject.Spec.EphemeralContainers = addContainers(newObject.Spec.EphemeralContainers, watchedContainer.ContainerInfos[utils.EphemeralContainer]) // enrich container newContainer := utils.GetApplicationProfileContainer(newObject, watchedContainer.ContainerType, watchedContainer.ContainerIndex) utils.EnrichApplicationProfileContainer(newContainer, capabilities, observedSyscalls, execs, opens, endpoints, rulePolicies, watchedContainer.ImageID, watchedContainer.ImageTag) @@ -433,12 +436,12 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon helpers.String("k8s workload", watchedContainer.K8sContainerID)) } else { var replaceOperations []utils.PatchOperation - containerNames := watchedContainer.ContainerNames[watchedContainer.ContainerType] + containerNames := watchedContainer.ContainerInfos[watchedContainer.ContainerType] // check existing container existingContainer := utils.GetApplicationProfileContainer(existingObject, watchedContainer.ContainerType, watchedContainer.ContainerIndex) if existingContainer == nil { - name := containerNames[watchedContainer.ContainerIndex] - seccompProfile, err := am.seccompManager.GetSeccompProfile(name, watchedContainer.SeccompProfilePath) + info := containerNames[watchedContainer.ContainerIndex] + seccompProfile, err := am.seccompManager.GetSeccompProfile(info.Name, watchedContainer.SeccompProfilePath) if err != nil { logger.L().Ctx(ctx).Error("ApplicationProfileManager - failed to get seccomp profile", helpers.Error(err), helpers.String("slug", slug), @@ -448,7 +451,7 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon } logger.L().Debug("ApplicationProfileManager - got seccomp profile", helpers.Interface("profile", seccompProfile)) existingContainer = &v1beta1.ApplicationProfileContainer{ - Name: containerNames[watchedContainer.ContainerIndex], + Name: info.Name, Endpoints: make([]v1beta1.HTTPEndpoint, 0), Execs: make([]v1beta1.ExecCalls, 0), Opens: make([]v1beta1.OpenCalls, 0), @@ -456,6 +459,8 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon Syscalls: make([]string, 0), PolicyByRuleId: make(map[string]v1beta1.RulePolicy), SeccompProfile: seccompProfile, + ImageTag: info.ImageTag, + ImageID: info.ImageID, } } // update it @@ -480,8 +485,8 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon } // 3b. ensure the slice has all the containers for i := len(existingContainers); i < len(containerNames); i++ { - name := containerNames[i] - seccompProfile, err := am.seccompManager.GetSeccompProfile(name, watchedContainer.SeccompProfilePath) + info := containerNames[i] + seccompProfile, err := am.seccompManager.GetSeccompProfile(info.Name, watchedContainer.SeccompProfilePath) if err != nil { logger.L().Ctx(ctx).Error("ApplicationProfileManager - failed to get seccomp profile", helpers.Error(err), helpers.String("slug", slug), @@ -493,7 +498,7 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon Op: "add", Path: fmt.Sprintf("/spec/%s/%d", watchedContainer.ContainerType, i), Value: v1beta1.ApplicationProfileContainer{ - Name: name, + Name: info.Name, Endpoints: make([]v1beta1.HTTPEndpoint, 0), Execs: make([]v1beta1.ExecCalls, 0), Opens: make([]v1beta1.OpenCalls, 0), @@ -501,6 +506,8 @@ func (am *ApplicationProfileManager) saveProfile(ctx context.Context, watchedCon Syscalls: make([]string, 0), PolicyByRuleId: make(map[string]v1beta1.RulePolicy), SeccompProfile: seccompProfile, + ImageTag: info.ImageTag, + ImageID: info.ImageID, }, }) } diff --git a/pkg/config/config.go b/pkg/config/config.go index 1dff1a92..8d597c30 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -29,7 +29,6 @@ type Config struct { EnableRuntimeDetection bool `mapstructure:"runtimeDetectionEnabled"` EnableHttpDetection bool `mapstructure:"httpDetectionEnabled"` EnableNetworkTracing bool `mapstructure:"networkServiceEnabled"` - EnableRelevancy bool `mapstructure:"relevantCVEServiceEnabled"` EnableNodeProfile bool `mapstructure:"nodeProfileServiceEnabled"` NodeProfileInterval time.Duration `mapstructure:"nodeProfileInterval"` EnableSeccomp bool `mapstructure:"seccompServiceEnabled"` diff --git a/pkg/config/config_test.go b/pkg/config/config_test.go index e0a3831e..cf0d0f36 100644 --- a/pkg/config/config_test.go +++ b/pkg/config/config_test.go @@ -23,7 +23,6 @@ func TestLoadConfig(t *testing.T) { EnableFullPathTracing: true, EnableApplicationProfile: true, EnableMalwareDetection: true, - EnableRelevancy: true, EnableNetworkTracing: true, EnableNodeProfile: true, EnableHttpDetection: true, diff --git a/pkg/containerwatcher/v1/container_watcher.go b/pkg/containerwatcher/v1/container_watcher.go index 3bcb44d4..ef303cbc 100644 --- a/pkg/containerwatcher/v1/container_watcher.go +++ b/pkg/containerwatcher/v1/container_watcher.go @@ -27,7 +27,7 @@ import ( "github.com/kubescape/node-agent/pkg/config" "github.com/kubescape/node-agent/pkg/containerwatcher" "github.com/kubescape/node-agent/pkg/dnsmanager" - events "github.com/kubescape/node-agent/pkg/ebpf/events" + "github.com/kubescape/node-agent/pkg/ebpf/events" tracerhardlink "github.com/kubescape/node-agent/pkg/ebpf/gadgets/hardlink/tracer" tracerhardlinktype "github.com/kubescape/node-agent/pkg/ebpf/gadgets/hardlink/types" tracerhttp "github.com/kubescape/node-agent/pkg/ebpf/gadgets/http/tracer" @@ -45,7 +45,6 @@ import ( "github.com/kubescape/node-agent/pkg/metricsmanager" "github.com/kubescape/node-agent/pkg/networkmanager" "github.com/kubescape/node-agent/pkg/processmanager" - "github.com/kubescape/node-agent/pkg/relevancymanager" rulebinding "github.com/kubescape/node-agent/pkg/rulebindingmanager" "github.com/kubescape/node-agent/pkg/rulemanager" "github.com/kubescape/node-agent/pkg/sbommanager" @@ -91,7 +90,6 @@ type IGContainerWatcher struct { applicationProfileManager applicationprofilemanager.ApplicationProfileManagerClient igK8sClient *containercollection.K8sClient k8sClient *k8sinterface.KubernetesApi - relevancyManager relevancymanager.RelevancyManagerClient networkManager networkmanager.NetworkManagerClient dnsManager dnsmanager.DNSManagerClient ruleManager rulemanager.RuleManagerClient @@ -162,7 +160,7 @@ type IGContainerWatcher struct { var _ containerwatcher.ContainerWatcher = (*IGContainerWatcher)(nil) -func CreateIGContainerWatcher(cfg config.Config, applicationProfileManager applicationprofilemanager.ApplicationProfileManagerClient, k8sClient *k8sinterface.KubernetesApi, igK8sClient *containercollection.K8sClient, relevancyManager relevancymanager.RelevancyManagerClient, networkManagerClient networkmanager.NetworkManagerClient, dnsManagerClient dnsmanager.DNSManagerClient, metrics metricsmanager.MetricsManager, ruleManager rulemanager.RuleManagerClient, malwareManager malwaremanager.MalwareManagerClient, sbomManager sbommanager.SbomManagerClient, preRunningContainers mapset.Set[string], ruleBindingPodNotify *chan rulebinding.RuleBindingNotify, runtime *containerutilsTypes.RuntimeConfig, thirdPartyEventReceivers *maps.SafeMap[utils.EventType, mapset.Set[containerwatcher.EventReceiver]], thirdPartyEnricher containerwatcher.ThirdPartyEnricher, processManager processmanager.ProcessManagerClient) (*IGContainerWatcher, error) { // Use container collection to get notified for new containers +func CreateIGContainerWatcher(cfg config.Config, applicationProfileManager applicationprofilemanager.ApplicationProfileManagerClient, k8sClient *k8sinterface.KubernetesApi, igK8sClient *containercollection.K8sClient, networkManagerClient networkmanager.NetworkManagerClient, dnsManagerClient dnsmanager.DNSManagerClient, metrics metricsmanager.MetricsManager, ruleManager rulemanager.RuleManagerClient, malwareManager malwaremanager.MalwareManagerClient, sbomManager sbommanager.SbomManagerClient, preRunningContainers mapset.Set[string], ruleBindingPodNotify *chan rulebinding.RuleBindingNotify, runtime *containerutilsTypes.RuntimeConfig, thirdPartyEventReceivers *maps.SafeMap[utils.EventType, mapset.Set[containerwatcher.EventReceiver]], thirdPartyEnricher containerwatcher.ThirdPartyEnricher, processManager processmanager.ProcessManagerClient) (*IGContainerWatcher, error) { // Use container collection to get notified for new containers containerCollection := &containercollection.ContainerCollection{} // Create a tracer collection instance tracerCollection, err := tracercollection.NewTracerCollection(containerCollection) @@ -221,7 +219,6 @@ func CreateIGContainerWatcher(cfg config.Config, applicationProfileManager appli metrics.ReportEvent(utils.ExecveEventType) processManager.ReportEvent(utils.ExecveEventType, &event) applicationProfileManager.ReportFileExec(k8sContainerID, path, event.Args) - relevancyManager.ReportFileExec(event.Runtime.ContainerID, k8sContainerID, path) rulePolicyReporter.ReportEvent(utils.ExecveEventType, &event, k8sContainerID, event.Comm) // Report exec events to event receivers @@ -251,7 +248,6 @@ func CreateIGContainerWatcher(cfg config.Config, applicationProfileManager appli metrics.ReportEvent(utils.OpenEventType) applicationProfileManager.ReportFileOpen(k8sContainerID, path, event.Flags) - relevancyManager.ReportFileOpen(event.Runtime.ContainerID, k8sContainerID, path) ruleManager.ReportEvent(utils.OpenEventType, &event) malwareManager.ReportEvent(utils.OpenEventType, &event) @@ -426,7 +422,6 @@ func CreateIGContainerWatcher(cfg config.Config, applicationProfileManager appli applicationProfileManager: applicationProfileManager, igK8sClient: igK8sClient, k8sClient: k8sClient, - relevancyManager: relevancyManager, networkManager: networkManagerClient, dnsManager: dnsManagerClient, ruleManager: ruleManager, diff --git a/pkg/containerwatcher/v1/container_watcher_private.go b/pkg/containerwatcher/v1/container_watcher_private.go index 1a5ad9ba..812953d5 100644 --- a/pkg/containerwatcher/v1/container_watcher_private.go +++ b/pkg/containerwatcher/v1/container_watcher_private.go @@ -60,7 +60,6 @@ func (ch *IGContainerWatcher) containerCallback(notif containercollection.PubSub logger.L().Info("monitoring time ended", helpers.String("container ID", notif.Container.Runtime.ContainerID), helpers.String("k8s workload", k8sContainerID)) ch.timeBasedContainers.Remove(notif.Container.Runtime.ContainerID) ch.applicationProfileManager.ContainerReachedMaxTime(notif.Container.Runtime.ContainerID) - ch.relevancyManager.ContainerReachedMaxTime(notif.Container.Runtime.ContainerID) ch.networkManager.ContainerReachedMaxTime(notif.Container.Runtime.ContainerID) ch.unregisterContainer(notif.Container) }) @@ -86,7 +85,6 @@ func (ch *IGContainerWatcher) startContainerCollection(ctx context.Context) erro containerEventFuncs := []containercollection.FuncNotify{ ch.containerCallback, ch.applicationProfileManager.ContainerCallback, - ch.relevancyManager.ContainerCallback, ch.networkManager.ContainerCallback, ch.malwareManager.ContainerCallback, ch.ruleManager.ContainerCallback, @@ -204,7 +202,7 @@ func (ch *IGContainerWatcher) startTracers() error { } logger.L().Info("Started syscall tracing") } - if ch.cfg.EnableRelevancy || ch.cfg.EnableApplicationProfile { + if ch.cfg.EnableApplicationProfile || ch.cfg.EnableRuntimeDetection { // Start exec tracer if err := ch.startExecTracing(); err != nil { logger.L().Error("error starting exec tracing", helpers.Error(err)) @@ -323,7 +321,7 @@ func (ch *IGContainerWatcher) stopTracers() error { errs = errors.Join(errs, err) } } - if ch.cfg.EnableRelevancy || ch.cfg.EnableApplicationProfile || ch.cfg.EnableRuntimeDetection { + if ch.cfg.EnableApplicationProfile || ch.cfg.EnableRuntimeDetection { // Stop exec tracer if err := ch.stopExecTracing(); err != nil { logger.L().Error("error stopping exec tracing", helpers.Error(err)) diff --git a/pkg/containerwatcher/v1/open_test.go b/pkg/containerwatcher/v1/open_test.go index e2bcae50..2a6d0a56 100644 --- a/pkg/containerwatcher/v1/open_test.go +++ b/pkg/containerwatcher/v1/open_test.go @@ -1,28 +1,20 @@ package containerwatcher import ( - "context" "testing" traceropentype "github.com/inspektor-gadget/inspektor-gadget/pkg/gadgets/trace/open/types" "github.com/inspektor-gadget/inspektor-gadget/pkg/types" "github.com/kubescape/node-agent/pkg/config" - "github.com/kubescape/node-agent/pkg/filehandler/v1" "github.com/kubescape/node-agent/pkg/metricsmanager" - "github.com/kubescape/node-agent/pkg/relevancymanager/v1" "github.com/stretchr/testify/assert" ) func BenchmarkIGContainerWatcher_openEventCallback(b *testing.B) { cfg := config.Config{} - ctx := context.TODO() - fileHandler, err := filehandler.CreateInMemoryFileHandler() - assert.NoError(b, err) - relevancyManager, err := relevancymanager.CreateRelevancyManager(ctx, cfg, "cluster", fileHandler, nil, nil, nil) - assert.NoError(b, err) mockExporter := metricsmanager.NewMetricsMock() - mainHandler, err := CreateIGContainerWatcher(cfg, nil, nil, nil, relevancyManager, nil, nil, mockExporter, nil, nil, nil, nil, nil, nil, nil, nil, nil) + mainHandler, err := CreateIGContainerWatcher(cfg, nil, nil, nil, nil, nil, mockExporter, nil, nil, nil, nil, nil, nil, nil, nil, nil) assert.NoError(b, err) event := &traceropentype.Event{ Event: types.Event{ diff --git a/pkg/networkmanager/v2/network_manager.go b/pkg/networkmanager/v2/network_manager.go index 9f8ee757..44067baa 100644 --- a/pkg/networkmanager/v2/network_manager.go +++ b/pkg/networkmanager/v2/network_manager.go @@ -82,10 +82,14 @@ func (nm *NetworkManager) ensureInstanceID(container *containercollection.Contai return fmt.Errorf("failed to get workload: %w", err) } pod := wl.(*workloadinterface.Workload) - + // fill container type, index and names + if watchedContainer.ContainerType == utils.Unknown { + if err := watchedContainer.SetContainerInfo(pod, container.K8s.ContainerName); err != nil { + return fmt.Errorf("failed to set container info: %w", err) + } + } // get pod template hash watchedContainer.TemplateHash, _ = pod.GetLabel("pod-template-hash") - // find parentWlid kind, name, err := nm.k8sClient.CalculateWorkloadParentRecursive(pod) if err != nil { @@ -102,12 +106,13 @@ func (nm *NetworkManager) ensureInstanceID(container *containercollection.Contai return fmt.Errorf("failed to validate WLID: %w", err) } watchedContainer.ParentResourceVersion = w.GetResourceVersion() + // find parent selector selector, err := w.GetSelector() if err != nil { return fmt.Errorf("failed to get parentWL selector: %w", err) } watchedContainer.ParentWorkloadSelector = selector - // find instanceID + // find instanceID - this has to be the last one instanceIDs, err := instanceidhandler.GenerateInstanceID(pod) if err != nil { return fmt.Errorf("failed to generate instanceID: %w", err) @@ -118,10 +123,6 @@ func (nm *NetworkManager) ensureInstanceID(container *containercollection.Contai watchedContainer.InstanceID = instanceIDs[i] } } - // fill container type, index and names - if watchedContainer.ContainerType == utils.Unknown { - watchedContainer.SetContainerInfo(pod, container.K8s.ContainerName) - } return nil } @@ -308,15 +309,15 @@ func (nm *NetworkManager) saveNetworkEvents(ctx context.Context, watchedContaine }, }, } - addContainers := func(containers []v1beta1.NetworkNeighborhoodContainer, containerNames []string) []v1beta1.NetworkNeighborhoodContainer { - for _, name := range containerNames { - containers = append(containers, v1beta1.NetworkNeighborhoodContainer{Name: name}) + addContainers := func(containers []v1beta1.NetworkNeighborhoodContainer, containerInfos []utils.ContainerInfo) []v1beta1.NetworkNeighborhoodContainer { + for _, info := range containerInfos { + containers = append(containers, v1beta1.NetworkNeighborhoodContainer{Name: info.Name}) } return containers } - newObject.Spec.Containers = addContainers(newObject.Spec.Containers, watchedContainer.ContainerNames[utils.Container]) - newObject.Spec.InitContainers = addContainers(newObject.Spec.InitContainers, watchedContainer.ContainerNames[utils.InitContainer]) - newObject.Spec.EphemeralContainers = addContainers(newObject.Spec.EphemeralContainers, watchedContainer.ContainerNames[utils.EphemeralContainer]) + newObject.Spec.Containers = addContainers(newObject.Spec.Containers, watchedContainer.ContainerInfos[utils.Container]) + newObject.Spec.InitContainers = addContainers(newObject.Spec.InitContainers, watchedContainer.ContainerInfos[utils.InitContainer]) + newObject.Spec.EphemeralContainers = addContainers(newObject.Spec.EphemeralContainers, watchedContainer.ContainerInfos[utils.EphemeralContainer]) // enrich container newContainer := utils.GetNetworkNeighborhoodContainer(newObject, watchedContainer.ContainerType, watchedContainer.ContainerIndex) utils.EnrichNeighborhoodContainer(newContainer, ingress, egress) @@ -346,12 +347,12 @@ func (nm *NetworkManager) saveNetworkEvents(ctx context.Context, watchedContaine helpers.String("k8s workload", watchedContainer.K8sContainerID)) } else { var replaceOperations []utils.PatchOperation - containerNames := watchedContainer.ContainerNames[watchedContainer.ContainerType] + containerNames := watchedContainer.ContainerInfos[watchedContainer.ContainerType] // check existing container existingContainer := utils.GetNetworkNeighborhoodContainer(existingObject, watchedContainer.ContainerType, watchedContainer.ContainerIndex) if existingContainer == nil { existingContainer = &v1beta1.NetworkNeighborhoodContainer{ - Name: containerNames[watchedContainer.ContainerIndex], + Name: containerNames[watchedContainer.ContainerIndex].Name, } } // update it @@ -380,7 +381,7 @@ func (nm *NetworkManager) saveNetworkEvents(ctx context.Context, watchedContaine Op: "add", Path: fmt.Sprintf("/spec/%s/%d", watchedContainer.ContainerType, i), Value: v1beta1.NetworkNeighborhoodContainer{ - Name: containerNames[i], + Name: containerNames[i].Name, }, }) } diff --git a/pkg/nodeprofilemanager/v1/nodeprofile_manager.go b/pkg/nodeprofilemanager/v1/nodeprofile_manager.go index ce1985ed..78cbc104 100644 --- a/pkg/nodeprofilemanager/v1/nodeprofile_manager.go +++ b/pkg/nodeprofilemanager/v1/nodeprofile_manager.go @@ -11,7 +11,6 @@ import ( "github.com/kubescape/node-agent/pkg/config" "github.com/kubescape/node-agent/pkg/nodeprofilemanager" "github.com/kubescape/node-agent/pkg/objectcache" - "github.com/kubescape/node-agent/pkg/relevancymanager" "github.com/kubescape/node-agent/pkg/rulemanager" "github.com/kubescape/node-agent/pkg/utils" @@ -24,26 +23,24 @@ import ( ) type NodeProfileManager struct { - clusterData armometadata.ClusterConfig - config config.Config - httpClient *http.Client - k8sObjectCache objectcache.K8sObjectCache - nodeName string - relevancyManager relevancymanager.RelevancyManagerClient - ruleManager rulemanager.RuleManagerClient + clusterData armometadata.ClusterConfig + config config.Config + httpClient *http.Client + k8sObjectCache objectcache.K8sObjectCache + nodeName string + ruleManager rulemanager.RuleManagerClient } -func NewNodeProfileManager(config config.Config, clusterData armometadata.ClusterConfig, nodeName string, k8sObjectCache objectcache.K8sObjectCache, relevancyManager relevancymanager.RelevancyManagerClient, ruleManager rulemanager.RuleManagerClient) *NodeProfileManager { +func NewNodeProfileManager(config config.Config, clusterData armometadata.ClusterConfig, nodeName string, k8sObjectCache objectcache.K8sObjectCache, ruleManager rulemanager.RuleManagerClient) *NodeProfileManager { return &NodeProfileManager{ clusterData: clusterData, config: config, httpClient: &http.Client{ Timeout: time.Duration(config.Exporters.HTTPExporterConfig.TimeoutSeconds) * time.Second, }, - k8sObjectCache: k8sObjectCache, - nodeName: nodeName, - relevancyManager: relevancyManager, - ruleManager: ruleManager, + k8sObjectCache: k8sObjectCache, + nodeName: nodeName, + ruleManager: ruleManager, } } @@ -106,7 +103,6 @@ func (n *NodeProfileManager) getProfile() (*armotypes.NodeProfile, error) { EphemeralContainers: n.getEphemeralContainers(pod.Namespace, pod.Name, pod.Spec.EphemeralContainers, statusesMap), HasFinalApplicationProfile: n.ruleManager.HasFinalApplicationProfile(pod), HasApplicableRuleBindings: n.ruleManager.HasApplicableRuleBindings(pod.Namespace, pod.Name), - HasRelevancyCalculating: n.relevancyManager.HasRelevancyCalculating(pod), IsKDRMonitored: n.ruleManager.IsPodMonitored(pod.Namespace, pod.Name), } profile.PodStatuses = append(profile.PodStatuses, podStatus) @@ -160,7 +156,7 @@ func (n *NodeProfileManager) getEphemeralContainers(namespace, name string, cont return podContainers } -// FIXME maybe use the ContainerVisitor from kubectl? +// TODO rewrite with podutil.VisitContainers() func (n *NodeProfileManager) appendPodContainer(namespace string, name string, c v1.Container, statusesMap map[string]v1.ContainerStatus, podContainers []armotypes.PodContainer) []armotypes.PodContainer { k8sContainerID := utils.CreateK8sContainerID(namespace, name, c.Name) status := statusesMap[c.Name] diff --git a/pkg/relevancymanager/relevancy_manager_interface.go b/pkg/relevancymanager/relevancy_manager_interface.go deleted file mode 100644 index 315834ec..00000000 --- a/pkg/relevancymanager/relevancy_manager_interface.go +++ /dev/null @@ -1,14 +0,0 @@ -package relevancymanager - -import ( - containercollection "github.com/inspektor-gadget/inspektor-gadget/pkg/container-collection" - v1 "k8s.io/api/core/v1" -) - -type RelevancyManagerClient interface { - ContainerCallback(notif containercollection.PubSubEvent) - ContainerReachedMaxTime(containerID string) - ReportFileExec(containerID, k8sContainerID, file string) - ReportFileOpen(containerID, k8sContainerID, file string) - HasRelevancyCalculating(pod *v1.Pod) bool -} diff --git a/pkg/relevancymanager/relevancy_manager_mock.go b/pkg/relevancymanager/relevancy_manager_mock.go deleted file mode 100644 index f1f49aa9..00000000 --- a/pkg/relevancymanager/relevancy_manager_mock.go +++ /dev/null @@ -1,35 +0,0 @@ -package relevancymanager - -import ( - containercollection "github.com/inspektor-gadget/inspektor-gadget/pkg/container-collection" - corev1 "k8s.io/api/core/v1" -) - -type RelevancyManagerMock struct { -} - -var _ RelevancyManagerClient = (*RelevancyManagerMock)(nil) - -func CreateRelevancyManagerMock() *RelevancyManagerMock { - return &RelevancyManagerMock{} -} - -func (r RelevancyManagerMock) ContainerCallback(_ containercollection.PubSubEvent) { - // noop -} - -func (r RelevancyManagerMock) ReportFileExec(_, _, _ string) { - // noop -} - -func (r RelevancyManagerMock) ReportFileOpen(_, _, _ string) { - // noop -} - -func (r RelevancyManagerMock) ContainerReachedMaxTime(_ string) { - // noop -} - -func (r RelevancyManagerMock) HasRelevancyCalculating(_ *corev1.Pod) bool { - return false -} diff --git a/pkg/relevancymanager/v1/relevancy_manager.go b/pkg/relevancymanager/v1/relevancy_manager.go deleted file mode 100644 index 3949f4f8..00000000 --- a/pkg/relevancymanager/v1/relevancy_manager.go +++ /dev/null @@ -1,293 +0,0 @@ -package relevancymanager - -import ( - "context" - "errors" - "fmt" - "time" - - "github.com/armosec/utils-k8s-go/wlid" - "github.com/cenkalti/backoff/v4" - mapset "github.com/deckarep/golang-set/v2" - "github.com/goradd/maps" - containercollection "github.com/inspektor-gadget/inspektor-gadget/pkg/container-collection" - "github.com/kubescape/go-logger" - "github.com/kubescape/go-logger/helpers" - "github.com/kubescape/k8s-interface/instanceidhandler" - instanceidhandlerV1 "github.com/kubescape/k8s-interface/instanceidhandler/v1" - "github.com/kubescape/k8s-interface/workloadinterface" - "github.com/kubescape/node-agent/pkg/config" - "github.com/kubescape/node-agent/pkg/filehandler" - "github.com/kubescape/node-agent/pkg/k8sclient" - "github.com/kubescape/node-agent/pkg/relevancymanager" - "github.com/kubescape/node-agent/pkg/sbomhandler" - "github.com/kubescape/node-agent/pkg/utils" - "go.opentelemetry.io/otel" - "go.opentelemetry.io/otel/attribute" - "go.opentelemetry.io/otel/trace" - v1 "k8s.io/api/core/v1" -) - -type RelevancyManager struct { - cfg config.Config - watchedContainerChannels maps.SafeMap[string, chan error] // key is containerID - ctx context.Context - fileHandler filehandler.FileHandler - k8sClient k8sclient.K8sClientInterface - sbomHandler sbomhandler.SBOMHandlerClient - preRunningContainerIDs mapset.Set[string] - removedContainers mapset.Set[string] - clusterName string -} - -var _ relevancymanager.RelevancyManagerClient = (*RelevancyManager)(nil) - -func CreateRelevancyManager(ctx context.Context, cfg config.Config, clusterName string, fileHandler filehandler.FileHandler, k8sClient k8sclient.K8sClientInterface, sbomHandler sbomhandler.SBOMHandlerClient, preRunningContainerIDs mapset.Set[string]) (*RelevancyManager, error) { - return &RelevancyManager{ - cfg: cfg, - clusterName: clusterName, - ctx: ctx, - fileHandler: fileHandler, - k8sClient: k8sClient, - sbomHandler: sbomHandler, - preRunningContainerIDs: preRunningContainerIDs, - removedContainers: mapset.NewSet[string](), - }, nil -} - -func (rm *RelevancyManager) deleteResources(watchedContainer *utils.WatchedContainerData) { - watchedContainer.UpdateDataTicker.Stop() - rm.sbomHandler.DecrementImageUse(watchedContainer.ImageID) - rm.watchedContainerChannels.Delete(watchedContainer.ContainerID) - rm.removedContainers.Add(watchedContainer.ContainerID) - - // Remove container from the file DB - _ = rm.fileHandler.RemoveBucket(watchedContainer.ContainerID) -} - -func (rm *RelevancyManager) ensureImageInfo(container *containercollection.Container, watchedContainer *utils.WatchedContainerData) error { - - if watchedContainer.InstanceID == nil || watchedContainer.Wlid == "" { - parentWlid, parentResourceVersion, podTemplateHash, instanceID, err := rm.getContainerInfo(watchedContainer, container.K8s.Namespace, container.K8s.PodName, container.K8s.ContainerName) - if err != nil { - return fmt.Errorf("failed to get image info: %v", err) - } - watchedContainer.InstanceID = instanceID - watchedContainer.Wlid = parentWlid - watchedContainer.ParentResourceVersion = parentResourceVersion - watchedContainer.TemplateHash = podTemplateHash - rm.sbomHandler.IncrementImageUse(watchedContainer.ImageID) - } - return nil -} - -func (rm *RelevancyManager) getContainerInfo(watchedContainer *utils.WatchedContainerData, namespace, podName, containerName string) (string, string, string, instanceidhandler.IInstanceID, error) { - parentWlid := "" - parentResourceVersion := "" - podTemplateHash := "" - - var instanceID instanceidhandler.IInstanceID - wl, err := rm.k8sClient.GetWorkload(namespace, "Pod", podName) - if err != nil { - return parentWlid, parentResourceVersion, podTemplateHash, instanceID, fmt.Errorf("fail to get pod %s in namespace %s with error: %v", podName, namespace, err) - } - pod := wl.(*workloadinterface.Workload) - - watchedContainer.SetContainerInfo(pod, containerName) - - // get pod template hash - podTemplateHash, _ = pod.GetLabel("pod-template-hash") - - // find parentWlid - kind, name, err := rm.k8sClient.CalculateWorkloadParentRecursive(pod) - if err != nil { - return parentWlid, parentResourceVersion, podTemplateHash, instanceID, fmt.Errorf("fail to get workload owner parent %s in namespace %s with error: %v", pod.GetName(), pod.GetNamespace(), err) - } - parentWorkload, err := rm.k8sClient.GetWorkload(pod.GetNamespace(), kind, name) - if err != nil { - return parentWlid, parentResourceVersion, podTemplateHash, instanceID, fmt.Errorf("fail to get parent workload %s in namespace %s with error: %v", pod.GetName(), pod.GetNamespace(), err) - } - w := parentWorkload.(*workloadinterface.Workload) - parentWlid = w.GenerateWlid(rm.clusterName) - parentResourceVersion = w.GetResourceVersion() - err = wlid.IsWlidValid(parentWlid) - if err != nil { - return parentWlid, parentResourceVersion, podTemplateHash, instanceID, fmt.Errorf("WLID of parent workload is not in the right %s in namespace %s with error: %v", pod.GetName(), pod.GetNamespace(), err) - } - - // find instanceID - instanceIDs, err := instanceidhandlerV1.GenerateInstanceID(pod) - if err != nil { - return parentWlid, parentResourceVersion, podTemplateHash, instanceID, fmt.Errorf("fail to create InstanceID to pod %s in namespace %s with error: %v", pod.GetName(), pod.GetNamespace(), err) - } - instanceID = instanceIDs[0] - for i := range instanceIDs { - if instanceIDs[i].GetInstanceType() != utils.ToInstanceType(watchedContainer.ContainerType) { - continue - } - if instanceIDs[i].GetContainerName() == containerName { - instanceID = instanceIDs[i] - } - } - return parentWlid, parentResourceVersion, podTemplateHash, instanceID, nil -} - -// Handle relevant data -func (rm *RelevancyManager) handleRelevancy(ctx context.Context, watchedContainer *utils.WatchedContainerData, containerID string) { - ctxPostSBOM, spanPostSBOM := otel.Tracer("").Start(ctx, "RelevancyManager.handleRelevancy") - defer spanPostSBOM.End() - - if watchedContainer.InstanceID == nil { - logger.L().Debug("ignoring container with empty instanceID", helpers.String("container ID", containerID), helpers.String("k8s workload", watchedContainer.K8sContainerID)) - return - } - fileList, err := rm.fileHandler.GetAndDeleteFiles(watchedContainer.K8sContainerID) - if err != nil { - logger.L().Debug("failed to get file list", helpers.String("container ID", containerID), helpers.String("k8s workload", watchedContainer.K8sContainerID), helpers.Error(err)) - return - } - - ctx, span := otel.Tracer("").Start(ctxPostSBOM, "SBOMClient.FilterSBOM") - if err = rm.sbomHandler.FilterSBOM(watchedContainer, fileList); err != nil { - _ = rm.fileHandler.AddFiles(watchedContainer.K8sContainerID, fileList) - logger.L().Ctx(ctx).Warning("failed to filter SBOM", helpers.String("container ID", containerID), helpers.String("k8s workload", watchedContainer.K8sContainerID), helpers.Error(err)) - span.End() - return - } - span.End() -} - -func (rm *RelevancyManager) monitorContainer(ctx context.Context, container *containercollection.Container, watchedContainer *utils.WatchedContainerData) error { - for { - select { - case <-watchedContainer.UpdateDataTicker.C: - // adjust ticker after first tick - if !watchedContainer.InitialDelayExpired { - watchedContainer.InitialDelayExpired = true - watchedContainer.UpdateDataTicker.Reset(utils.AddJitter(rm.cfg.UpdateDataPeriod, rm.cfg.MaxJitterPercentage)) - } - // handle collection of relevant data - rm.handleRelevancy(ctx, watchedContainer, container.Runtime.ContainerID) - case err := <-watchedContainer.SyncChannel: - switch { - case errors.Is(err, utils.ContainerHasTerminatedError): - // handle collection of relevant data one more time - rm.handleRelevancy(ctx, watchedContainer, container.Runtime.ContainerID) - return nil - case errors.Is(err, utils.ContainerReachedMaxTime): - rm.handleRelevancy(ctx, watchedContainer, container.Runtime.ContainerID) - return nil - case errors.Is(err, utils.IncompleteSBOMError): - return utils.IncompleteSBOMError - } - } - } -} - -func (rm *RelevancyManager) ContainerReachedMaxTime(containerID string) { - if channel := rm.watchedContainerChannels.Get(containerID); channel != nil { - channel <- utils.ContainerReachedMaxTime - } -} - -func (rm *RelevancyManager) startRelevancyProcess(ctx context.Context, container *containercollection.Container, k8sContainerID string) { - ctx, span := otel.Tracer("").Start(ctx, "RelevancyManager.startRelevancyProcess") - defer span.End() - - logger.L().Info("RelevancyManager - start monitor on container", helpers.String("container ID", container.Runtime.ContainerID), helpers.String("k8s workload", k8sContainerID)) - - watchedContainer := &utils.WatchedContainerData{ - ContainerID: container.Runtime.ContainerID, - ImageID: container.Runtime.ContainerImageDigest, - ImageTag: container.Runtime.ContainerImageName, - UpdateDataTicker: time.NewTicker(utils.AddJitter(rm.cfg.InitialDelay, rm.cfg.MaxJitterPercentage)), - SyncChannel: make(chan error, 10), - K8sContainerID: k8sContainerID, - RelevantRelationshipsArtifactsByIdentifier: make(map[string]bool), - RelevantArtifactsFilesByIdentifier: make(map[string]bool), - RelevantRealtimeFilesByIdentifier: make(map[string]bool), - } - - // don't start monitoring until we have the image info - need to retry until the Pod is updated - if err := backoff.Retry(func() error { - return rm.ensureImageInfo(container, watchedContainer) - }, backoff.NewExponentialBackOff()); err != nil { - logger.L().Ctx(ctx).Error("RelevancyManager - failed to ensure image info", helpers.Error(err), - helpers.String("container ID", watchedContainer.ContainerID), - helpers.String("k8s workload", watchedContainer.K8sContainerID)) - } - rm.removedContainers.Remove(watchedContainer.ContainerID) - rm.watchedContainerChannels.Set(watchedContainer.ContainerID, watchedContainer.SyncChannel) - if err := rm.monitorContainer(ctx, container, watchedContainer); err != nil { - logger.L().Info("RelevancyManager - stop monitor on container", helpers.String("reason", err.Error()), helpers.String("container ID", container.Runtime.ContainerID), helpers.String("k8s workload", k8sContainerID)) - } - - err := rm.fileHandler.RemoveBucket(k8sContainerID) - if err != nil { - logger.L().Error("failed to remove container bucket", helpers.Error(err), helpers.String("container ID", container.Runtime.ContainerID), helpers.String("k8s workload", k8sContainerID)) - } - rm.deleteResources(watchedContainer) -} - -func (rm *RelevancyManager) ContainerCallback(notif containercollection.PubSubEvent) { - // check if the container should be ignored - if rm.cfg.SkipNamespace(notif.Container.K8s.Namespace) { - return - } - - k8sContainerID := utils.CreateK8sContainerID(notif.Container.K8s.Namespace, notif.Container.K8s.PodName, notif.Container.K8s.ContainerName) - // ignore pre-running containers - if rm.preRunningContainerIDs.Contains(notif.Container.Runtime.ContainerID) { - logger.L().Debug("ignoring pre-running container", helpers.String("container ID", notif.Container.Runtime.ContainerID), helpers.String("k8s workload", k8sContainerID)) - return - } - - ctx, span := otel.Tracer("").Start(rm.ctx, "RelevancyManager.ContainerCallback", trace.WithAttributes(attribute.String("containerID", notif.Container.Runtime.ContainerID), attribute.String("k8s workload", k8sContainerID))) - defer span.End() - - switch notif.Type { - case containercollection.EventTypeAddContainer: - if rm.watchedContainerChannels.Has(notif.Container.Runtime.ContainerID) { - logger.L().Debug("container already exist in memory", helpers.String("container ID", notif.Container.Runtime.ContainerID), helpers.String("k8s workload", k8sContainerID)) - return - } - go rm.startRelevancyProcess(ctx, notif.Container, k8sContainerID) - case containercollection.EventTypeRemoveContainer: - channel := rm.watchedContainerChannels.Get(notif.Container.Runtime.ContainerID) - if channel != nil { - channel <- utils.ContainerHasTerminatedError - } - rm.watchedContainerChannels.Delete(notif.Container.Runtime.ContainerID) - rm.removedContainers.Add(notif.Container.Runtime.ContainerID) - } -} - -func (rm *RelevancyManager) ReportFileExec(containerID, k8sContainerID, file string) { - if rm.preRunningContainerIDs.Contains(containerID) { - return - } - if rm.removedContainers.Contains(containerID) { - return - } - - rm.fileHandler.AddFile(k8sContainerID, file) -} - -func (rm *RelevancyManager) ReportFileOpen(containerID, k8sContainerID, file string) { - if rm.preRunningContainerIDs.Contains(containerID) { - return - } - if rm.removedContainers.Contains(containerID) { - return - } - rm.fileHandler.AddFile(k8sContainerID, file) -} - -func (rm *RelevancyManager) HasRelevancyCalculating(pod *v1.Pod) bool { - for _, c := range utils.GetContainerStatuses(pod.Status) { - if rm.watchedContainerChannels.Has(utils.TrimRuntimePrefix(c.ContainerID)) { - return true - } - } - return false -} diff --git a/pkg/relevancymanager/v1/relevancy_manager_test.go b/pkg/relevancymanager/v1/relevancy_manager_test.go deleted file mode 100644 index d2c2a6e0..00000000 --- a/pkg/relevancymanager/v1/relevancy_manager_test.go +++ /dev/null @@ -1,206 +0,0 @@ -package relevancymanager - -import ( - "context" - _ "embed" - "encoding/json" - "os" - "path" - "testing" - "time" - - mapset "github.com/deckarep/golang-set/v2" - containercollection "github.com/inspektor-gadget/inspektor-gadget/pkg/container-collection" - "github.com/inspektor-gadget/inspektor-gadget/pkg/types" - "github.com/kinbiko/jsonassert" - helpersv1 "github.com/kubescape/k8s-interface/instanceidhandler/v1/helpers" - "github.com/kubescape/node-agent/pkg/config" - "github.com/kubescape/node-agent/pkg/filehandler/v1" - "github.com/kubescape/node-agent/pkg/k8sclient" - "github.com/kubescape/node-agent/pkg/sbomhandler/syfthandler" - "github.com/kubescape/node-agent/pkg/storage" - "github.com/kubescape/node-agent/pkg/utils" - "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" - "github.com/stretchr/testify/assert" -) - -func BenchmarkRelevancyManager_ReportFileExec(b *testing.B) { - cfg := config.Config{} - ctx := context.TODO() - fileHandler, err := filehandler.CreateInMemoryFileHandler() - assert.NoError(b, err) - relevancyManager, err := CreateRelevancyManager(ctx, cfg, "cluster", fileHandler, nil, nil, mapset.NewSet[string]()) - assert.NoError(b, err) - for i := 0; i < b.N; i++ { - relevancyManager.ReportFileExec("ns", "ns", "file") - } - b.ReportAllocs() -} - -//go:embed testdata/nginx-syft-crd.json -var nginxSyftCRD []byte - -func TestRelevancyManager(t *testing.T) { - // create a new relevancy manager - cfg := config.Config{ - EnableRelevancy: true, - InitialDelay: 1 * time.Second, - MaxSniffingTime: 5 * time.Minute, - UpdateDataPeriod: 20 * time.Second, - } - - ctx := context.TODO() - fileHandler, err := filehandler.CreateInMemoryFileHandler() - assert.NoError(t, err) - k8sClient := &k8sclient.K8sClientMock{} - var syftDoc v1beta1.SBOMSyft - err = json.Unmarshal(nginxSyftCRD, &syftDoc) - assert.NoError(t, err) - - storageClient := storage.CreateSyftSBOMStorageHttpClientMock(syftDoc) - sbomHandler := syfthandler.CreateSyftSBOMHandler(storageClient) - - relevancyManager, err := CreateRelevancyManager(ctx, cfg, "cluster", fileHandler, k8sClient, sbomHandler, mapset.NewSet[string]()) - assert.NoError(t, err) - // report container started - container := &containercollection.Container{ - K8s: containercollection.K8sMetadata{ - BasicK8sMetadata: types.BasicK8sMetadata{ - Namespace: "ns", - PodName: "pod", - ContainerName: "cont", - }, - }, - Runtime: containercollection.RuntimeMetadata{ - BasicRuntimeMetadata: types.BasicRuntimeMetadata{ - ContainerID: "5fff6a395ce4e6984a9447cc6cfb09f473eaf278498243963fcc944889bc8400", - ContainerImageDigest: "nginx@sha256:6a59f1cbb8d28ac484176d52c473494859a512ddba3ea62a547258cf16c9b3ae", - ContainerImageName: "nginx", - }, - }, - } - relevancyManager.ContainerCallback(containercollection.PubSubEvent{ - Type: containercollection.EventTypeAddContainer, - Container: container, - }) - - // report file access - files := []string{ - "/path/to/file", - "/path/to/file2", - "/usr/sbin/deluser", - } - - for _, file := range files { - relevancyManager.ReportFileExec("ns/pod/cont", "ns/pod/cont", file) - } - - // let it run for a while - time.Sleep(5 * time.Second) - // report a same file again, should do noop - relevancyManager.ReportFileExec("ns/pod/cont", "ns/pod/cont", "/usr/sbin/deluser") - // let it run for a while - time.Sleep(5 * time.Second) - // verify files are reported and we have only 1 filtered SBOM - assert.NotNil(t, storageClient.FilteredSyftSBOMs) - assert.Equal(t, 1, len(storageClient.FilteredSyftSBOMs)) - assert.Equal(t, 1, len(storageClient.FilteredSyftSBOMs[0].Spec.Syft.Files)) - assert.Equal(t, "/usr/sbin/deluser", storageClient.FilteredSyftSBOMs[0].Spec.Syft.Files[0].Location.RealPath) - - // add one more vulnerable file - relevancyManager.ReportFileExec("ns/pod/cont", "ns/pod/cont", "/etc/deluser.conf") - time.Sleep(1 * time.Second) - // report container stopped - relevancyManager.ContainerCallback(containercollection.PubSubEvent{ - Type: containercollection.EventTypeRemoveContainer, - Container: container, - }) - - // let it stop - time.Sleep(1 * time.Second) - - // verify files are reported (old and new ones) - assert.Equal(t, 2, len(storageClient.FilteredSyftSBOMs[1].Spec.Syft.Files)) - foundFiles := 0 - for _, file := range storageClient.FilteredSyftSBOMs[1].Spec.Syft.Files { - if file.Location.RealPath == "/usr/sbin/deluser" || file.Location.RealPath == "/etc/deluser.conf" { - foundFiles++ - } - } - - assert.Equal(t, foundFiles, 2) - - // write filtered sbom to json file - gotBytes, err := json.Marshal(storageClient.FilteredSyftSBOMs[0]) - assert.NoError(t, err) - - wantBytes, err := os.ReadFile(path.Join(utils.CurrentDir(), "testdata", "nginx-syft-filtered.json")) - assert.NoError(t, err) - ja := jsonassert.New(t) - ja.Assertf(string(gotBytes), string(wantBytes)) - // verify cleanup - time.Sleep(1 * time.Second) - _, err = fileHandler.GetAndDeleteFiles("ns/pod/cont") - assert.ErrorContains(t, err, "bucket does not exist for container ns/pod/cont") -} - -func TestRelevancyManagerIncompleteSBOM(t *testing.T) { - cfg := config.Config{ - EnableRelevancy: true, - InitialDelay: 1 * time.Second, - MaxSniffingTime: 5 * time.Minute, - UpdateDataPeriod: 20 * time.Second, - } - - ctx := context.TODO() - fileHandler, err := filehandler.CreateInMemoryFileHandler() - assert.NoError(t, err) - - k8sClient := &k8sclient.K8sClientMock{} - var syftDoc v1beta1.SBOMSyft - err = json.Unmarshal(nginxSyftCRD, &syftDoc) - assert.NoError(t, err) - syftDoc.Annotations = map[string]string{ - helpersv1.StatusMetadataKey: helpersv1.Incomplete} - - storageClient := storage.CreateSyftSBOMStorageHttpClientMock(syftDoc) - sbomHandler := syfthandler.CreateSyftSBOMHandler(storageClient) - relevancyManager, err := CreateRelevancyManager(ctx, cfg, "cluster", fileHandler, k8sClient, sbomHandler, mapset.NewSet[string]()) - assert.NoError(t, err) - - // report container started - container := &containercollection.Container{ - K8s: containercollection.K8sMetadata{ - BasicK8sMetadata: types.BasicK8sMetadata{ - Namespace: "ns", - PodName: "pod", - ContainerName: "cont", - }, - }, - Runtime: containercollection.RuntimeMetadata{ - BasicRuntimeMetadata: types.BasicRuntimeMetadata{ - ContainerID: "5fff6a395ce4e6984a9447cc6cfb09f473eaf278498243963fcc944889bc8400", - ContainerImageName: "docker.io/library/nginx:latest", - ContainerImageDigest: "sha256:0c86dddac19f2ce4fd716ac58c0fd87bf69bfd4edabfd6971fb885bafd12a00b", - }, - }, - } - relevancyManager.ContainerCallback(containercollection.PubSubEvent{ - Type: containercollection.EventTypeAddContainer, - Container: container, - }) - // report file access - relevancyManager.ReportFileExec("ns/pod/cont", "ns/pod/cont", "/usr/sbin/deluser") - // let it run for a while - time.Sleep(10 * time.Second) - // report container stopped - relevancyManager.ContainerCallback(containercollection.PubSubEvent{ - Type: containercollection.EventTypeRemoveContainer, - Container: container, - }) - // let it stop - time.Sleep(1 * time.Second) - // verify filtered SBOM is created - assert.NotNil(t, storageClient.FilteredSyftSBOMs) - assert.Equal(t, 1, len(storageClient.FilteredSyftSBOMs)) -} diff --git a/pkg/relevancymanager/v1/testdata/nginx-syft-crd.json b/pkg/relevancymanager/v1/testdata/nginx-syft-crd.json deleted file mode 100644 index 2fc1819c..00000000 --- a/pkg/relevancymanager/v1/testdata/nginx-syft-crd.json +++ /dev/null @@ -1,147674 +0,0 @@ -{ - "apiVersion": "spdx.softwarecomposition.kubescape.io/v1beta1", - "kind": "SBOMSyft", - "metadata": { - "annotations": { - "kubescape.io/image-id": "docker.io/library/nginx@sha256:ed6d2c43c8fbcd3eaa44c9dab6d94cb346234476230dc1681227aa72d07181ee", - "kubescape.io/image-tag": "nginx", - "kubescape.io/status": "ready" - }, - "creationTimestamp": "2024-04-29T06:47:04Z", - "labels": { - "kubescape.io/image-id": "docker-io-library-nginx-sha256-ed6d2c43c8fbcd3eaa44c9dab6d94cb3", - "kubescape.io/image-name": "docker-io-library-nginx" - }, - "name": "nginx-7181ee", - "namespace": "kubescape", - "resourceVersion": "1", - "uid": "2d93374a-30c9-447a-a415-5825c78e3c36" - }, - "spec": { - "metadata": { - "report": { - "createdAt": "2024-04-29T06:47:04Z" - }, - "tool": { - "name": "syft", - "version": "v1.2.0-hotfix" - } - }, - "syft": { - "artifactRelationships": [ - { - "child": "30404b045dc5ad02", - "parent": "00337d6008bf0618", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "00337d6008bf0618", - "type": "evident-by" - }, - { - "child": "8d0dda00a12b80b3", - "parent": "00337d6008bf0618", - "type": "contains" - }, - { - "child": "a4744ce87f049011", - "parent": "00337d6008bf0618", - "type": "contains" - }, - { - "child": "c6bc56609e4b9d8e", - "parent": "00337d6008bf0618", - "type": "dependency-of" - }, - { - "child": "24374aecccbdd489", - "parent": "00973b8ba461f164", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "00973b8ba461f164", - "type": "evident-by" - }, - { - "child": "4a766554db0e6912", - "parent": "00973b8ba461f164", - "type": "contains" - }, - { - "child": "d52d79a125a8f9fe", - "parent": "00973b8ba461f164", - "type": "contains" - }, - { - "child": "eec74e7c5122eb22", - "parent": "00973b8ba461f164", - "type": "dependency-of" - }, - { - "child": "2512ef9462982daa", - "parent": "044869766add5220", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "044869766add5220", - "type": "evident-by" - }, - { - "child": "64a9abcedb012b36", - "parent": "044869766add5220", - "type": "contains" - }, - { - "child": "92639e2cb05ca0e5", - "parent": "044869766add5220", - "type": "contains" - }, - { - "child": "2fcc048af1a8a5cf", - "parent": "057915e653a8e373", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "057915e653a8e373", - "type": "evident-by" - }, - { - "child": "85310376be31116e", - "parent": "057915e653a8e373", - "type": "contains" - }, - { - "child": "df7d1f0196fd5968", - "parent": "057915e653a8e373", - "type": "dependency-of" - }, - { - "child": "ea9c618e3b8ed6de", - "parent": "057915e653a8e373", - "type": "dependency-of" - }, - { - "child": "005c4b9d850bdd35", - "parent": "08222e193e6de8c6", - "type": "contains" - }, - { - "child": "055a8d9535e04c0f", - "parent": "08222e193e6de8c6", - "type": "contains" - }, - { - "child": "1748a71923143cb9", - "parent": "08222e193e6de8c6", - "type": "contains" - }, - { - "child": "1a7bf221a71bf714", - "parent": "08222e193e6de8c6", - "type": "contains" - }, - { - "child": "37280617bb713c95", - "parent": "08222e193e6de8c6", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "08222e193e6de8c6", - "type": "evident-by" - }, - { - "child": "499ba25c7c67ba6f", - "parent": "08222e193e6de8c6", - "type": "contains" - }, - { - "child": "f8e86f62476a3360", - "parent": "08222e193e6de8c6", - "type": "contains" - }, - { - "child": "001693de6554b857", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "001fc5ee616bad4f", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "030224da085a21ed", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "039c2c62e3830068", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "0493fa952bbb94ca", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "060f34521b7f2bc7", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "0809a7518b21bd82", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "09e800b54581b668", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "0bf4eed6dcdf9043", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "0c13e6584e4f1c9a", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "0fc15b666dee641c", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "1158d03873eb34b8", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "12f93da6f655342d", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "1366deaf81b70b08", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "16227348c54f06ef", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "18ecb4fcc7d8e442", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "19d5c1cba97461cf", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "1add6709cafca3c5", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "1f7c3bd74686228d", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "252e98eb2b1d2984", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "25b7df61d6ccac72", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "26553064dff7fe58", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "29c1d13f51a4485d", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "2b0dec5458152b15", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "2b24465bb8d51bac", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "2db6b42dfc7d4f8e", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "2e91d7ea5cdef88c", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "30085a533415c8d6", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "30ea1b31ca2776ad", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "31634105d38a8149", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "3185c68c6e28be89", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "386345c2e7c0f47a", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "3ad8ab842ec35ea0", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "3c549e54696194ce", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "3f0225c7dbedb3ed", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "3f4bf50889d728c1", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "3fd8137c9fdd22bf", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "404ccc8df358d256", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "08f3410f0a4602ff", - "type": "evident-by" - }, - { - "child": "45af037684cab4aa", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "473875df52049835", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "480430ae06a3b801", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "4956d727c7f90ac6", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "49fb4be9824b0955", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "4ef422adbdd9f844", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "516d3301455ae7ff", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "53034ae72b928fca", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "553226659272bf47", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "58d998f48e7d6e2f", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "5a87c19a809c1497", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "5b927ec9958692bf", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "5bcfd5c8b5a3bd7d", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "5be9fd3e14153c5c", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "5ca59d9ee9c1fb78", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "62428a73084835cd", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "6259bd45bdd42d7e", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "6880d11bbf5f156f", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "69816dfe05556bb9", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "6b7ebc2fe3568798", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "70c9b9200f38c950", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "7326bcf383deb936", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "74ad53b8feb722c2", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "75b43a502d0f8a20", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "769efbdc1f49f43b", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "76c540c99f9daccf", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "77fe6cbf0a0d9c7b", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "7909c6f4405ee1d2", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "7c1eb48c5ad8e0a0", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "7c40fd76c1acf6c7", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "7e2b4840df3ffe72", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "7f7331af8f6bfc38", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "83e14d99fb70d02c", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "852bc24f261de1ad", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "86416586592046e7", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "87426138dc94418c", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "8785fe0ae95724d7", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "8bb5dd3a41c226a2", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "8bb7fc3025fe6105", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "8c360d8e1660cfe4", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "8ea1bb3b81aecd7e", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "8ee141b256c561eb", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "90f9a4ae251117dc", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "915f3ea23857856d", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "944c8de998c758bd", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "98d5b973bbb1dd66", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "99d8dc11200a7ef4", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "9a40fe824d633d64", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "9cc56b577c1d4def", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "9d1dfe2fb83c4af4", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "9ffc68a7050c5849", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "a0f839dd52b44e82", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "a336fc6045ba4f76", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "a33b03a23977ab03", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "a6f08454b7e559ef", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "a71b4ffd9b9d14f9", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "a8308a0576c12c6f", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "a8d78e4288fc0882", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "a902faea48350427", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "a947fbd53b9815c9", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "ac0697f96a184648", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "add2881eb693226c", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "b0b6033f810ecb28", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "b14bdd9973cf7987", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "b34567e7877e0074", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "b3af9b57ee7eef4c", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "b692ee901ab441af", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "b9569c8bbb0e1f9c", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "ba18dd856b030a4d", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "bb114b9ec7e14571", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "bc8d2b70d21c3ff5", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "bd93efe0b0a778dc", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "be96b2006f7d74bb", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "bf3bcd9c9eeb9fa2", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c10644f049e8d4a5", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c11e9250f70419a3", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c18303fc8bb670e1", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c2a95d87dc607ca4", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c34911a721e93ffa", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c4bfdcf142caa037", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c559182dba10209d", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c6353ab0b65125c3", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c94c73a4bd012d70", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "c9ffafd680497730", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "ce85a3d8f7b2e27d", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "cf8bf34b1c84d5c8", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "d3131574a12cfa83", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "d432a26d0ff9def9", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "e1854f169bffa447", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "e4d9b792beb3bba4", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "e50c5ed0e5433328", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "e690ba7c5c6e629f", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "e753cd069dc94ee3", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "e9e655f342143162", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "e9e9c336a2e10668", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "ebcb76b4dcb8071b", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "ec59cbc7f8d66e40", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "ec76b9bbcb3cbc67", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "ef01a0b623acc4c6", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f1125565b0685ad5", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f168bbcfd2944f7b", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f188f7ad9b794077", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f222b4ef60059339", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f241afecf4c4d0b7", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f3ac0618a0aaafe1", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f4a7158a524fdbe0", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f514573f99435c9e", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f65e0026e618c4a4", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f69bdcc3621630e1", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f6a4d94fc4338c15", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "f897739643a59ebd", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "fa5fa863601cb178", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "fc6779b83e892c42", - "parent": "08f3410f0a4602ff", - "type": "contains" - }, - { - "child": "17f5c854e82e5409", - "parent": "0919462d0d876880", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "0919462d0d876880", - "type": "evident-by" - }, - { - "child": "47d37b4403f8e91f", - "parent": "0919462d0d876880", - "type": "contains" - }, - { - "child": "8996a1eac9c8e5c9", - "parent": "0919462d0d876880", - "type": "contains" - }, - { - "child": "977f0ddcb1cd80fb", - "parent": "0919462d0d876880", - "type": "contains" - }, - { - "child": "a19b0036f2925522", - "parent": "0919462d0d876880", - "type": "dependency-of" - }, - { - "child": "cda63e3b1e9e1a8f", - "parent": "0919462d0d876880", - "type": "contains" - }, - { - "child": "e02631d88f65ffad", - "parent": "0919462d0d876880", - "type": "contains" - }, - { - "child": "27a14d6b0a665830", - "parent": "09410d7cdee6b7a9", - "type": "contains" - }, - { - "child": "34b283b166fe81a8", - "parent": "09410d7cdee6b7a9", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "09410d7cdee6b7a9", - "type": "evident-by" - }, - { - "child": "ae1fe690fc27e1c5", - "parent": "09410d7cdee6b7a9", - "type": "dependency-of" - }, - { - "child": "08f3410f0a4602ff", - "parent": "09f6bd60ae488e2d", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "09f6bd60ae488e2d", - "type": "evident-by" - }, - { - "child": "5d760083f387f1e6", - "parent": "09f6bd60ae488e2d", - "type": "contains" - }, - { - "child": "603134b12dc04fbb", - "parent": "09f6bd60ae488e2d", - "type": "dependency-of" - }, - { - "child": "6f953476e6e42f91", - "parent": "09f6bd60ae488e2d", - "type": "dependency-of" - }, - { - "child": "762a6d2f42dbb84d", - "parent": "09f6bd60ae488e2d", - "type": "dependency-of" - }, - { - "child": "96b93d666e3a4ed7", - "parent": "09f6bd60ae488e2d", - "type": "contains" - }, - { - "child": "0f7627bda302de82", - "parent": "0d5fc1290c3c97c5", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "0d5fc1290c3c97c5", - "type": "evident-by" - }, - { - "child": "77b4823c173e68f5", - "parent": "0d5fc1290c3c97c5", - "type": "dependency-of" - }, - { - "child": "d12aacc3afbb217f", - "parent": "0d5fc1290c3c97c5", - "type": "contains" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "0e01bf0bfbc47b61", - "type": "dependency-of" - }, - { - "child": "2bba05a28999480c", - "parent": "0e01bf0bfbc47b61", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "0e01bf0bfbc47b61", - "type": "evident-by" - }, - { - "child": "73c5910215d924f3", - "parent": "0e01bf0bfbc47b61", - "type": "contains" - }, - { - "child": "77b4823c173e68f5", - "parent": "0e01bf0bfbc47b61", - "type": "dependency-of" - }, - { - "child": "833deb3b444af5aa", - "parent": "0e01bf0bfbc47b61", - "type": "contains" - }, - { - "child": "e7dfdbaa2c8d0db8", - "parent": "0e01bf0bfbc47b61", - "type": "dependency-of" - }, - { - "child": "0b4448cd995bb44c", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "13e1e0a96f8f0d65", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "153341b50aa128bb", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "16b85f75ea2b2eb3", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "1d9d63f07b2102c6", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "1fd68f629495af4a", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "2ba6a1e0a4bc7388", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "371e05684cb1d51a", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "3ad6a03cee4cbc68", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "3cb99007155f737e", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "4383ccc5c484462f", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "0fc6d30eb223c733", - "type": "evident-by" - }, - { - "child": "4ce1453c3db6975d", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "59019b2e7588bf16", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "63b97a92bef5044d", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "64ece09724251763", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "682f15f49196d0b5", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "6fbc86b1804f6056", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "803f2c87899c2aec", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "829e5cf9ec8422b0", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "86bede081f480d5b", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "8ace95d0a8eef12f", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "90ba1441bd036640", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "94193225464c003f", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "966dbb8f1c1c4a5a", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "9b6b4ce021b2ccef", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "a2a3a5a6a8aa273f", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "a6ce7119954c8b8c", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "c94089b935205665", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "d2cb6f8b72aefe9d", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "dbc80ceef7a9ba1f", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "f45bf62f39e897ad", - "parent": "0fc6d30eb223c733", - "type": "contains" - }, - { - "child": "1de6e19dee40b0ab", - "parent": "109cccfdf0cf7b17", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "109cccfdf0cf7b17", - "type": "evident-by" - }, - { - "child": "54553ec3061f963f", - "parent": "109cccfdf0cf7b17", - "type": "dependency-of" - }, - { - "child": "5df21a027caff78b", - "parent": "109cccfdf0cf7b17", - "type": "contains" - }, - { - "child": "6d6e8a1c4d8f5a2b", - "parent": "109cccfdf0cf7b17", - "type": "dependency-of" - }, - { - "child": "e04ae2f041e6de19", - "parent": "109cccfdf0cf7b17", - "type": "contains" - }, - { - "child": "30634c42ca0e6c6e", - "parent": "1210e6f0d18d95c3", - "type": "evident-by" - }, - { - "child": "005442e732fd538c", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "0502d4ef039baed8", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "0d783bc34563f0fc", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "0e21bb3db0d4ce8c", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "13f7ef6827be694d", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "14f1aebdfbe6b0e3", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "1831c100e1e24c4f", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "1e844667655dc095", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "25b93d8479d03922", - "parent": "12a018034482fe97", - "type": "dependency-of" - }, - { - "child": "279c30d41c3a676b", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "27d0141c736decb0", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "27db81e9616a84ef", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "288e2c748e59d543", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "2accd7c63bd7ab27", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "2d618d623e2161ce", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "2fc0063e7584b704", - "parent": "12a018034482fe97", - "type": "dependency-of" - }, - { - "child": "317515c019543c6e", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "43a1f70f73b55455", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "12a018034482fe97", - "type": "evident-by" - }, - { - "child": "498fea154947153c", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "4c3e3bb13fc5e7bc", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "541370bce947f2df", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "54a9241a2d9c19a7", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "54e8ed03291e522b", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "561255d31c3a508f", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "5f2ac8b1dd4011dd", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "6453df6b0dda1d9d", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "670bcd242326125d", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "7aea6d31eefcaa2f", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "8403c830e0a2279f", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "88123b9c11241f48", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "8971dab1e447a0dd", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "8c09c2c45a530c97", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "8dd2d457ce560ed0", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "95082a001564c69b", - "parent": "12a018034482fe97", - "type": "dependency-of" - }, - { - "child": "9829bfa597f8235b", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "98a3a83a2d16384b", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "a329af3b27a5835d", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "a7b0d960b2bfde21", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "ac4e849a1f62335d", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "b221f04136b442b3", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "b84208edcdde4cc1", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "bcfcd3cf4abb8e1f", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "befe19507f7b3b35", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "c0cb04ecab12c015", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "c4cfcfb1273c10d9", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "cae50f5118b427e6", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "d77d289418c674ac", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "dbb3a34943d1f517", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "dc340d270e93c932", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "dffc100b8d4a6690", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "e82901cd21fd781c", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "ec9575faf0149d88", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "ecfecb05c214caef", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "ed87fef0606bee3f", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "f0f3131fbfe79c69", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "f1b40d2382e3bf8d", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "f8caff6b52be9844", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "ff0e3715cc44d32c", - "parent": "12a018034482fe97", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "149f02d90873ce5b", - "type": "dependency-of" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "149f02d90873ce5b", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "149f02d90873ce5b", - "type": "evident-by" - }, - { - "child": "86ae984519f140e3", - "parent": "149f02d90873ce5b", - "type": "contains" - }, - { - "child": "9b7062ad5962460e", - "parent": "149f02d90873ce5b", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "16ce3f9a5a6f08b5", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "16ce3f9a5a6f08b5", - "type": "evident-by" - }, - { - "child": "7076d057ab25a499", - "parent": "16ce3f9a5a6f08b5", - "type": "dependency-of" - }, - { - "child": "7fd7b88666480d11", - "parent": "16ce3f9a5a6f08b5", - "type": "dependency-of" - }, - { - "child": "8be31f323abab169", - "parent": "16ce3f9a5a6f08b5", - "type": "contains" - }, - { - "child": "9e68d57e6377c254", - "parent": "16ce3f9a5a6f08b5", - "type": "contains" - }, - { - "child": "ddeb6215c71a51d7", - "parent": "16ce3f9a5a6f08b5", - "type": "dependency-of" - }, - { - "child": "f8c3f6319ab033da", - "parent": "16ce3f9a5a6f08b5", - "type": "contains" - }, - { - "child": "02af9dd83f6c7c71", - "parent": "18ed075bb8b76c7f", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "18ed075bb8b76c7f", - "type": "evident-by" - }, - { - "child": "c76d871bcb9b054f", - "parent": "18ed075bb8b76c7f", - "type": "contains" - }, - { - "child": "d50c2d021f21396b", - "parent": "18ed075bb8b76c7f", - "type": "dependency-of" - }, - { - "child": "09410d7cdee6b7a9", - "parent": "1a26ba66e66b3466", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "1a26ba66e66b3466", - "type": "evident-by" - }, - { - "child": "65cdbf9b287d8d1a", - "parent": "1a26ba66e66b3466", - "type": "contains" - }, - { - "child": "9d489b0c5f610c28", - "parent": "1a26ba66e66b3466", - "type": "contains" - }, - { - "child": "1de6e19dee40b0ab", - "parent": "1bf51448294e0e43", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "1bf51448294e0e43", - "type": "evident-by" - }, - { - "child": "6558aa9ecc92a64f", - "parent": "1bf51448294e0e43", - "type": "contains" - }, - { - "child": "67e81e91a8c1dffc", - "parent": "1bf51448294e0e43", - "type": "dependency-of" - }, - { - "child": "a8a26dc24224df9c", - "parent": "1bf51448294e0e43", - "type": "contains" - }, - { - "child": "211ef2731601cbd0", - "parent": "1de6e19dee40b0ab", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "1de6e19dee40b0ab", - "type": "evident-by" - }, - { - "child": "61dea766cad8baca", - "parent": "1de6e19dee40b0ab", - "type": "contains" - }, - { - "child": "67e81e91a8c1dffc", - "parent": "1de6e19dee40b0ab", - "type": "dependency-of" - }, - { - "child": "d50c2d021f21396b", - "parent": "1de6e19dee40b0ab", - "type": "dependency-of" - }, - { - "child": "ed26cdfa87149cfa", - "parent": "1de6e19dee40b0ab", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "2015aa6ec3465662", - "type": "evident-by" - }, - { - "child": "6ce105ae25df46bf", - "parent": "2015aa6ec3465662", - "type": "dependency-of" - }, - { - "child": "9e4d199232d82890", - "parent": "2015aa6ec3465662", - "type": "dependency-of" - }, - { - "child": "cddbe462bc81acf9", - "parent": "2015aa6ec3465662", - "type": "contains" - }, - { - "child": "d326779f532490c7", - "parent": "2015aa6ec3465662", - "type": "contains" - }, - { - "child": "f31b75ee6392365a", - "parent": "2015aa6ec3465662", - "type": "dependency-of" - }, - { - "child": "3425ee7723f69b83", - "parent": "24835c355ffa8f6e", - "type": "dependency-of" - }, - { - "child": "3c0abbf4718b55f0", - "parent": "24835c355ffa8f6e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "24835c355ffa8f6e", - "type": "evident-by" - }, - { - "child": "48cc3562ae851218", - "parent": "24835c355ffa8f6e", - "type": "contains" - }, - { - "child": "0c5c91e59a1c0e77", - "parent": "2512ef9462982daa", - "type": "contains" - }, - { - "child": "12a018034482fe97", - "parent": "2512ef9462982daa", - "type": "dependency-of" - }, - { - "child": "25b93d8479d03922", - "parent": "2512ef9462982daa", - "type": "dependency-of" - }, - { - "child": "4126d2789de5eeb3", - "parent": "2512ef9462982daa", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "2512ef9462982daa", - "type": "evident-by" - }, - { - "child": "46e088ca1b060624", - "parent": "2512ef9462982daa", - "type": "dependency-of" - }, - { - "child": "76ef77b2a5a01818", - "parent": "2512ef9462982daa", - "type": "dependency-of" - }, - { - "child": "77b4823c173e68f5", - "parent": "2512ef9462982daa", - "type": "dependency-of" - }, - { - "child": "95082a001564c69b", - "parent": "2512ef9462982daa", - "type": "dependency-of" - }, - { - "child": "9e3755175020009e", - "parent": "2512ef9462982daa", - "type": "dependency-of" - }, - { - "child": "138b152a3776196b", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "19c8e91fa1c68bec", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "1bdb6a74ea12e9ac", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "1d5306857fb4a31f", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "251bfe04bdf4d600", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "2b515efd5932bdd4", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "2ea37feddda40752", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "3722219ef4c5eb9e", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "3a6fab9b629dec53", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "25b93d8479d03922", - "type": "evident-by" - }, - { - "child": "4938f3437a031c32", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "4b2fe347b9d88e54", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "4fa1e8c2d0e89db9", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "5c775f493196ff3d", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "5fa432c837f2f4e2", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "61701cd7fd873c31", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "68093f0abbfc89fc", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "6a8f1ce60fbecbe4", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "71a14c2c07bef841", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "74bfdcc0016ad4eb", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "796a2a53e758070a", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "7cd5abc590f26583", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "8a49897e59f569c2", - "parent": "25b93d8479d03922", - "type": "dependency-of" - }, - { - "child": "a4fa5561a97c1992", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "c3d4e2bc0b6ce742", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "dbf9d90eb28a2b50", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "dc8cf297ee637954", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "dcd8dc3703b3f4aa", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "e72c9f0230b862c7", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "eb285723ee6ed724", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "ed264d200cf6eb05", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "f5e63ec9d8a103f2", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "f96bc641ceb378f9", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "fb6b6100ef8f202c", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "fda91d903533df59", - "parent": "25b93d8479d03922", - "type": "contains" - }, - { - "child": "057915e653a8e373", - "parent": "2aed653a72b7f48a", - "type": "dependency-of" - }, - { - "child": "12405501eedc3064", - "parent": "2aed653a72b7f48a", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "2aed653a72b7f48a", - "type": "evident-by" - }, - { - "child": "bf7d3afcda203515", - "parent": "2aed653a72b7f48a", - "type": "contains" - }, - { - "child": "d4945f79215765cc", - "parent": "2aed653a72b7f48a", - "type": "contains" - }, - { - "child": "df7d1f0196fd5968", - "parent": "2aed653a72b7f48a", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "2baf633bc8a84df6", - "type": "evident-by" - }, - { - "child": "56deae7a09ad3727", - "parent": "2baf633bc8a84df6", - "type": "contains" - }, - { - "child": "603134b12dc04fbb", - "parent": "2baf633bc8a84df6", - "type": "dependency-of" - }, - { - "child": "8824433bef2e62f0", - "parent": "2baf633bc8a84df6", - "type": "contains" - }, - { - "child": "0aa0226cdec3ba31", - "parent": "2bb2758387094841", - "type": "contains" - }, - { - "child": "2510fde290722d80", - "parent": "2bb2758387094841", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "2bb2758387094841", - "type": "evident-by" - }, - { - "child": "11e245f0fbd93ac6", - "parent": "2bba05a28999480c", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "2bba05a28999480c", - "type": "evident-by" - }, - { - "child": "c6f1f3e7b5ee0ef9", - "parent": "2bba05a28999480c", - "type": "contains" - }, - { - "child": "d50c2d021f21396b", - "parent": "2bba05a28999480c", - "type": "dependency-of" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "2d1a4631243ef86d", - "type": "dependency-of" - }, - { - "child": "3425ee7723f69b83", - "parent": "2d1a4631243ef86d", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "2d1a4631243ef86d", - "type": "evident-by" - }, - { - "child": "7d250731af5dba23", - "parent": "2d1a4631243ef86d", - "type": "contains" - }, - { - "child": "7feacc2fd841eb13", - "parent": "2d1a4631243ef86d", - "type": "contains" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "2d1a4631243ef86d", - "type": "dependency-of" - }, - { - "child": "e7dfdbaa2c8d0db8", - "parent": "2d1a4631243ef86d", - "type": "dependency-of" - }, - { - "child": "eec74e7c5122eb22", - "parent": "2d1a4631243ef86d", - "type": "dependency-of" - }, - { - "child": "38b424bee2a8db35", - "parent": "2d9c105581cbe6a2", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "2d9c105581cbe6a2", - "type": "evident-by" - }, - { - "child": "4ce014d66be6e2fd", - "parent": "2d9c105581cbe6a2", - "type": "contains" - }, - { - "child": "4f6f636801d1d450", - "parent": "2d9c105581cbe6a2", - "type": "dependency-of" - }, - { - "child": "08f3410f0a4602ff", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "12a018034482fe97", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "25847f0c8b7812d0", - "parent": "2ddd11f048a6a586", - "type": "contains" - }, - { - "child": "25b93d8479d03922", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "2bb2758387094841", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "2ddd11f048a6a586", - "type": "evident-by" - }, - { - "child": "46e088ca1b060624", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "4998ded886abf971", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "6aa30f34e8bf06d7", - "parent": "2ddd11f048a6a586", - "type": "contains" - }, - { - "child": "6f953476e6e42f91", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "762a6d2f42dbb84d", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "77b4823c173e68f5", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "9f97ab08691b54d2", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "c25bb66032b208ef", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "c6bc56609e4b9d8e", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "e7dfdbaa2c8d0db8", - "parent": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "2ea91c16a6907faf", - "type": "evident-by" - }, - { - "child": "ae2e117a81ad42cf", - "parent": "2ea91c16a6907faf", - "type": "contains" - }, - { - "child": "c69df1e9ff615838", - "parent": "2ea91c16a6907faf", - "type": "contains" - }, - { - "child": "d7ca50bd57b33b78", - "parent": "2ea91c16a6907faf", - "type": "contains" - }, - { - "child": "076be70d2ca8f980", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "1f76915eb40259b1", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "2cf168bca0506cc0", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "2d5ec98426b858d4", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "385352548de0691c", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "2fc0063e7584b704", - "type": "evident-by" - }, - { - "child": "478021f734f3f14e", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "51f6c2e1df097869", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "5605af6de83e70b7", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "5f6b4e80b9b4d8c9", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "628a90e17628ecb4", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "736e105895061b2d", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "7c9e1e69bc2467ef", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "95082a001564c69b", - "parent": "2fc0063e7584b704", - "type": "dependency-of" - }, - { - "child": "bb302f0abe3f5a36", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "cb81e9ca4dbf46db", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "f24389ea74939741", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "fde51770677f3a51", - "parent": "2fc0063e7584b704", - "type": "contains" - }, - { - "child": "08222e193e6de8c6", - "parent": "2ff6c78c4500ed6a", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "2ff6c78c4500ed6a", - "type": "evident-by" - }, - { - "child": "583f360d542d7bd8", - "parent": "2ff6c78c4500ed6a", - "type": "contains" - }, - { - "child": "2bba05a28999480c", - "parent": "3344e28bea60387e", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "3344e28bea60387e", - "type": "evident-by" - }, - { - "child": "56e66cdbccf3f7eb", - "parent": "3344e28bea60387e", - "type": "dependency-of" - }, - { - "child": "97e2f03edd7e9088", - "parent": "3344e28bea60387e", - "type": "contains" - }, - { - "child": "cfaa85e6563fe784", - "parent": "3344e28bea60387e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "3425ee7723f69b83", - "type": "evident-by" - }, - { - "child": "60eb7e4999f74148", - "parent": "3425ee7723f69b83", - "type": "dependency-of" - }, - { - "child": "6cdddbc3cd47ef9b", - "parent": "3425ee7723f69b83", - "type": "contains" - }, - { - "child": "a105408c047da0b8", - "parent": "3425ee7723f69b83", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "36285f3184fdc550", - "type": "evident-by" - }, - { - "child": "4998ded886abf971", - "parent": "36285f3184fdc550", - "type": "dependency-of" - }, - { - "child": "6b77974846cb9352", - "parent": "36285f3184fdc550", - "type": "contains" - }, - { - "child": "fb6cf4b1d2d726f2", - "parent": "36285f3184fdc550", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "36e8c41fd6938953", - "type": "evident-by" - }, - { - "child": "69bf88d027fb7c7f", - "parent": "36e8c41fd6938953", - "type": "contains" - }, - { - "child": "a37f93501719e996", - "parent": "36e8c41fd6938953", - "type": "dependency-of" - }, - { - "child": "aa5c2ac44843f56b", - "parent": "36e8c41fd6938953", - "type": "dependency-of" - }, - { - "child": "b4e7495653011f1a", - "parent": "36e8c41fd6938953", - "type": "contains" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "38b424bee2a8db35", - "type": "evident-by" - }, - { - "child": "46c5e6ecb2b65323", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "4f6f636801d1d450", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "712e0503e5279d5e", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "7af4bfde7b3f1acb", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "869d8117117c2a40", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "876072091aef9489", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "8875eb673276ee9a", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "976da01d5e9119c5", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "a7f8ea4515ac767e", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "aa5c2ac44843f56b", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "bcf23722316d24e7", - "parent": "38b424bee2a8db35", - "type": "contains" - }, - { - "child": "d50c2d021f21396b", - "parent": "38b424bee2a8db35", - "type": "dependency-of" - }, - { - "child": "041cd92970aab92e", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "080264ebaeb31438", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "3655965d89532a34", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "37ebe536bd5aa15d", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "385ad25aed5129df", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "3aff051b7736e3f5", - "type": "evident-by" - }, - { - "child": "50a2407909b77534", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "57716f30a2ad314c", - "parent": "3aff051b7736e3f5", - "type": "dependency-of" - }, - { - "child": "634835bf0a7d2e88", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "653b4073dced9faa", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "684d0e62d3bd7c17", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "7f001420467a5915", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "86e5a279008ab652", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "897fa01141d90e09", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "8ee7570cf47e302e", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "9f3619464f9c731f", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "a5e19b34a01aa1b3", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "bcc35e9db75495d0", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "c1d5d19e0b6bdb0c", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "d40563e52cf2bae5", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "e740fc9c5e89658d", - "parent": "3aff051b7736e3f5", - "type": "contains" - }, - { - "child": "3dcc9fd2e3f9f187", - "parent": "3be129b7c5479ff1", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "3be129b7c5479ff1", - "type": "evident-by" - }, - { - "child": "79e0077daecf9958", - "parent": "3be129b7c5479ff1", - "type": "contains" - }, - { - "child": "fcacc8c1e128f9a7", - "parent": "3be129b7c5479ff1", - "type": "dependency-of" - }, - { - "child": "013865048b3b4fb4", - "parent": "41101b8d69788dbe", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "41101b8d69788dbe", - "type": "dependency-of" - }, - { - "child": "2512ef9462982daa", - "parent": "41101b8d69788dbe", - "type": "dependency-of" - }, - { - "child": "2c5a610e86435dc8", - "parent": "41101b8d69788dbe", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "41101b8d69788dbe", - "type": "evident-by" - }, - { - "child": "ea10964b9f99c02c", - "parent": "41101b8d69788dbe", - "type": "contains" - }, - { - "child": "04e95aa280f2c9a0", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "168887a4ddd0b9a7", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "28f126d70d41fadd", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "2c3b99b52037fdae", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "312661b604bf4a6a", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "430b452649ec6d58", - "type": "evident-by" - }, - { - "child": "49c9ab2e3b6169bd", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "5f032138dccfbb44", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "6699481ffc06380c", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "67b114eba28d4145", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "6837ec7d13bb0ae4", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "6b2a00b4bc929b50", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "7076d057ab25a499", - "parent": "430b452649ec6d58", - "type": "dependency-of" - }, - { - "child": "724932e89ac70aa2", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "744691c8e4855d3d", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "7a2d2ea8cb329903", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "7efa75423747caee", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "8675a71a0effb51b", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "8a607996c39628c3", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "b256763dff7f51ec", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "bdc90b4426aa693c", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "c3295fb89b646e9c", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "cc23a113b13e40bf", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "cf04c4fb91a5f6ff", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "d012c25526b4f803", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "d7d3ad4ccf2c2931", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "de73b68ff4a8e295", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "e4bf089175c0692d", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "e5de4f0e183c62b2", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "eec8bd2463408c14", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "f34640882a2d94c3", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "f9650894b60832c3", - "parent": "430b452649ec6d58", - "type": "contains" - }, - { - "child": "057915e653a8e373", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "08f3410f0a4602ff", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "09ce1597c06715bc", - "parent": "450c163f1aff2ce3", - "type": "contains" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "2015aa6ec3465662", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "2aed653a72b7f48a", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "2bba05a28999480c", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "3425ee7723f69b83", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "450c163f1aff2ce3", - "type": "evident-by" - }, - { - "child": "60eb7e4999f74148", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "67e81e91a8c1dffc", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "7023b2ad941f42b0", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "9e4d199232d82890", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "aa5c2ac44843f56b", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "bde62cb275dcc1cb", - "parent": "450c163f1aff2ce3", - "type": "contains" - }, - { - "child": "ddf817162edbd918", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "e7dfdbaa2c8d0db8", - "parent": "450c163f1aff2ce3", - "type": "dependency-of" - }, - { - "child": "154b924a9d0fadef", - "parent": "46c5e6ecb2b65323", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "46c5e6ecb2b65323", - "type": "evident-by" - }, - { - "child": "966234ddb38e469b", - "parent": "46c5e6ecb2b65323", - "type": "contains" - }, - { - "child": "a37f93501719e996", - "parent": "46c5e6ecb2b65323", - "type": "dependency-of" - }, - { - "child": "12a018034482fe97", - "parent": "46e088ca1b060624", - "type": "dependency-of" - }, - { - "child": "3e798e16580060d3", - "parent": "46e088ca1b060624", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "46e088ca1b060624", - "type": "evident-by" - }, - { - "child": "610170729050e3fc", - "parent": "46e088ca1b060624", - "type": "contains" - }, - { - "child": "7de7ac2fa3dff508", - "parent": "46e088ca1b060624", - "type": "contains" - }, - { - "child": "a2438db44da84f0f", - "parent": "46e088ca1b060624", - "type": "contains" - }, - { - "child": "b4a85c5d069841a1", - "parent": "46e088ca1b060624", - "type": "contains" - }, - { - "child": "d6868e09ac7ba66b", - "parent": "46e088ca1b060624", - "type": "contains" - }, - { - "child": "d93b9b69ad6cab7b", - "parent": "46e088ca1b060624", - "type": "contains" - }, - { - "child": "f0578a0ce1b3519c", - "parent": "46e088ca1b060624", - "type": "contains" - }, - { - "child": "f37a7f5a6168ef7f", - "parent": "46e088ca1b060624", - "type": "contains" - }, - { - "child": "15969ea096d44406", - "parent": "47508eca670369df", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "47508eca670369df", - "type": "evident-by" - }, - { - "child": "476c9c20e1e7fc90", - "parent": "47508eca670369df", - "type": "dependency-of" - }, - { - "child": "8e410cdbec023710", - "parent": "47508eca670369df", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "476c9c20e1e7fc90", - "type": "evident-by" - }, - { - "child": "98bb87aca0173315", - "parent": "476c9c20e1e7fc90", - "type": "contains" - }, - { - "child": "b584afcbb7e26255", - "parent": "476c9c20e1e7fc90", - "type": "contains" - }, - { - "child": "eb530b6c06324c23", - "parent": "476c9c20e1e7fc90", - "type": "dependency-of" - }, - { - "child": "fe4ab638457db507", - "parent": "476c9c20e1e7fc90", - "type": "contains" - }, - { - "child": "2d1af46087433bd0", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "3c211a851cf1128c", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "491d4893a84ee6f1", - "type": "evident-by" - }, - { - "child": "55dcd68a766d9603", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "5757707db8fa69a3", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "7076d057ab25a499", - "parent": "491d4893a84ee6f1", - "type": "dependency-of" - }, - { - "child": "70b635a015266e53", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "83e25eb62839bff7", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "896014556877202f", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "8d167fd526f13a5f", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "dfb8fa00a791d161", - "parent": "491d4893a84ee6f1", - "type": "dependency-of" - }, - { - "child": "e0fc10c58d8f4f15", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "f92289eace30c1aa", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "febb5cdbf0020482", - "parent": "491d4893a84ee6f1", - "type": "contains" - }, - { - "child": "08c9489ec6c1093f", - "parent": "4998ded886abf971", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "4998ded886abf971", - "type": "evident-by" - }, - { - "child": "531875250ac5eabd", - "parent": "4998ded886abf971", - "type": "contains" - }, - { - "child": "abd42bf7a662f757", - "parent": "4998ded886abf971", - "type": "contains" - }, - { - "child": "ddf4fd3755a5a140", - "parent": "4998ded886abf971", - "type": "contains" - }, - { - "child": "f35a309afa277d61", - "parent": "4998ded886abf971", - "type": "contains" - }, - { - "child": "0c958db3a6cf4fd9", - "parent": "4bd9cbfbcd17eaa3", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "4bd9cbfbcd17eaa3", - "type": "evident-by" - }, - { - "child": "7fd7b88666480d11", - "parent": "4bd9cbfbcd17eaa3", - "type": "dependency-of" - }, - { - "child": "d85fafeb089e8c76", - "parent": "4bd9cbfbcd17eaa3", - "type": "contains" - }, - { - "child": "df10c96e9dc0111d", - "parent": "4bd9cbfbcd17eaa3", - "type": "dependency-of" - }, - { - "child": "2bb2758387094841", - "parent": "4c1c362901b4ae1d", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "4c1c362901b4ae1d", - "type": "evident-by" - }, - { - "child": "9512069c6c7978fb", - "parent": "4c1c362901b4ae1d", - "type": "contains" - }, - { - "child": "9516c31b397a00a9", - "parent": "4c1c362901b4ae1d", - "type": "contains" - }, - { - "child": "9f97ab08691b54d2", - "parent": "4c1c362901b4ae1d", - "type": "dependency-of" - }, - { - "child": "c6bc56609e4b9d8e", - "parent": "4c1c362901b4ae1d", - "type": "dependency-of" - }, - { - "child": "00337d6008bf0618", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "00973b8ba461f164", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "044869766add5220", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "057915e653a8e373", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "08222e193e6de8c6", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "0919462d0d876880", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "09410d7cdee6b7a9", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "09f6bd60ae488e2d", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "0d5fc1290c3c97c5", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "0e01bf0bfbc47b61", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "0fc6d30eb223c733", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "109cccfdf0cf7b17", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "1210e6f0d18d95c3", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "12a018034482fe97", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "149f02d90873ce5b", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "16ce3f9a5a6f08b5", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "1a26ba66e66b3466", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "1bf51448294e0e43", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "1de6e19dee40b0ab", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2015aa6ec3465662", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "24835c355ffa8f6e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2512ef9462982daa", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "25b93d8479d03922", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2aed653a72b7f48a", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2baf633bc8a84df6", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2bb2758387094841", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2bba05a28999480c", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2d1a4631243ef86d", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2d9c105581cbe6a2", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2ddd11f048a6a586", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2ea91c16a6907faf", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2fc0063e7584b704", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "2ff6c78c4500ed6a", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "3344e28bea60387e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "3425ee7723f69b83", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "36285f3184fdc550", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "36e8c41fd6938953", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "38b424bee2a8db35", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "3aff051b7736e3f5", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "3be129b7c5479ff1", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "41101b8d69788dbe", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "430b452649ec6d58", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "450c163f1aff2ce3", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "46c5e6ecb2b65323", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "46e088ca1b060624", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "47508eca670369df", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "476c9c20e1e7fc90", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "491d4893a84ee6f1", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "4998ded886abf971", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "4bd9cbfbcd17eaa3", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "4c1c362901b4ae1d", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "4def493d5f96533c", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "4f6f636801d1d450", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "50aacee46546d54f", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "54553ec3061f963f", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "557e13a1cf1998d5", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "56e66cdbccf3f7eb", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "57716f30a2ad314c", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "58578df1b5161e39", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "5ae134ea8c2f9dd3", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "5b6897fbe1a544d7", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "5f72b60542cf0be2", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "5fbda5347c254f6a", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "603134b12dc04fbb", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "60b0ce00d0cff0e2", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "60eb7e4999f74148", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "647da6a471c14b1e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "65054a12d20f3bd6", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "67e81e91a8c1dffc", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "6bca9add7b246c04", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "6ce105ae25df46bf", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "6ce45dad023c1399", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "6d6e8a1c4d8f5a2b", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "6f953476e6e42f91", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "7023b2ad941f42b0", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "7076d057ab25a499", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "712e0503e5279d5e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "732de2031e7334e7", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "747a26ba1b8b92a7", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "762a6d2f42dbb84d", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "76ef77b2a5a01818", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "77b4823c173e68f5", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "78dc4e9a34d47de7", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "7af4bfde7b3f1acb", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "7b51a7c2d29cb3e9", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "7b8a5443f3ae24b7", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "7fd7b88666480d11", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "80b285a817bbd8db", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "869d8117117c2a40", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "876072091aef9489", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "8875eb673276ee9a", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "89a8f82cb9aef205", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "8a49897e59f569c2", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "8b37b2b8e2fce91c", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "8c0c5df11623bec9", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "9489a70dbd1c4a4e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "95082a001564c69b", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "976da01d5e9119c5", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "9e3755175020009e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "9e4d199232d82890", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "9f97ab08691b54d2", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a19481ad8109e13e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a19b0036f2925522", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a37f93501719e996", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a5f7ee908299e757", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a6922f8e0f890c0e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a762d1301d128fa5", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a7f8198e50b391d8", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a7f8ea4515ac767e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a8613391d2f5a59d", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "a880b6bdf5e0cde8", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "aa5c2ac44843f56b", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ab8cb640bde51524", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ac69ca1032624423", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ade4f6873a3cf602", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ae1fe690fc27e1c5", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ae9ec39ac48a90cb", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "b2b6d2667df8c2ec", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ba7d9cd5ef6527ef", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "badec4cf98cb9851", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "bee17957f6df430e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "c230fd832bac5f75", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "c25bb66032b208ef", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "c6bc56609e4b9d8e", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "c6ca962da553aeaa", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "cd568950fffd83d7", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "d4da56d1d23cc1c5", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "d50c2d021f21396b", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "d6bdae4cd6916b9c", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ddeb6215c71a51d7", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ddf817162edbd918", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "df10c96e9dc0111d", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "df7d1f0196fd5968", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "dfb8fa00a791d161", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "e0d481a26eb4a8ba", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "e6616d6e8b142bad", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "e78c9691bc71759d", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "e7a8562a18255d2a", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "e7c6c7e67b78f445", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "e7dfdbaa2c8d0db8", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "e9edcdc78a2b088b", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ea9c618e3b8ed6de", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "eb530b6c06324c23", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "ed26cdfa87149cfa", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "eec74e7c5122eb22", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "f31b75ee6392365a", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "f4f6c7a5773f97fe", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "fcacc8c1e128f9a7", - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "type": "contains" - }, - { - "child": "24a6b4dfab61ccb3", - "parent": "4def493d5f96533c", - "type": "evident-by" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "4f6f636801d1d450", - "type": "evident-by" - }, - { - "child": "46c5e6ecb2b65323", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "546c65ac06a9ef47", - "parent": "4f6f636801d1d450", - "type": "contains" - }, - { - "child": "712e0503e5279d5e", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "7af4bfde7b3f1acb", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "7c76a2ebab839820", - "parent": "4f6f636801d1d450", - "type": "contains" - }, - { - "child": "869d8117117c2a40", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "8b3b7d50a08faa6b", - "parent": "4f6f636801d1d450", - "type": "contains" - }, - { - "child": "976da01d5e9119c5", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "a70255ad97cbc048", - "parent": "4f6f636801d1d450", - "type": "contains" - }, - { - "child": "a7f8ea4515ac767e", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "aa5c2ac44843f56b", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "d50c2d021f21396b", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "db5c0b2cd3a38d94", - "parent": "4f6f636801d1d450", - "type": "contains" - }, - { - "child": "e6616d6e8b142bad", - "parent": "4f6f636801d1d450", - "type": "dependency-of" - }, - { - "child": "fed7881414a071df", - "parent": "4f6f636801d1d450", - "type": "contains" - }, - { - "child": "04a8ce6c4eee9595", - "parent": "50aacee46546d54f", - "type": "contains" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "50aacee46546d54f", - "type": "dependency-of" - }, - { - "child": "2015aa6ec3465662", - "parent": "50aacee46546d54f", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "50aacee46546d54f", - "type": "evident-by" - }, - { - "child": "58c739ee46001762", - "parent": "50aacee46546d54f", - "type": "contains" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "50aacee46546d54f", - "type": "dependency-of" - }, - { - "child": "e7dfdbaa2c8d0db8", - "parent": "50aacee46546d54f", - "type": "dependency-of" - }, - { - "child": "eec74e7c5122eb22", - "parent": "50aacee46546d54f", - "type": "dependency-of" - }, - { - "child": "03e698f377b588e8", - "parent": "54553ec3061f963f", - "type": "contains" - }, - { - "child": "1de6e19dee40b0ab", - "parent": "54553ec3061f963f", - "type": "dependency-of" - }, - { - "child": "3425ee7723f69b83", - "parent": "54553ec3061f963f", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "54553ec3061f963f", - "type": "evident-by" - }, - { - "child": "6d6e8a1c4d8f5a2b", - "parent": "54553ec3061f963f", - "type": "dependency-of" - }, - { - "child": "91d4bebb44d1cb83", - "parent": "54553ec3061f963f", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "557e13a1cf1998d5", - "type": "dependency-of" - }, - { - "child": "12a018034482fe97", - "parent": "557e13a1cf1998d5", - "type": "dependency-of" - }, - { - "child": "25b93d8479d03922", - "parent": "557e13a1cf1998d5", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "557e13a1cf1998d5", - "type": "evident-by" - }, - { - "child": "46e088ca1b060624", - "parent": "557e13a1cf1998d5", - "type": "dependency-of" - }, - { - "child": "670d8027d6bf9137", - "parent": "557e13a1cf1998d5", - "type": "contains" - }, - { - "child": "89f111a3ca3d877d", - "parent": "557e13a1cf1998d5", - "type": "contains" - }, - { - "child": "95082a001564c69b", - "parent": "557e13a1cf1998d5", - "type": "dependency-of" - }, - { - "child": "ddf817162edbd918", - "parent": "557e13a1cf1998d5", - "type": "dependency-of" - }, - { - "child": "e7c6c7e67b78f445", - "parent": "557e13a1cf1998d5", - "type": "dependency-of" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "56e66cdbccf3f7eb", - "type": "dependency-of" - }, - { - "child": "2bba05a28999480c", - "parent": "56e66cdbccf3f7eb", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "56e66cdbccf3f7eb", - "type": "evident-by" - }, - { - "child": "529e106d13f335f9", - "parent": "56e66cdbccf3f7eb", - "type": "contains" - }, - { - "child": "7b3e6fc4eb113058", - "parent": "56e66cdbccf3f7eb", - "type": "contains" - }, - { - "child": "bd7bf66c9781aa6a", - "parent": "56e66cdbccf3f7eb", - "type": "contains" - }, - { - "child": "eec74e7c5122eb22", - "parent": "56e66cdbccf3f7eb", - "type": "dependency-of" - }, - { - "child": "f31b75ee6392365a", - "parent": "56e66cdbccf3f7eb", - "type": "dependency-of" - }, - { - "child": "01536b9bf8a4a927", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "0c2d8a0388b07183", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "10aa9199c258f957", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "252c5956eff3ae21", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "2bd95a3e8ec38e10", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "34e9038806c01e72", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "381c9e48f0f5e14b", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "3a476a264336204f", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "40aa04e34e071c5d", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "57716f30a2ad314c", - "type": "evident-by" - }, - { - "child": "4a891ce6321a6069", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "4dda9178789d8b1b", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "4e4ec7f993c31bdb", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "5576e7b2b4231191", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "557c5bf794b44ca5", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "6f9c26480d506ee0", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "748780a6899bc810", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "864abe05a8a93a24", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "91a76e6794d0cd36", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "99116cbf374c0db5", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "99fe8b66e41e6754", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "9e598303f24dfda4", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "a012973e9d4f2c9f", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "a2064906e27c17b2", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "b18fd9274e261fc3", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "b3b2c455a98ae7d9", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "b53ec743384c1bce", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "baadd7d779583b52", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "be53462fa1d2f7c4", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "c6634eb1fdff2f17", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "c6e607a35f33b782", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "d981e2e4fb8c0677", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "e1319e65c203453e", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "e8bbcc1a19a23e1f", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "e8f93a2b7a6334d9", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "ea9c618e3b8ed6de", - "parent": "57716f30a2ad314c", - "type": "dependency-of" - }, - { - "child": "ea9d2f9f13a21eff", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "ee65b372c991f69b", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "effa0ac054ecb47a", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "f0239ab0879307d1", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "f2007a27c45bd552", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "f2b58a21ad679342", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "f3d0f7c831ac9c0f", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "f423bb41863ef443", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "f89e52e735ba76b4", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "fec7201c300ea59d", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "ff7b79c9c388e2c2", - "parent": "57716f30a2ad314c", - "type": "contains" - }, - { - "child": "1bf51448294e0e43", - "parent": "58578df1b5161e39", - "type": "dependency-of" - }, - { - "child": "1de6e19dee40b0ab", - "parent": "58578df1b5161e39", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "58578df1b5161e39", - "type": "evident-by" - }, - { - "child": "4e2f61adcf1fcae3", - "parent": "58578df1b5161e39", - "type": "contains" - }, - { - "child": "67e81e91a8c1dffc", - "parent": "58578df1b5161e39", - "type": "dependency-of" - }, - { - "child": "863ed514e1748eb9", - "parent": "58578df1b5161e39", - "type": "contains" - }, - { - "child": "c6bc56609e4b9d8e", - "parent": "58578df1b5161e39", - "type": "dependency-of" - }, - { - "child": "05c6044703a8095c", - "parent": "5ae134ea8c2f9dd3", - "type": "contains" - }, - { - "child": "24be1c02fcf042f2", - "parent": "5ae134ea8c2f9dd3", - "type": "contains" - }, - { - "child": "2baf633bc8a84df6", - "parent": "5ae134ea8c2f9dd3", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "5ae134ea8c2f9dd3", - "type": "evident-by" - }, - { - "child": "476c9c20e1e7fc90", - "parent": "5ae134ea8c2f9dd3", - "type": "dependency-of" - }, - { - "child": "603134b12dc04fbb", - "parent": "5ae134ea8c2f9dd3", - "type": "dependency-of" - }, - { - "child": "eb530b6c06324c23", - "parent": "5ae134ea8c2f9dd3", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "5b6897fbe1a544d7", - "type": "evident-by" - }, - { - "child": "60b0ce00d0cff0e2", - "parent": "5b6897fbe1a544d7", - "type": "dependency-of" - }, - { - "child": "98308a7bcf04f0f2", - "parent": "5b6897fbe1a544d7", - "type": "contains" - }, - { - "child": "c5be140e535f8d6a", - "parent": "5b6897fbe1a544d7", - "type": "contains" - }, - { - "child": "1969775f1c4e0900", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "2224f98c4344ac97", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "26daac9b059794a6", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "41d318af3ae8655b", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "5f72b60542cf0be2", - "type": "evident-by" - }, - { - "child": "50b70fc6eb752adc", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "513790f0ee4e4552", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "782cd8812ee12c93", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "8170a0adfce25ffd", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "87133b06ec4cda47", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "912dd73ac0e9051f", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "9761fb3f5a2cfeb9", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "9dc88446aea37ec2", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "a9a5d2a197fb88f8", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "b5e7f22bf965071d", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "c72a62eff64c2e54", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "d50c2d021f21396b", - "parent": "5f72b60542cf0be2", - "type": "dependency-of" - }, - { - "child": "d99f12d05646ac49", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "dbade4a11c6f5975", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "ec218dd623692111", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "ec848e7f1906e9d5", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "f02d54fff3cf1e5c", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "f8355e8483b1449c", - "parent": "5f72b60542cf0be2", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "5fbda5347c254f6a", - "type": "evident-by" - }, - { - "child": "603134b12dc04fbb", - "parent": "5fbda5347c254f6a", - "type": "dependency-of" - }, - { - "child": "819abdb1f8ef5fb2", - "parent": "5fbda5347c254f6a", - "type": "contains" - }, - { - "child": "db3da216f529169d", - "parent": "5fbda5347c254f6a", - "type": "contains" - }, - { - "child": "085d80d5032d7530", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "0bd6151f558da416", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "1114c5c197d8eae7", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "23647ea2dbf805f3", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "2ece963cdbc828c4", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "321a11d2f2118ee3", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "3f4b0bc3befc26ac", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "3f50eda25664bf9f", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "603134b12dc04fbb", - "type": "evident-by" - }, - { - "child": "4b4459a5039b0683", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "50e66d2dd565b6f7", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "621aa7fb06582a24", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "62678bc140ff2e00", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "6624d3cadd0cb50a", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "705bc6e6602454d2", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "775572e98d38cf19", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "7f552d16e303f8db", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "842a4e3025afa972", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "8f8761ca3db1c65f", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "96a27e1caec78a94", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "9b3bd4d62299c71f", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "a0b59a1b273cf8ba", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "a74c9ae48913d316", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "b07d5be3d53573ed", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "d2061277dd5fdd06", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "ddcd2855f16841a0", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "e2a1f2a1f80e8ac2", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "ef5d3f4c94f64f29", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "efcd88a9f59599c4", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "f19bcdb6bd27d031", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "feeaa169dc01c9eb", - "parent": "603134b12dc04fbb", - "type": "contains" - }, - { - "child": "2a0094a844b78c02", - "parent": "60b0ce00d0cff0e2", - "type": "contains" - }, - { - "child": "3efef227faf8e7ce", - "parent": "60b0ce00d0cff0e2", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "60b0ce00d0cff0e2", - "type": "evident-by" - }, - { - "child": "63b2d81d1123562b", - "parent": "60b0ce00d0cff0e2", - "type": "contains" - }, - { - "child": "7f2df0a255c44d3c", - "parent": "60b0ce00d0cff0e2", - "type": "contains" - }, - { - "child": "e4233617fa771b7b", - "parent": "60b0ce00d0cff0e2", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "60eb7e4999f74148", - "type": "evident-by" - }, - { - "child": "8ba915fd11067ef0", - "parent": "60eb7e4999f74148", - "type": "contains" - }, - { - "child": "a25b4a41d128031d", - "parent": "60eb7e4999f74148", - "type": "contains" - }, - { - "child": "dfe480ab6cd3dd89", - "parent": "60eb7e4999f74148", - "type": "contains" - }, - { - "child": "1482b596336b934a", - "parent": "647da6a471c14b1e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "647da6a471c14b1e", - "type": "evident-by" - }, - { - "child": "988e51fbe007a739", - "parent": "647da6a471c14b1e", - "type": "contains" - }, - { - "child": "c1fa88c27c3dc02d", - "parent": "647da6a471c14b1e", - "type": "contains" - }, - { - "child": "ea9c618e3b8ed6de", - "parent": "647da6a471c14b1e", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "65054a12d20f3bd6", - "type": "evident-by" - }, - { - "child": "80856cd15955796b", - "parent": "65054a12d20f3bd6", - "type": "contains" - }, - { - "child": "a368a7ef7f98f395", - "parent": "65054a12d20f3bd6", - "type": "contains" - }, - { - "child": "a37f93501719e996", - "parent": "65054a12d20f3bd6", - "type": "dependency-of" - }, - { - "child": "aa5c2ac44843f56b", - "parent": "65054a12d20f3bd6", - "type": "dependency-of" - }, - { - "child": "2fc8169cf38bf56c", - "parent": "67e81e91a8c1dffc", - "type": "contains" - }, - { - "child": "3425ee7723f69b83", - "parent": "67e81e91a8c1dffc", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "67e81e91a8c1dffc", - "type": "evident-by" - }, - { - "child": "bac9f2816cc570e4", - "parent": "67e81e91a8c1dffc", - "type": "contains" - }, - { - "child": "1a26ba66e66b3466", - "parent": "6bca9add7b246c04", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "6bca9add7b246c04", - "type": "evident-by" - }, - { - "child": "ab7ae318382c7a28", - "parent": "6bca9add7b246c04", - "type": "contains" - }, - { - "child": "c368958ca0002da1", - "parent": "6bca9add7b246c04", - "type": "contains" - }, - { - "child": "2fe85bcd61614eb2", - "parent": "6ce105ae25df46bf", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "6ce105ae25df46bf", - "type": "evident-by" - }, - { - "child": "94965582b69a1f8c", - "parent": "6ce105ae25df46bf", - "type": "contains" - }, - { - "child": "9bb94aeb0c091f40", - "parent": "6ce105ae25df46bf", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "6ce45dad023c1399", - "type": "evident-by" - }, - { - "child": "503018c94c410470", - "parent": "6ce45dad023c1399", - "type": "contains" - }, - { - "child": "cb6ce3263dae54c9", - "parent": "6ce45dad023c1399", - "type": "contains" - }, - { - "child": "e6616d6e8b142bad", - "parent": "6ce45dad023c1399", - "type": "dependency-of" - }, - { - "child": "0caac1b768f3af94", - "parent": "6d6e8a1c4d8f5a2b", - "type": "contains" - }, - { - "child": "3425ee7723f69b83", - "parent": "6d6e8a1c4d8f5a2b", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "6d6e8a1c4d8f5a2b", - "type": "evident-by" - }, - { - "child": "e35fd24e64e7c3c8", - "parent": "6d6e8a1c4d8f5a2b", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "6f953476e6e42f91", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "6f953476e6e42f91", - "type": "evident-by" - }, - { - "child": "4d19bc13374b0b3c", - "parent": "6f953476e6e42f91", - "type": "contains" - }, - { - "child": "54a0ef8b6fe18a5c", - "parent": "6f953476e6e42f91", - "type": "contains" - }, - { - "child": "762a6d2f42dbb84d", - "parent": "6f953476e6e42f91", - "type": "dependency-of" - }, - { - "child": "14abc0e8b84efffa", - "parent": "7023b2ad941f42b0", - "type": "contains" - }, - { - "child": "3425ee7723f69b83", - "parent": "7023b2ad941f42b0", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "7023b2ad941f42b0", - "type": "evident-by" - }, - { - "child": "89723706333133c1", - "parent": "7023b2ad941f42b0", - "type": "contains" - }, - { - "child": "14b5b1c19062240a", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "30634c42ca0e6c6e", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "3fe84ff3529628ca", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "7076d057ab25a499", - "type": "evident-by" - }, - { - "child": "55d53774a5761fe6", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "70ab92d28d8f61ac", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "76eb65f6f462d7e9", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "784ce1f9784817e0", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "7f279b13e251f80c", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "9148d68bdf0feb36", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "decefda10a22cb81", - "parent": "7076d057ab25a499", - "type": "contains" - }, - { - "child": "01322e4ceff958b6", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "0192efa16bab07b4", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "073d4e37a5fe0ddb", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "08ae7fd4a9d45c13", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "0fbbca986ff1f5c5", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "143c26a125b48c7e", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "18f7d292c433a584", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "1a0e3795d60b043d", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "1cddebb4790738a6", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "21d72de5bdafa428", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "238a6a585b73deca", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "23fb784277750a21", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "2b8ddbd241b78680", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "395b16cd809f53f2", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "712e0503e5279d5e", - "type": "evident-by" - }, - { - "child": "464b13dde0841538", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "46c5e6ecb2b65323", - "parent": "712e0503e5279d5e", - "type": "dependency-of" - }, - { - "child": "4c3aef561c2d4e01", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "4e76473abc7ab69b", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "51b25057d14390b0", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "53c3ab5bd585fce4", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "592fcb8a9451fddc", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "59fcbc57df7ad1af", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "5ab755bc9dc2a3fa", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "5dd7d6acac133f64", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "5f40110818f7c068", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "666e3f1896325310", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "66c11e658e447e8e", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "6caadf9d106f038c", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "6e9226ae36b95453", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "79da7a779c8ce7fe", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "7d1a1d226ff2b0c9", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "7ecf35224eedf7e2", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "81f88a92a270a5b1", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "867f95a359aaafa8", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "8684de2b270e1713", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "89ef15f0f1453c4f", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "94845f723d5af694", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "96ef7404826d2629", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "97c31bacb5437f0a", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "99207515d01bcc8c", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "9c5a3db04a210101", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "a1ab6192f3ce23fe", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "a25eb954c3379ab7", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "a3542f2e392308c9", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "a46917fce42adbc2", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "a7bbaf5809ed65b1", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "ab31c4632537cd57", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "aecdd42bb0faccd2", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "b2fc5d3980172367", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "b86af98b9b4f7819", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "c5e1042675e2b07d", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "cf7ce6ac528c0f13", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "d462a496d735eb36", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "df9e9fba981191d9", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "e3217d6be4054488", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "e9f37adba8338d55", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "eb8afcad78d9532b", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "ee5572da3bba0cf4", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "efaa84f54232dc0f", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "f1e7275d79226593", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "f203917800058fb1", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "f28d390475236aae", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "f77100337e114f9c", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "f8413cd07b6fee6c", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "fb3be7048d880ffe", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "fd393ffc59bec6b1", - "parent": "712e0503e5279d5e", - "type": "contains" - }, - { - "child": "1017bded0e8571d2", - "parent": "732de2031e7334e7", - "type": "contains" - }, - { - "child": "24a6b4dfab61ccb3", - "parent": "732de2031e7334e7", - "type": "contains" - }, - { - "child": "2ff07b8022dc29ea", - "parent": "732de2031e7334e7", - "type": "contains" - }, - { - "child": "3d7a2ec2b0eb51d9", - "parent": "732de2031e7334e7", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "732de2031e7334e7", - "type": "evident-by" - }, - { - "child": "4def493d5f96533c", - "metadata": { - "files": [ - "/usr/share/java/libintl-0.21.jar" - ] - }, - "parent": "732de2031e7334e7", - "type": "ownership-by-file-overlap" - }, - { - "child": "6c032b8dcbf84f04", - "parent": "732de2031e7334e7", - "type": "contains" - }, - { - "child": "74f72a9ecb09d80a", - "parent": "732de2031e7334e7", - "type": "contains" - }, - { - "child": "9e5cc07fa7cd2275", - "parent": "732de2031e7334e7", - "type": "contains" - }, - { - "child": "e8536d4d38a1b26e", - "parent": "732de2031e7334e7", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "747a26ba1b8b92a7", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "747a26ba1b8b92a7", - "type": "evident-by" - }, - { - "child": "603134b12dc04fbb", - "parent": "747a26ba1b8b92a7", - "type": "dependency-of" - }, - { - "child": "a44a4619faecb717", - "parent": "747a26ba1b8b92a7", - "type": "contains" - }, - { - "child": "bd6a2d578fb3483d", - "parent": "747a26ba1b8b92a7", - "type": "contains" - }, - { - "child": "152ea7f8ecbe5e68", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "195d5a338d3827b5", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "310b2089920a3f91", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "31c58f6c73e928c4", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "762a6d2f42dbb84d", - "type": "evident-by" - }, - { - "child": "62d75c2e3d2e9e6e", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "6d8c34c53d2104ff", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "98b1fa957222096c", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "a7668e2ba628abcd", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "b55626e483bdf19f", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "e7d1c44d3259e06c", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "ed054d5ad6e3032d", - "parent": "762a6d2f42dbb84d", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "76ef77b2a5a01818", - "type": "dependency-of" - }, - { - "child": "1a961c01674a06a5", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "1be893d99f0e9375", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "2247fc30e6a6b719", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "76ef77b2a5a01818", - "type": "evident-by" - }, - { - "child": "5822ee7eebee5c52", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "5d88aa783d795336", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "6ae6dd2c1300260c", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "9fe343a98f5edfb6", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "a94c166eaabf4f32", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "ac75af8442c5bea4", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "d00dab4b17ef1781", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "ea0c341fe4af259c", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "f39ee1b72d3810c1", - "parent": "76ef77b2a5a01818", - "type": "contains" - }, - { - "child": "25b93d8479d03922", - "parent": "77b4823c173e68f5", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "77b4823c173e68f5", - "type": "evident-by" - }, - { - "child": "a2b13bfea637b999", - "parent": "77b4823c173e68f5", - "type": "contains" - }, - { - "child": "a7db1a0e7cb1ddfc", - "parent": "77b4823c173e68f5", - "type": "contains" - }, - { - "child": "13f5809ab5156f7c", - "parent": "78dc4e9a34d47de7", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "78dc4e9a34d47de7", - "type": "evident-by" - }, - { - "child": "476a68fe8ae166b0", - "parent": "78dc4e9a34d47de7", - "type": "contains" - }, - { - "child": "5151cf2d612beb42", - "parent": "78dc4e9a34d47de7", - "type": "contains" - }, - { - "child": "5652bd86b6d4fba6", - "parent": "78dc4e9a34d47de7", - "type": "contains" - }, - { - "child": "576a8eb242370e40", - "parent": "78dc4e9a34d47de7", - "type": "contains" - }, - { - "child": "9482dcbc1f2fe17a", - "parent": "78dc4e9a34d47de7", - "type": "contains" - }, - { - "child": "dd27d86f764edd56", - "parent": "78dc4e9a34d47de7", - "type": "contains" - }, - { - "child": "ddf817162edbd918", - "parent": "78dc4e9a34d47de7", - "type": "dependency-of" - }, - { - "child": "37ab8b7fe39bc6a7", - "parent": "7af4bfde7b3f1acb", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "7af4bfde7b3f1acb", - "type": "evident-by" - }, - { - "child": "620476899594a191", - "parent": "7af4bfde7b3f1acb", - "type": "contains" - }, - { - "child": "aa5c2ac44843f56b", - "parent": "7af4bfde7b3f1acb", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "7b51a7c2d29cb3e9", - "type": "evident-by" - }, - { - "child": "7bc5693aec6127d4", - "parent": "7b51a7c2d29cb3e9", - "type": "contains" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "7b51a7c2d29cb3e9", - "type": "dependency-of" - }, - { - "child": "a7f8ea4515ac767e", - "parent": "7b51a7c2d29cb3e9", - "type": "dependency-of" - }, - { - "child": "df7d1f0196fd5968", - "parent": "7b51a7c2d29cb3e9", - "type": "dependency-of" - }, - { - "child": "e51ef711bbc1a1c3", - "parent": "7b51a7c2d29cb3e9", - "type": "contains" - }, - { - "child": "243a103f1a7560f0", - "parent": "7b8a5443f3ae24b7", - "type": "contains" - }, - { - "child": "402a6752b29c68e4", - "parent": "7b8a5443f3ae24b7", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "7b8a5443f3ae24b7", - "type": "evident-by" - }, - { - "child": "b26532bfbad64c53", - "parent": "7b8a5443f3ae24b7", - "type": "contains" - }, - { - "child": "dc32531c715eb769", - "parent": "7b8a5443f3ae24b7", - "type": "contains" - }, - { - "child": "f815ca7b513790be", - "parent": "7b8a5443f3ae24b7", - "type": "contains" - }, - { - "child": "08a47e176293a783", - "parent": "7fd7b88666480d11", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "7fd7b88666480d11", - "type": "evident-by" - }, - { - "child": "9e4d199232d82890", - "parent": "7fd7b88666480d11", - "type": "dependency-of" - }, - { - "child": "c2f602b83e57f867", - "parent": "7fd7b88666480d11", - "type": "contains" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "80b285a817bbd8db", - "type": "dependency-of" - }, - { - "child": "2a1cff1c83de65c1", - "parent": "80b285a817bbd8db", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "80b285a817bbd8db", - "type": "evident-by" - }, - { - "child": "c306d521810c33da", - "parent": "80b285a817bbd8db", - "type": "contains" - }, - { - "child": "2309c9d015518da8", - "parent": "869d8117117c2a40", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "869d8117117c2a40", - "type": "evident-by" - }, - { - "child": "5b0756d4661b888a", - "parent": "869d8117117c2a40", - "type": "contains" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "869d8117117c2a40", - "type": "dependency-of" - }, - { - "child": "1a8a742249146df1", - "parent": "876072091aef9489", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "876072091aef9489", - "type": "evident-by" - }, - { - "child": "4e1412afc474dbce", - "parent": "876072091aef9489", - "type": "contains" - }, - { - "child": "a37f93501719e996", - "parent": "876072091aef9489", - "type": "dependency-of" - }, - { - "child": "00337d6008bf0618", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "00973b8ba461f164", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "0173b006692b8ebf", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "01811f9878d8aa1e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "021766ee23104e37", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "038464260a531a0d", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "04f4014fe75cc9c6", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "05464beca56d7655", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "057915e653a8e373", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "057d223119c61a0d", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "05879e1b674ec02d", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "0674b3e6b71ae2c4", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "072ab00d53f6a53c", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "085a8892ed1d218f", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "0919462d0d876880", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "09410d7cdee6b7a9", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "09f6bd60ae488e2d", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "0a69e7d70896b689", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "0a95312840c64a32", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "0bcc0f6280ce4663", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "0d9f0aeab499ec21", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "0da956a0a874e9a4", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "0deccd209af40e37", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "0e01bf0bfbc47b61", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "0f0cadfcd247e563", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "0f3c6dbe19f13549", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "0fc6d30eb223c733", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "0fc6d30eb223c733", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "109cccfdf0cf7b17", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "118a190e329a357d", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "11c14e0786a84231", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1225d27af090e762", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "12a018034482fe97", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "1317640e9b23f010", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "13351823b137ac1d", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "138eb06700dac679", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "13ab315c58ead573", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "149f02d90873ce5b", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "162c7a1ef024fd07", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "16677a39abbc807d", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "166f54d2acebfcdc", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "16ce3f9a5a6f08b5", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "184ecefc4a371b49", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "187b261e84fe3635", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "19b2b86ea40a09eb", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1a0ef52927d5d8c7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1a1ae551f4c7ff74", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1a26ba66e66b3466", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "1a5750fbfbf5b47c", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1a823face6b0bce3", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1b0fe32c4a2540b2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1be0f2b4ba72e145", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1bf51448294e0e43", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "1ca1fc7a428c50bb", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1d3afd2df17af4e2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1de6e19dee40b0ab", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "1f2d3e3f66896a7e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1f71bafb35d5c3b7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "1ff4fba0a5eee537", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "2015aa6ec3465662", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "2054d5ef328b9483", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "20646b20f53e3356", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "209f4ed15c58dbe3", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "20bf6553835ac43e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "20ca22c80447fb46", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "219b661b34d3ad38", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "21a5858a330a7fb2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "225a4d7db4fe159c", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "22621234cacae08b", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "22a2c5c0efeadd30", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "24249d5bf2c8b605", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "24835c355ffa8f6e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "2512ef9462982daa", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "25b93d8479d03922", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "25d40626fa7b2926", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "261431c020027032", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "2690e5b6bb370f29", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "29eb482ad65b5bee", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "2ad37549043de8cb", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "2aed653a72b7f48a", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "2baf633bc8a84df6", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "2bb2758387094841", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "2bba05a28999480c", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "2bde0e096b2fd471", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "2ce088ebc8fcfb1c", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "2d1a4631243ef86d", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "2ddd11f048a6a586", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "2ea91c16a6907faf", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "2f22e11e6caa1517", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "2f5cc17c6eaef928", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "2f62c0af18d17401", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "2f8a777414e88686", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "310108aa8196229f", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "323c24bb4a881333", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "3311a023d59acca3", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "332f3ef166624a57", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "3344e28bea60387e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "33dfef81d22cefa7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "3425ee7723f69b83", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "351c4e46697457bc", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "356141258fa87935", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "35a845090a7cc804", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "36285f3184fdc550", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "36e8c41fd6938953", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "36f0b8b759362216", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "3783790f5f023b26", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "382b5ff442ec5a6e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "38982e8a99e7038b", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "38b424bee2a8db35", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "392970718e603b63", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "3981bd06df6798ea", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "39b83ddefdbf9c34", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "39eb13f3a501bc49", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "3be129b7c5479ff1", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "3ccd794e50c9e6f2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "3dd537b4553ddec2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "3e9bfd493e5e7a08", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "3f6ed9907d569cbb", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "40891930ec4fc841", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "41101b8d69788dbe", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "424e6cf9bb18005a", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "42ff0ffba57b57f2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "445edf4fdf99dcaf", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "450c163f1aff2ce3", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "45465314abd93578", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "8875eb673276ee9a", - "type": "evident-by" - }, - { - "child": "458ebc4157344367", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "46395c21b9d0d648", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "46c5e6ecb2b65323", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "46e088ca1b060624", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "47508eca670369df", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "475aa54d63229d99", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "476c9c20e1e7fc90", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "47760187bc380b82", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "47959f466ee01470", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "491d4893a84ee6f1", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "494f4ba57c30d762", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "4998ded886abf971", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "49c398a74bd1bfa6", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "4b7561f353d404a9", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "4b9ce4075c0e3839", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "4bb1b9f74db13ec7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "4bd9cbfbcd17eaa3", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "4bf365bba2dc2673", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "4c1c362901b4ae1d", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "4dab34d53b3f98b9", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "4df7b3b7013fe20e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "4f6f636801d1d450", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "509cdb17a73f6bd6", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "50aacee46546d54f", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "513e416c8cc40bb3", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "51a4c396732a4bd0", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "537bc85bd6a7b4e2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "542615a1dd8abfb0", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "54553ec3061f963f", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "54adcac4c5de2a4e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "557e13a1cf1998d5", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "56e66cdbccf3f7eb", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "57a5e0c51beccd90", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "580d7fbb746d2339", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "58578df1b5161e39", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "58eabd01cebbcae8", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "58ec4b9132d36c70", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "594a624e1489cdbe", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "595872336fc86e94", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "59b70b61a8130095", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "59ca8ffde01913ca", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "5a763cfef453ae7b", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "5ac6a03b09ee8051", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "5ae134ea8c2f9dd3", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "5b6897fbe1a544d7", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "5be79db29146cef5", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "5cc0c0f3f2cf62e4", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "5cecd0b6d6273767", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "5d64d34ff71d7d2c", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "5df300610630d903", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "5f0d0319437f4b63", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "5fbda5347c254f6a", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "603134b12dc04fbb", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "60b0ce00d0cff0e2", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "60eb7e4999f74148", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "610f6fc68c828be6", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "611d5a766811b343", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "61b3172bfbc6f293", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "61cfdcf5dd443c6f", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "62ba8b51e7d741cc", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "62cc4949ba9cf92f", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "63f0e1a583eb29e9", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "647da6a471c14b1e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "64b494c46e404bf7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "65054a12d20f3bd6", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "679c1f4ff3773e7a", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "67e81e91a8c1dffc", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "69fffa52e80e2b55", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "6b977109811a3791", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "6bc21c2e55255131", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "6bca9add7b246c04", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "6ce105ae25df46bf", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "6ce45dad023c1399", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "6d2421dd1fd52a8e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "6d521b3b8c8014d4", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "6d6e8a1c4d8f5a2b", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "6e1db6e39601cad7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "6e55b486f8002aa3", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "6f692e0da3277606", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "6f953476e6e42f91", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "6fe0df782bc51302", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7003de0778079167", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7023b2ad941f42b0", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "7070106f7546b096", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7076d057ab25a499", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "712e0503e5279d5e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "7202dd7c9ed872ad", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "727c69be38a7b462", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "732de2031e7334e7", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "736a79692343cd42", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7378c9918890d2f5", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "747a26ba1b8b92a7", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "7566666e8193ffb6", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "762a6d2f42dbb84d", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "76ef77b2a5a01818", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "77b4823c173e68f5", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "7862e72ad319eb35", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7875481ca9c3138e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "78dc4e9a34d47de7", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "7af4bfde7b3f1acb", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "7b03b2e23c3a5f0b", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7b51a7c2d29cb3e9", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "7b78019ea88e3949", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7b8a5443f3ae24b7", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "7c6140eea0aac218", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7d5206f699ef1d97", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7e5c5b9b87654350", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7f4c548f83e46a4e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "7fd7b88666480d11", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "80b285a817bbd8db", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "80ca313522b103ed", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "8191572186749eec", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "8310e12ad6fcf307", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "83286c2d3ec189f9", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "83bb042903c01edb", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "84864414770e8bc7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "869d8117117c2a40", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "876072091aef9489", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "8769d9fbdf633bcb", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "8967c1d940019ce4", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "89a8f82cb9aef205", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "8ae92c728a6f8851", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "8b37b2b8e2fce91c", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "8ca4ed0aa244f698", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "8dc3ad117c343085", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "8de62a63fd7f2fc3", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "8e2f7b9afbd4b7be", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "8f4b5c668dac8e40", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "92fd3f85bec1e22f", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "9489a70dbd1c4a4e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "95082a001564c69b", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "976da01d5e9119c5", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "983149b596c97a6d", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "99f0489e125a68fe", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "9a26cf23df2de1a3", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "9a69144f85bcdddb", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "9b222a87a7019e7a", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "9b643bc16f8289f2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "9be4899f7de6aac7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "9d4efdc54b776f47", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "9e3755175020009e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "9e4d199232d82890", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "9eeb081b6268596d", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "9f97ab08691b54d2", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "a004eba1021f95ee", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "a1058078f597ab7a", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "a19481ad8109e13e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "a1ac310acb71f3a2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "a37f93501719e996", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "a54a1693a3b50d23", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "a5f7ee908299e757", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "a6922f8e0f890c0e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "a73985023ccda046", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "a762d1301d128fa5", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "a7bd1be33631993b", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "a7f8198e50b391d8", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "a7f8ea4515ac767e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "a8094b6be5633efb", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "a8613391d2f5a59d", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "a880b6bdf5e0cde8", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "aa5c2ac44843f56b", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "ab8cb640bde51524", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "abe2f4302ea685ff", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "ac69ca1032624423", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "acdf1e6b986ab7c2", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "acf68815b2493181", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "ade4f6873a3cf602", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "ae1fe690fc27e1c5", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "ae260ccea3941c5a", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "ae962474bca36260", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "ae9ec39ac48a90cb", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "afac85f506b3b85f", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "b0b14199e2ca5b96", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "b2b6d2667df8c2ec", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "b4cedf15959261f0", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "b50234d8f5bae714", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "b666896f814b02e7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "b909a012416ceb44", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "b9ba6ab5eea7a944", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "ba1ccd95c9a3cce7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "ba7d9cd5ef6527ef", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "bafff67f1fb1bc3c", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "bb3af0e4910cf818", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "bec5a2248fb9b5dd", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "bed473906cd10589", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "bee17957f6df430e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "bf08006982009e60", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "bf91d2ee359f6816", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "c09b3415e31132d5", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "c193ad867067eace", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "c230fd832bac5f75", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "c25bb66032b208ef", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "c51dd15f8541a8b7", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "c5f20ffd722c23dc", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "c67a1c94c1646012", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "c6bc56609e4b9d8e", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "c6ca962da553aeaa", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "c6f4f5456ff31b71", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "c856001d6515df56", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "c8b276a5d83bfa03", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "caa81b3f7b112816", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "cbfdf35535463583", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "cc4047fba545d68e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "cc71d74ea94087e1", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "cca23a045f329ec9", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "cce7e15c749f672f", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "ce7bdb7784b293e9", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "cf8ae387025ea93d", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "cf935bacfcbaca27", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d006fa9b3cee4286", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d07e0cdc24060f7e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d0d76982d3ac4539", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d2a33a12c07dcabc", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d2bd3275cb42a3c5", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d3319c910fba7561", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d3f56b6b3b893dc8", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d4806e8f8e3855c4", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d4da56d1d23cc1c5", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "d50c2d021f21396b", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "d5421ad70f7b4567", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d5692cbb62f8e2e0", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d6bdae4cd6916b9c", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "d6c05af47b3c3e5b", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d6d42f1e1f97a35a", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d82abcc89ea7c8ab", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "d910f18b9964b9f4", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "daa5ff0cff0fd700", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "dad75d83e08259ae", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "dbc09001a5deedcf", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "dd2f420f329dcd2c", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "dd3de5f1199a7381", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "ddeb6215c71a51d7", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "ddf817162edbd918", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "de4d24e7cb4096e8", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "dea1d374d24082e1", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "decb8750bff6ad5c", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "df10c96e9dc0111d", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "df6afed5c0fe8f8a", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "df7d1f0196fd5968", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "dfb8fa00a791d161", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "e0d481a26eb4a8ba", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "e1b30761411525c8", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "e1ec6b5dcbb26a21", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "e3d12f035f4ca504", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "e43237ea80bdaaee", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "e5725aa9f149ba6e", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "e5f3a96dffdac7c4", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "e6616d6e8b142bad", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "e6e1244ad3424c25", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "e78c9691bc71759d", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "e7b047a7cf6e1cf0", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "e7c6c7e67b78f445", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "e7dfdbaa2c8d0db8", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "e90cdecd8c19b881", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "e9edcdc78a2b088b", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "ea9c618e3b8ed6de", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "eabdaa07cae9c174", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "eb530b6c06324c23", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "eb7f990f46793286", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "ed26cdfa87149cfa", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "eec34aa0a4bbf652", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "eec74e7c5122eb22", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "f0353292b0f17c83", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f042764f237c808a", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f15bb5a423e75d1a", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f176223d58ab3ea5", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f18c3d917da13b21", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f31b75ee6392365a", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "f3ed4f1f577baf94", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f3f812e58a9c6c58", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f40690ea968463e5", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f4f6c7a5773f97fe", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "f55da5dbf0f53dc6", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f66a51c5626df0a9", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f67c1c350fecedb6", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f76b5709477df188", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f78f41fb14e507e5", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f957a4e4d6ee3d22", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "f9f4f70421b91aa4", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "fb9c4b0d8fb77a58", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "fcacc8c1e128f9a7", - "parent": "8875eb673276ee9a", - "type": "dependency-of" - }, - { - "child": "fea0e0209df1997f", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "fee9e405d4c7413b", - "parent": "8875eb673276ee9a", - "type": "contains" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "89a8f82cb9aef205", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "89a8f82cb9aef205", - "type": "evident-by" - }, - { - "child": "884de14037686350", - "parent": "89a8f82cb9aef205", - "type": "contains" - }, - { - "child": "d4df7fd6cc275ff0", - "parent": "89a8f82cb9aef205", - "type": "contains" - }, - { - "child": "eec74e7c5122eb22", - "parent": "89a8f82cb9aef205", - "type": "dependency-of" - }, - { - "child": "1175051625ea3e46", - "parent": "8a49897e59f569c2", - "type": "contains" - }, - { - "child": "2ef1ed324902d010", - "parent": "8a49897e59f569c2", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "8a49897e59f569c2", - "type": "evident-by" - }, - { - "child": "7f259153dee2e6dc", - "parent": "8a49897e59f569c2", - "type": "contains" - }, - { - "child": "84eeb3daa077d4c0", - "parent": "8a49897e59f569c2", - "type": "contains" - }, - { - "child": "d50c2d021f21396b", - "parent": "8a49897e59f569c2", - "type": "dependency-of" - }, - { - "child": "ee20e5fa615d4d9e", - "parent": "8a49897e59f569c2", - "type": "contains" - }, - { - "child": "f858004734b08c73", - "parent": "8a49897e59f569c2", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "8b37b2b8e2fce91c", - "type": "evident-by" - }, - { - "child": "77b4823c173e68f5", - "parent": "8b37b2b8e2fce91c", - "type": "dependency-of" - }, - { - "child": "a121035757ebe684", - "parent": "8b37b2b8e2fce91c", - "type": "contains" - }, - { - "child": "be5020cf04c04513", - "parent": "8b37b2b8e2fce91c", - "type": "contains" - }, - { - "child": "00312bf3f9615e27", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "05fdb8293fbebe55", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "0f6c54963c60d836", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "124ea9851b3e967e", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "1f676ced8f1ed7f2", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "2615c9870b502bb6", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "33edf9c7d9d56fa7", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "42e5b87b978df748", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "8c0c5df11623bec9", - "type": "evident-by" - }, - { - "child": "4b26f5aa8f9bf533", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "4b71ccb5ef8fc7a4", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "4e50e2db701df6bf", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "4ee965572ea1bab5", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "514282d9374201b3", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "5fa897246d3c1d50", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "6d1b878c01dffe08", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "6e49061969e58d8b", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "71088e163919936f", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "71efd0b09ceba54e", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "7394569296bfa6c5", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "7d41f3f4ce26f49e", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "7e8feeda6776c85a", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "7fa37f129ff4fe5f", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "860976646d80533b", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "864770be96cdbc6f", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "89275f2a958a884d", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "8bbd0ef6dcfd4c6a", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "9448c241dad5cb12", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "9ae82cb15cc28944", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "9ccc07403013821e", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "9ef4a87ac0e11fb5", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "a473ddcaa5ada6ba", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "ad6bbdea8b881b59", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "ae21834dc56163cb", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "b199c4d6e66bcecd", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "b3668e158406e600", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "b4a048e198da65ad", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "b8477ba503f8bba0", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "babbdeffdd627363", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "baedd5c28977e121", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "c72d5715973e7f64", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "d1f0b4f22e6218e3", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "d46e7c86e7537dfd", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "d91ef7b32edc9046", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "e0e89d228846de7c", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "e91f30c60da10406", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "ed9d65aa2a799db9", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "f4a7a24d4d247fdb", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "fd0ff352ee4470eb", - "parent": "8c0c5df11623bec9", - "type": "contains" - }, - { - "child": "0688d1ab1128c4fb", - "parent": "9489a70dbd1c4a4e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "9489a70dbd1c4a4e", - "type": "evident-by" - }, - { - "child": "5264d4bb318af5fc", - "parent": "9489a70dbd1c4a4e", - "type": "contains" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "9489a70dbd1c4a4e", - "type": "dependency-of" - }, - { - "child": "0287920fb61a3064", - "parent": "95082a001564c69b", - "type": "contains" - }, - { - "child": "0b9653a0167cc533", - "parent": "95082a001564c69b", - "type": "contains" - }, - { - "child": "2448fd222ee33445", - "parent": "95082a001564c69b", - "type": "contains" - }, - { - "child": "30ad4978a34ad0ef", - "parent": "95082a001564c69b", - "type": "contains" - }, - { - "child": "3b7963a6ed1a92b1", - "parent": "95082a001564c69b", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "95082a001564c69b", - "type": "evident-by" - }, - { - "child": "8534d9a2cef0ec8b", - "parent": "95082a001564c69b", - "type": "contains" - }, - { - "child": "ccf1b9aa62559ed3", - "parent": "95082a001564c69b", - "type": "contains" - }, - { - "child": "ec6d22ceed2eb0ac", - "parent": "95082a001564c69b", - "type": "contains" - }, - { - "child": "0ca025d0ae3f2545", - "parent": "976da01d5e9119c5", - "type": "contains" - }, - { - "child": "2015aa6ec3465662", - "parent": "976da01d5e9119c5", - "type": "dependency-of" - }, - { - "child": "27cac36770f0d992", - "parent": "976da01d5e9119c5", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "976da01d5e9119c5", - "type": "evident-by" - }, - { - "child": "4a5d03ff6c49fceb", - "parent": "976da01d5e9119c5", - "type": "contains" - }, - { - "child": "9a314970efaed4fc", - "parent": "976da01d5e9119c5", - "type": "contains" - }, - { - "child": "ddbd241b5646d9f6", - "parent": "976da01d5e9119c5", - "type": "contains" - }, - { - "child": "e9ec9d19e0e59c9f", - "parent": "976da01d5e9119c5", - "type": "contains" - }, - { - "child": "fee8009c2f9d81be", - "parent": "976da01d5e9119c5", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "97b324fa6c9c4d6f", - "type": "evident-by" - }, - { - "child": "7623b6e8db2ed211", - "parent": "97b324fa6c9c4d6f", - "type": "contains" - }, - { - "child": "9f3343df8c41dfa1", - "parent": "97b324fa6c9c4d6f", - "type": "contains" - }, - { - "child": "df7d1f0196fd5968", - "parent": "97b324fa6c9c4d6f", - "type": "dependency-of" - }, - { - "child": "08f3410f0a4602ff", - "parent": "9e3755175020009e", - "type": "dependency-of" - }, - { - "child": "12a018034482fe97", - "parent": "9e3755175020009e", - "type": "dependency-of" - }, - { - "child": "1aa4f59785501820", - "parent": "9e3755175020009e", - "type": "contains" - }, - { - "child": "25b93d8479d03922", - "parent": "9e3755175020009e", - "type": "dependency-of" - }, - { - "child": "3fec4a84ef9d028a", - "parent": "9e3755175020009e", - "type": "contains" - }, - { - "child": "41493b07afdc0683", - "parent": "9e3755175020009e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "9e3755175020009e", - "type": "evident-by" - }, - { - "child": "46e088ca1b060624", - "parent": "9e3755175020009e", - "type": "dependency-of" - }, - { - "child": "95082a001564c69b", - "parent": "9e3755175020009e", - "type": "dependency-of" - }, - { - "child": "a94dd860df67966d", - "parent": "9e3755175020009e", - "type": "contains" - }, - { - "child": "0422cc93f15747dc", - "parent": "9e4d199232d82890", - "type": "contains" - }, - { - "child": "1b786bd64db4e394", - "parent": "9e4d199232d82890", - "type": "contains" - }, - { - "child": "3e087e94dd8d8747", - "parent": "9e4d199232d82890", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "9e4d199232d82890", - "type": "evident-by" - }, - { - "child": "53063e99aee596f3", - "parent": "9e4d199232d82890", - "type": "contains" - }, - { - "child": "6a6a769639a60a80", - "parent": "9e4d199232d82890", - "type": "contains" - }, - { - "child": "ed6f0d9fc00f7765", - "parent": "9e4d199232d82890", - "type": "contains" - }, - { - "child": "120d6287c6aabc63", - "parent": "9f97ab08691b54d2", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "9f97ab08691b54d2", - "type": "evident-by" - }, - { - "child": "4b68973ed69a4027", - "parent": "9f97ab08691b54d2", - "type": "contains" - }, - { - "child": "4cb6d066eb2cd581", - "parent": "9f97ab08691b54d2", - "type": "contains" - }, - { - "child": "6ca65e3555d744b6", - "parent": "9f97ab08691b54d2", - "type": "contains" - }, - { - "child": "7f8d9b9560c6b10e", - "parent": "9f97ab08691b54d2", - "type": "contains" - }, - { - "child": "e7dfdbaa2c8d0db8", - "parent": "9f97ab08691b54d2", - "type": "dependency-of" - }, - { - "child": "08f3410f0a4602ff", - "parent": "a19481ad8109e13e", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "a19481ad8109e13e", - "type": "evident-by" - }, - { - "child": "762a6d2f42dbb84d", - "parent": "a19481ad8109e13e", - "type": "dependency-of" - }, - { - "child": "76ef77b2a5a01818", - "parent": "a19481ad8109e13e", - "type": "dependency-of" - }, - { - "child": "8d3af5087d45eb3f", - "parent": "a19481ad8109e13e", - "type": "contains" - }, - { - "child": "9cc85479ac3e41dc", - "parent": "a19481ad8109e13e", - "type": "contains" - }, - { - "child": "003dd23084447fc3", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "01dc4f7efc3c658b", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "03b9f1f0b02c1e25", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "04a8294a7504832c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "060b9f0a5b6217c7", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "072399e3ca6e8c0c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "07e40e8c31c95417", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "0b1b570f028b4201", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "0c68e6a8cec17a4c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "0d0c802f23704a8c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "0dfcedd9b9f62762", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "0fc53044b4756161", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "113d71a2eada54ca", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "138699f6a93ef4e5", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "17715da43fc0e75f", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "1788867e09e0e00b", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "17e1b500b0fe9f4c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "19e2aef77372eb76", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "1af68eedc9109f75", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "1d4759585638c5cb", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "1de2aa4f72023941", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "213e6bcf3ef05516", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "2194d481f7e05c79", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "24fbd8d988fdbf35", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "25a850ec8810ab39", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "290b56354ed3fb69", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "296077c338a6ba7a", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "29e154a13892eca0", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "2a258d939e58fec1", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "2b445db86b2dd03a", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "2b86d36093f9881f", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "2b99f95041f3e5a4", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "2da85213d4ab72bf", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "2fed911a4ba5f190", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "3003981eff11b5db", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "322e314f1675036a", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "3270de45330ac436", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "3b96d1539bbfdc8b", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "3c68dcbd5772e3be", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "3f05b0aba7cf9eed", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "41cc8d2c37f39a57", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "425fa265aab92db3", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "42ec1b3b4ae9a186", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "43438b9e4b0d61fb", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "43bd206ecb9bff2c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "a19b0036f2925522", - "type": "evident-by" - }, - { - "child": "46670f5b50a1b1a5", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "484c3bc4e62f54d5", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "485e677fc159c14c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "493f6ad93f50b52b", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "4a1409294a64375c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "4a482530eddff6ed", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "4aa927213c534810", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "4d6914d52be6d1ac", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "50c904dc658c7c59", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "568b108598882631", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "57afa0e2ac4330ee", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "5ba64217af08b7d4", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "5bac75a0983948aa", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "5f1ee02a8f8d231c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "606914033644bd40", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "61175f715b131c5e", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "6200e9346a838423", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "6419b11b1e168e9b", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "6428bc6e21a1aea5", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "643eae52d894b458", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "6b3ffef1de503a06", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "6b48c139c7bfce7d", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "6d1a5665e9b4315a", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "6d1aea9aeec42f4f", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "6d66a33b1484fd70", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "701af9df82ec9bad", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "709c8592fa6eb6d6", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "722cfbb61969bf4e", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "7634a14ccec2bf0b", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "76a6d0de7d5439a1", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "7ac01111cb9e71d1", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "7bee19c2c4bfe5f1", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "7c2856296d8fd675", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "7c89e35dcd347bd9", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "7d0905e6e41bb041", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "809aec4c7c0bc300", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "83e8b0ae65f904fe", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "840358f6bc16af02", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "871244d23024d9e5", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "8ac54615767e8055", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "8d65b55ba4836d5e", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "8d7a0597af9053b0", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "8f8a6c578123519a", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "916c0bdb42e60006", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "917c9b587db5dda4", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "977aedeec7f166ae", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "99aa2cca2c07f68a", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "9a225fba27a15bc0", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "9aed2d8ecd1e5b9d", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "9c0f406c015cbec1", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "9c2d8098b495942a", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "9e1eca20d05abfab", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "9f9f8f8f18507be1", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "a4ef2325b8428913", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "a4f86f30f69eb098", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "aa6d161f02a90812", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "ab7ff92d5936aae8", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "ac48bb847eaea662", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "ac514c252a68382e", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "b089d4f2ed137ec5", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "b18d7b11b426f680", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "b1eb3f7451927f8b", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "b238cb2eb7d2995d", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "b3194a3a09c7f77c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "b5b73b4176883144", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "ba558bc87e093cc2", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "bdf5561ffce22776", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "c0c59ad18ef651ae", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "c416f83d7019e37a", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "c49a52e8786c0bb1", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "c609c3a52126fc74", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "c63169dc0b034947", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "c9c4fe9fc3019be7", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "ccee57a53ae8ef58", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "d1d6e79c5df2e3d9", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "d29498150e0bc082", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "d3e63c533628a76d", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "d4b8bf978f21b0a4", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "d7a293d937ed3b2c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "d7b77d501499d326", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "d8a224ac6c4e495e", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "dabe6f2cd2663733", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "daec6bd0c096dc7d", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "dbd9a8e4a6d644aa", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "dcddabcb9674d012", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "df026c2ecf613f3f", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "e47b27f43dc1181f", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "e497536051deee80", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "e4b7147124b37520", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "ec4f6d472fc5a8b4", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "ef6ff92eb42d5131", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "f39da54e2a468c10", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "f4276f6a2851e4e5", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "f438e9487e42365c", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "f5f40fd42313137b", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "f8caacdd042be554", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "fb5b8b37e75dc04d", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "fe55b1d82ba5e783", - "parent": "a19b0036f2925522", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "a37f93501719e996", - "type": "evident-by" - }, - { - "child": "503dd492a90adc8b", - "parent": "a37f93501719e996", - "type": "contains" - }, - { - "child": "df7d1f0196fd5968", - "parent": "a37f93501719e996", - "type": "dependency-of" - }, - { - "child": "f3c5b21f6969740d", - "parent": "a37f93501719e996", - "type": "contains" - }, - { - "child": "1c937fadf4fed5e0", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "1d170d0190f70692", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "2d4aa9cb8c826d2a", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "364cafd84530e191", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "a5f7ee908299e757", - "type": "evident-by" - }, - { - "child": "74fc7f408fb782ec", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "774e46d8158270cb", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "7f7687142ada7bbf", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "a597490f6fd8cbb6", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "a7651f6a42e2c830", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "b020c3bf33056323", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "c8bcd06527bf1818", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "e428d29a16077b18", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "e67e81d539c8ab87", - "parent": "a5f7ee908299e757", - "type": "contains" - }, - { - "child": "0ba33cd39fe2644f", - "parent": "a6922f8e0f890c0e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "a6922f8e0f890c0e", - "type": "evident-by" - }, - { - "child": "d50c2d021f21396b", - "parent": "a6922f8e0f890c0e", - "type": "dependency-of" - }, - { - "child": "edca8666b8c76bf4", - "parent": "a6922f8e0f890c0e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "a762d1301d128fa5", - "type": "evident-by" - }, - { - "child": "476c9c20e1e7fc90", - "parent": "a762d1301d128fa5", - "type": "dependency-of" - }, - { - "child": "576aba8698e6d348", - "parent": "a762d1301d128fa5", - "type": "contains" - }, - { - "child": "6ec694b8c2d5ea88", - "parent": "a762d1301d128fa5", - "type": "contains" - }, - { - "child": "eb530b6c06324c23", - "parent": "a762d1301d128fa5", - "type": "dependency-of" - }, - { - "child": "0dd39f5c05a45f5f", - "parent": "a7f8198e50b391d8", - "type": "contains" - }, - { - "child": "1ac8e658eb2a3ec3", - "parent": "a7f8198e50b391d8", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "a7f8198e50b391d8", - "type": "evident-by" - }, - { - "child": "a37f93501719e996", - "parent": "a7f8198e50b391d8", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "a7f8ea4515ac767e", - "type": "evident-by" - }, - { - "child": "9284f953e273e820", - "parent": "a7f8ea4515ac767e", - "type": "contains" - }, - { - "child": "a37f93501719e996", - "parent": "a7f8ea4515ac767e", - "type": "dependency-of" - }, - { - "child": "c2484f4b00bc9fe3", - "parent": "a7f8ea4515ac767e", - "type": "contains" - }, - { - "child": "05ee9fd7b046156e", - "parent": "a8613391d2f5a59d", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "a8613391d2f5a59d", - "type": "evident-by" - }, - { - "child": "a2a302b7897e23f5", - "parent": "a8613391d2f5a59d", - "type": "contains" - }, - { - "child": "b37f6756e5d3730e", - "parent": "a8613391d2f5a59d", - "type": "contains" - }, - { - "child": "dbb4d69c8b6c94a4", - "parent": "a8613391d2f5a59d", - "type": "contains" - }, - { - "child": "e3593be394d65d70", - "parent": "a8613391d2f5a59d", - "type": "contains" - }, - { - "child": "0b3de49d99f9eeb8", - "parent": "a880b6bdf5e0cde8", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "a880b6bdf5e0cde8", - "type": "evident-by" - }, - { - "child": "84a4f7772b764472", - "parent": "a880b6bdf5e0cde8", - "type": "contains" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "a880b6bdf5e0cde8", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "aa5c2ac44843f56b", - "type": "evident-by" - }, - { - "child": "d5184b578409a123", - "parent": "aa5c2ac44843f56b", - "type": "contains" - }, - { - "child": "df7d1f0196fd5968", - "parent": "aa5c2ac44843f56b", - "type": "dependency-of" - }, - { - "child": "f5fff8fa4c6b34a3", - "parent": "aa5c2ac44843f56b", - "type": "contains" - }, - { - "child": "430b452649ec6d58", - "parent": "ab8cb640bde51524", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "ab8cb640bde51524", - "type": "evident-by" - }, - { - "child": "b7f4a9f3c9ccdde8", - "parent": "ab8cb640bde51524", - "type": "contains" - }, - { - "child": "d99df74945732be0", - "parent": "ab8cb640bde51524", - "type": "contains" - }, - { - "child": "133bf233b7772106", - "parent": "ac69ca1032624423", - "type": "contains" - }, - { - "child": "26d0e8dbcf424e73", - "parent": "ac69ca1032624423", - "type": "contains" - }, - { - "child": "2ddd11f048a6a586", - "parent": "ac69ca1032624423", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "ac69ca1032624423", - "type": "evident-by" - }, - { - "child": "9e4d199232d82890", - "parent": "ac69ca1032624423", - "type": "dependency-of" - }, - { - "child": "a8613391d2f5a59d", - "parent": "ac69ca1032624423", - "type": "dependency-of" - }, - { - "child": "ddf817162edbd918", - "parent": "ac69ca1032624423", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "ade4f6873a3cf602", - "type": "evident-by" - }, - { - "child": "5712fb4cbc3b7c4b", - "parent": "ade4f6873a3cf602", - "type": "contains" - }, - { - "child": "7a6a4a02ef5f41d9", - "parent": "ade4f6873a3cf602", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "ae1fe690fc27e1c5", - "type": "evident-by" - }, - { - "child": "5762e1ce1c325c60", - "parent": "ae1fe690fc27e1c5", - "type": "contains" - }, - { - "child": "a59b16dd9fd9c805", - "parent": "ae1fe690fc27e1c5", - "type": "contains" - }, - { - "child": "df7d1f0196fd5968", - "parent": "ae1fe690fc27e1c5", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "ae9ec39ac48a90cb", - "type": "evident-by" - }, - { - "child": "7969637f1e355f35", - "parent": "ae9ec39ac48a90cb", - "type": "contains" - }, - { - "child": "97b324fa6c9c4d6f", - "parent": "ae9ec39ac48a90cb", - "type": "dependency-of" - }, - { - "child": "df7d1f0196fd5968", - "parent": "ae9ec39ac48a90cb", - "type": "dependency-of" - }, - { - "child": "efd60f382f096c89", - "parent": "ae9ec39ac48a90cb", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "b2b6d2667df8c2ec", - "type": "evident-by" - }, - { - "child": "860ddd890da03b33", - "parent": "b2b6d2667df8c2ec", - "type": "contains" - }, - { - "child": "b69d0e3d66b29ba5", - "parent": "b2b6d2667df8c2ec", - "type": "contains" - }, - { - "child": "c230fd832bac5f75", - "parent": "b2b6d2667df8c2ec", - "type": "dependency-of" - }, - { - "child": "1263783a3af7d458", - "parent": "ba7d9cd5ef6527ef", - "type": "contains" - }, - { - "child": "38b24f0a0cabe21d", - "parent": "ba7d9cd5ef6527ef", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "ba7d9cd5ef6527ef", - "type": "evident-by" - }, - { - "child": "603134b12dc04fbb", - "parent": "ba7d9cd5ef6527ef", - "type": "dependency-of" - }, - { - "child": "b161bb53a6146b9b", - "parent": "ba7d9cd5ef6527ef", - "type": "contains" - }, - { - "child": "006936ad030b2de0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "012493f45a0be1e9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "012d2e97b7a86ff6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "01d348a1694886b4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0258a4ff5a515b32", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "02ab7f70797017f8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "02daf541e048a1cd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "036662581036f4b0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0369d0c4433b5723", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "03b7ad0d831e1ddd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "03d98a8d06b553d1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0454b7f4ad93148d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "05098eadd1ee3a29", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "05ea692f5dff4a09", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "05f7b802d42db152", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "06353c1597f4a2f8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "06fb258e1f015c58", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0717fedf2958e0c8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "076fa0f4bf3bfda8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "080f0e377eb2b1c7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "087c6aff6b077fc6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "09112d44af768586", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "09261707b35f2e59", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "09266abe947e29b1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "09bf85f9a3aaeb16", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0a3b87bcee9cc67b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0a5c93e2d7cfe534", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0a67a5428ce0bb05", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0a871ebfb0f8e8cb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0ab73772eea636a8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0b6e2c60cd996ff8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0b9b6be94a51e432", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0c43383ef54d27c8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0c46007c4540e1c3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0c570deb1ed85c97", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0c73180cc33549e2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0d0bb7fd5f892b4e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0d4220b8789ee0a2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0daaca5607f528ea", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0db785414ba57a47", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0dd7a3602f97a7bc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0e073333d880e44b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0e437563828cd5bb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0e57ac27ed13f002", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0e6ef360cf40055d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0ed43726f10bcf0c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0f35f4b6333484b6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0f42029901ce9c98", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0f5807343b0ae50f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0f67464b84cbb2bf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0fa05b1aeccbd7bc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "0ff2995351b36741", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1030b3f7f16d2a31", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "108566d087b7d83b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1089ec2ce2a75787", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "10a4db369d1f5c98", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "10f093bcdd180d14", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "111af69a1b5b2033", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1181918b5e1ef17c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "11842882221d440f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "11d9cdadb9e1c986", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "125c94d14f69c975", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "12600ed4e4a1f2d3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "12780b4b5fe2a32f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "13188f71a1d6c018", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "132c1feb682fb6e5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "141d5c24e271bcfe", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1442d7288c3c337d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "14d0124129feab74", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "14d6b73181f8f984", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "15480ba9a1402e0a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "159f03c1dfce51fa", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1643f9a488c8827c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "166eed7f9cb2f5c1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "16e8a1c93513c0ce", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "174f6d48a1e63e05", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "17946ad96fe7559b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "17b87ca8956a41a0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "17e66aea06499a47", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "186126a0d740ed65", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "188f6c3e29ce908a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "18ed722908a6ee63", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "192a9b8b2cd08ff8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "19816fc858ae5cf7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "19a446ece96b9af0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "19d840e33440e4eb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1a0f63db810be357", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1a5a996ffcadb525", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1a68c9dfd29a7437", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1aa6d198cc8c70f6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1ae2f7c43faa5d66", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1b0dabed7364fd09", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1bbe1ad9d8af6917", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1bf65f2cdcd45733", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1c68dc15549cfa3c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1c8b65aa4f17f85e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1c9518edf4d812ad", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1ca2ea14e3c05d73", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1d0c848c891d633c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1d0f15c2c04e7a8e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1d12ace3f0e540cc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1dc0edfa2b12d8d4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1dfa35ff53a3b4b0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1e4a1f978a7712ba", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1e59dfcbf8fa2919", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1e8152d9f199c46b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1e96c82feefcdc2e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "1fe06b9b3e657e97", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "201d47199a474524", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2032cd29c5354986", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "20638d158af63555", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "20dcf04d2aaa4c64", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "20efe8c2e03aa13c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "211d9b5ba1a9f95c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "211deeef52595908", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "21b5f75e05727fac", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2209be82fe71918e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "226148951667fe18", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "230b36e2aac0c04d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2336eb9b18335e13", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2373fff967167873", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "23ac8e990a234a8c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "23be831044f36735", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "240c6ab4771f0d10", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2448710a9517f85d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "254ce5b911f5854b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "25958fa51a6d602f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "25e61d6cd20a046c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "26355334a1b30058", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "26c9e3700883afba", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "27681b0a0f3e985a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "27cd6785a5d69806", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "27dec3bebaa237c0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "27f87bc781c6e337", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2850c2e1417188a0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "287ef7b7d6bada58", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "28a960475c576515", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "28f639e9ca1e1649", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "28f69706643fc8b0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "297fa9536eea43a1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "29bb123b86d3b223", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "29fa4e812d6a62e1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2a675f21f3cf15b8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2aa568b657d25417", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2ae62228e61ad03c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2c5e0da05526793c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2ca97f58dc920f03", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2cd70e8016befbc7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2d4149fec0a4b8a8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2d4da98ac3dd14de", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2d9816a52c30db49", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2dced1a32a314a91", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2dd0005efc568be2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2dd19d4204fb2d3a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2de1d5e7e03a89c2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2e11031f6286d9cb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2e5ebe44f7acfef3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2ea3727ec230b5a5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2efb8ec56ef90948", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2f89245448dbe3ce", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2fd35cd64b1c8320", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "2fde399f169dcb39", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3061446a36f069af", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "30fac29e5106e6be", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "31301ca14812ba89", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "313a6bdc302aee37", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3156ea58185e40e3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "31a07c49e24aa41b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "31c2563963c38b23", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "32016bf1328bd9c2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "323e0c06ee5e5889", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "33023f1b14d7b8c2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3332a20488485ebb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3363887f6b72b2e1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "337cb0fe5c1ed875", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "339939ea8a5f5e95", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "339b41f8cfd6c528", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "33a56c5632a4fefa", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "347c42e66f0c451d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "34a44087432e08d5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "35105f242007dedc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "352fb86c0120d77e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "35300bedf0c7e6b9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3532be632076c45a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "357411071d74da62", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "35b4cd569a011505", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "35eeb3c58663995a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "361ed83d5d2a13ae", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "367a4362a0de435f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "36c73f1279d6e9cc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "37644c6271410737", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3765b57e12ef3213", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "37664f4d897a4ccd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "37809010f479e79d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "37bc495830ea0215", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "382e24e05b4da202", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "384256944cd4cbc0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "385d31ed5e14e2e3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "38788f7a2a48699c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "38903cf6eefcfbca", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "39740ce634edbda0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "39f005792aeb5848", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3a21a7e1a6c3ad9a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3a43e77808819bd8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3ab8cb451302166f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3abfd85888eecfcb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3b91236ca06fe72b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3bcd0ce13fe3f37c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3bf3999f0ca67812", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3c015b08ab969eb1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3c5463e42ff97ed6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3cbc4b7f6929ae12", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3d4060a8113318f7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3d7ccfa85a83f2cb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3d8bd3d7ba1423c4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3df1007cee4d1f29", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3eb488cce2c65175", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3f7e2d04995d8293", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3f8e967f9a7c1725", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3f99b6277f43a837", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3fb049cc5be4e702", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "3fb0c73afefd0197", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "407a2407ea498ae3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "40b3a713c4c088d9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "417c1464f3d2c9f9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "420b3d344aede60c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4297907c398eb32c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "429eae7d0515b94c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "42bab665be75fad0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "42fefbcbb70e6a27", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4304eb00392bd92e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4336cf9474317244", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4394c3197615ab17", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "439f57db480905d1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "43d947cc7ad40614", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4417d9f81cb78c4e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "446a22d38880794d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "44991e242ec683d7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "44b2cbe8e871c89b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "44ca03591efecbf9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "44f7ffcba05eee8e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "badec4cf98cb9851", - "type": "evident-by" - }, - { - "child": "4594d2fb9fdc7bf4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "45d5552ffc96e084", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "45dd27c65d90f90b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4626e1065be8ad02", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "462768e590e9e718", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "46b537d2674e8124", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "46d54b939efdbd77", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "476cc54350ba3311", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "476db80751af554d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "47bf28606fac51f0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "48210eea38478166", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4883f23e349784a8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "48abf396b0d7c2a6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "492e34e913ebe6a3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "496602a53e0242f0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "49885ba23fb7dffb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "49b5fa3f232a81e4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "49fd5f17c9285a49", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4a0412171fb73f51", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4a1c350f1183e5c6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4aa2ca5c1497b355", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4ab7a7e144d8b51e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4afc27f3978d6efc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4b0c8e60751bbbf7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4b7d2f39c9c3186e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4bbca48cdcf2df01", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4c25a3e24cf20bc6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4c49ee515e7ab9cd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4c7d9dc05ef28d32", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4cdbad47d79b9a71", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4ce7038aa8fe47bf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4cf4ae090529e82d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4d120bda51164dc1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4d2bd104e2023fcb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4de28abf19fb7b08", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4e6261f785183a34", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4e884740ab753066", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4ecb97e57c1f7e77", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4ef34ade4b717011", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4ef8ceea66ac2e1b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4f0032490c83ca53", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4fc50f2f981bd552", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "4fcd149acfc7a6a3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "508169f4f058b99f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "50c27601da0b82a0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "50d6292d1f47c38b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "51187991bc4b50ea", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5145335641095e31", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "51709aead6ec36eb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "51964aabdeeb1127", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "51afac68f31394f7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "51c10f219a534c83", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "523f33cf4e62e7f5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "525f583a472d8ee4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "532ff95400b74e03", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5342d0ed13bff2b5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "53fe9b3458978ff3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "54029cd4a3c7e138", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "54126899acbfc090", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5429f3f8d5959967", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5466ac28dc381bd0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "54878cd194a5d294", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "549deace8b62daf4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "54a385d16d43b97c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "553ec8dd53007b19", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "558d3669d6297290", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "55a7ba453a2daa60", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "55a91802be83e76c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5663316d2067697f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "56662186e8a00d07", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "56dad5531c443886", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "56feacec206de178", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "57e53ddabe3ae6a0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "57eda73a752aa90a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5834f883b096c561", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "58576df75407d3d5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "596d5840cc5aabbc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "59a1e85d2bfa4f61", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "59a4c6904f774f25", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "59ab6f82131368e5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "59af199e63037909", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "59c9754a94f1cabf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5a01e3d98b362e70", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5a061b44ade749d0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5a2fcf4098bef5d3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5a54a4085ab3d5cd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5abdbeb30fd8497f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5c42ed542eb33e14", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5d23b7eb3c7e6ede", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5d3cae7b7df3f78c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5d7332010b57d063", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5da543609af58d49", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5e84aa60efe8f5ce", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5f201456c751eee9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5f28d8b39362d7f3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5f6b26a1cebb6dbb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "5fd13281cae50d33", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6028e1dc0c7bc4fd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6046f5ada9de24e0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "609d9c82d70233c5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6131e21e09fd0570", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "61359f9af19fdbb8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6136db0b45bbff2f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "61dfa9319e3511a3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "61f2e326dc44c070", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "627a237c1edb1392", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "62946e227f21b00a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "62d31abff6c4d0f4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "62e13cbc3d569105", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "636e851bbc30144e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "63954ce36cda8f56", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "64571d6b66762b1a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6471c798ef752ab4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "653225358f3080bd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "65b341e4fb24d1b8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "660654ae3be0de35", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "660962e0dd7bb811", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "66a1e05d1e855f32", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "66aa6a9c088a13c3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "66e4cc7bcdf0a449", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6700bec5838c4dec", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "67c09c12c80bcd11", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "67deeeea2577176d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "67ef4cdfd8f4e65a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "68019e0d6fbb99bf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6803655195457eb2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "684a30926d5d43b0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6855a68639baa20d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "689ad1b2e35dd5ee", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "68b17f76b18e9ee3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "68bb97e7a4f057f6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "693fe5ad183e4936", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "69775142deffd19c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "698b2b4312fb3cc9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6ad2816bcfa0501b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6adaf882f55c4d54", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6adc45f33d4918d2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6ae33ce0599fa58f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6c276b00a7e830e2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6c84e01491ce29a4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6c99f8f4540faf11", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6e8c7670747db5de", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6ece789bcdbc1405", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6eeca05da5cee7a6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6f89087280ec92f7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "6ff17c64a29af9d0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "70059a65aa42b668", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "703569d727385d30", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "707a645a061a7783", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "70911bec8ad5d687", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "70af0ed8b9b3c9f0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "70d816d8d9f99e7c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7101b6720b5dfdaa", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7206d79f760715de", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "73c4a9bd2d275fe4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "73cd623822130756", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "746614c3b6fe9078", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "74714396ce9d5bea", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "747d4275ec90bae3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "74a1df5710aafb07", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "752123b859dc32be", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7628e4d500bde2a7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "76504c479cbb266d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7659e4c9ef1059bd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7684ec81335dba53", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "76bc95936d23cb5b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "771d439472590bc1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "77c49bd0e75d33c3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "77e87b54dc4f1fda", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "78042bfc982350db", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "780c1f80e6f73981", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "78dcabb895a370a5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "79e5e8ee8770f51e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7a98702b8068fa15", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7abf137a96a31c8c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7b0649ebcf1a1257", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7b1d61d9b4b6d283", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7b2a11c05f9ecc7a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7b9f90a43e5765a7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7bc485d79f637974", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7cae16e7cca280a4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7cb1d90104d28261", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7ccb8dc248c68490", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7cdee3637187f34e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7d3f3cf8c215cb59", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7d8e22448f3e5d50", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7dd3e2109d421776", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7ddf6bc6f46cfcb9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7e4f05a616511aac", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7e83f0b5d719e83e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "7e9c436c45f9e2a1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8027eec4e8321ce5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8057ba431afa66f3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "809442e9f925017b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "80ad53290dbf098f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8156c442407d3c1f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "81758ed215dad0df", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "81933af2e94ff9f2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "82321fce692c8e46", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "82391f0810b8d479", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "825abfee548bf467", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8266f305ac432af0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "82a637d2821768e8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "82c5c8ac1c77e830", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "82d73b3f0136565c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "83340d29cc256f72", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "83aa9240d88f156c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "83dce0b8815d98bd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "844332f1e628733c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8486d26a47e351c8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "849326d83ea6ce23", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "84ec94262fecb236", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "852dd7a7eedfc721", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "856febab6737d1b7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "85866f6bd0fabf56", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "85e981958f12dd31", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "86177d0636451cdf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "864be71f7233517c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "885e844ff3dd56ac", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "88c9d897f752d60a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "893a9a83f636071f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8946621cae7fb7d7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "89740f348db24b77", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "89d1b5d7718893e1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "89ebe056e9ea899a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8a7b51a423175d4e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8ab7834d6931259e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8af0283c8d2d0c52", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8b4ad9efdd491442", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8b51c761bf8322ea", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8b649e581a6c3394", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8b7320c117ec5aa2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8bbdcda43f2a8c65", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8bc2343a399c138f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8c6a8308b121e07d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8cbee65e28a66f36", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8d224efd6ef70e24", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8d310f50297a6922", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8d50435218e12a9c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8d6be1fcc9897adb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8dc244a6044a6085", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8e1f3d273652ae32", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8e26adc1191b1261", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8e6c707df216cd3b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8ebd568fd92b9f2d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8eccae9154ba6d23", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8ecfc87fa80f8068", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8eda2daaf2a80de2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8f2b95095dfea5b0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "8f8ac2c4d0364864", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "901f9a845f805cef", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "902a5017ae9bbed1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9039470b995855b5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "903ffd903a826b5c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9087d9758cd894de", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "913132b7b32a07ef", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "91769e179f5b667c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9213e4f6324cdd29", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "92198c990ad51288", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "926f8706fd8672d3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "92884d23a4f96b7b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "92c359f031e6ec46", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "932a22a0cca0035a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "934ba74f7c973100", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "93b3c291d9095c46", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "941930e248b2a874", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "951b18e595ccdf69", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "95533255812feab9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "957cbda7090a13dc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "95e7c5e2fc669a85", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "95f7c60267a2831f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9602ff89a5037658", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9610d293adbf48a3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9624b319e25bb26b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "977c81edf8b91294", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "980d35b8d195777e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "98217b597961f7ab", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9824c934d222ea6f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "986d6bd4cde6154a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "98860cbd86c0511f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "98a4cc051ac53f5b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "98cded2e5876bcc3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "990d2630c7ebf303", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9911afa607906828", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "993b6a13500bd10e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "995d540f3f41543e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "99631e4dabcc174d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "99a0f1f8f9a1089f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "99ae97792dbc9e15", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "99dd87d5ab076f7d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9a0cc372f12c2d5b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9a1680af0d5330e2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9a4bff2006a90aba", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9a643c6211946e4c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9a7461a67e923bb3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9aa490dc7af879bf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9b57613a083344bf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9bbf3c3076e9e4aa", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9bedf6563313b62d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9c44790218a06b2c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9c5afbf4f983b7e3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9cba4c0e927f7f3b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9ccb5ae6c32dcbdc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9ce76f398032b21c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9d10b8f540838c40", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9d2226514db83418", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9d3f95817d16fb97", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9d4d0b03f64e11b0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9da2bdbee05522f8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9dcbe5fa79df13e4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9e1ba5fd8abd89b0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9eaf41cef38901f1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9ecffb443c19bcc7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9ed9a85bc6cf4e4a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9f0952c0cbf19ee0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9f32062a93f698f3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9f4d94a0919cf13f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9f824afdce6c7d38", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9f877395f9aebfb4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9fab0f946f3c2418", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "9ff3db3ae92aabe7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a02a0ca461cf15ee", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a10b3998fe87850c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a116cb238d0a2885", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a189c38a3a56e25e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a1ae878d2cddb1bf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a21634d8d25b08d1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a2781f8ddf6aa26b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a28cd6d86c2bbc8e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a2be023f5da9e1e9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a334661ec61d878e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a37c74f75d1aa791", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a3b3605a35c8829a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a45c8615bbca9f34", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a4f09a0d7347c7ea", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a4f4f8ca682650a2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a55997d4b2185855", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a562417ba897027b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a582ea00a6debfc3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a5b72e7a5012ffd5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a5d38b1bacea8097", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a5d476a52ced3821", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a61bc9f4d43eb1a7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a66609736d6b2484", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a6695c1a43f1d699", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a68a85de2cf85417", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a6f3507315d948cd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a72a780dbd7579b4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a73a347fd2aacf4b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a73b765760dbd08b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a780bc1f0c856d19", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a80328b0558aaa79", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a81aea1363fabaa8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a82c5e9cf5280db5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a891c84651297f89", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a8e770f3c6f79deb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a96823e2e56c8bbb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a9dea83b05d1d0ce", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "a9e1aa20d3dfc4f6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "aa7a3862d13effae", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "aa9ab7765df344e2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "aad97aa3b4ad4120", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "aae6e89d8bfcd6c4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ab26a6acdb35b81e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ab2dc0d856d04187", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ab3dfea4b9b4db86", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ab76020314485fc6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ac56493aa3a014ee", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ac5ad45ae319370e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ad0ae0b0334e121d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ad3a95fbc28b3919", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ae07ead89604b319", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ae0f2a8a5fb78747", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ae208e7f1d2cfe38", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ae4cd355d99ed0a0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ae77fe129aefceb1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "aec5c6fe55f9c539", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "af191d180635735c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "afc9946397e2ed81", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b05776de67ef4e38", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b077b5c9db6ea874", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b096e01472b91d94", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b0f9cf3d348b9916", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b13f542fb65cade7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b15946c8fcf824ea", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b198ab6f41fa325f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b1b0548c0f3df177", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b29492f217e63af8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b2a1c4faf83bc001", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b34cf3ebf9405927", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b3844cb8825e9202", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b3cd78f6e1180042", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b3d4a3b7424abf17", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b3d805982fe89ae9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b3ff56ddcbfe5b41", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b44e246a484b4f20", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b44e4333c8d6e2d8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b46c29e381079f6d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b5258f111a087eb5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b53fe4aa5a81ba2a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b63092c3f88d46e1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b66518916481c31b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b66bdc46029c67b3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b6ba38f5f3b95dd3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b7229ba1bd3e1e51", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b76ec50728116e70", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b78eca98f453e400", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b78f0a71b3a07c80", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b7b0cbfa7b02c6b8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b82ff511171b3578", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b841f8d6dbdc97d3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b8962ca94f4127dd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b89dde01a830be50", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b8b513db498d7a76", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b91126415be99311", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b93bddb75e5a7112", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b9451043bcbe3848", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b963f3f51e251788", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b96d47d088d250d8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b97fed59f136d4c7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "b992e41f8e8da29c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bb13785eb137645a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bb7dc41785102d5e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bb8e4145c87773c9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bbe2c58f88b371e4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bc164ee96712b04e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bc2c3fe39d569985", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bca0cef452c9fb93", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bd4593c9e624de63", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bd7070efc3515112", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bd95ef2f48a49598", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "be49d7357919f83c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "be9441ccc7834e93", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bed0e78ccb0d4a67", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "bfd41dd9ce53f974", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c019fff349934f07", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c02164ba72e3b462", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c0510f33dfc610b1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c088fdf27d1680fe", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c0d72f7c332f1871", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c0f4f5605dcccda0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c0f6164a585ac2fc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c0fd97c1c79f487c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c14788b0d0d393fc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c19587ebe900e1eb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c26c9026894217f0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c36b22137c8b753a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c3700081d048f8d8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c384ee7e3321378a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c38de86c59b0d40f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c3c0ed1366522e77", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c3c59afa7a549a31", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c4325a57cad82020", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c47421123bda60ff", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c4bd4ef0d77d87d2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c4c11feb246d8929", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c54f5537c021b52e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c562d7d14ea9c9cb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c5f54537aaf78e16", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c66a398d063b7fda", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c6d881c388481a2c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c70d6721db7e4eba", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c70faaa28c1f4833", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c710c260129282e1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c735e0b5d237e6b6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c74ecfb89219526d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c77de4a172c6eaa7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c8742c2765c1117b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c92fb884ce91eaf8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c9c6e785a3e8951a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c9ed33d13520d58b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "c9f2edfa1549235d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ca4eaf9ede45a102", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cac68da6a726c8c8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cae9f65b208cebb5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cb7db275ada77e24", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cb99be4e5d313108", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cbb6e69c522f1506", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cc048f90a39b9ad5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cc4e751c8026e9a2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cc9ab5033880abb5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cd1acdb3941b1c2e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cd7aa2c7c3a52bac", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cda95061fc0b620e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cdbdf7a52c13a87a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cdc6c2fd485f9ab0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ce83b74dee091c25", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cee9c5a52b167a86", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cef1c9525a77e138", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cf6a112fc1c32a60", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "cfe66f67fc5d5062", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d01f68c8f3eb8078", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d12d3c0ca1553d6f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d12d862214fe2b92", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d149054edaa0dbb0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d153fde15d71c633", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d16d0e2b0fe02d81", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d19646ab99926ac2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d19e65a8a76ecc18", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d235a1760c6b6d6e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d29633b580e3a744", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d2c407c4801f07d1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d2d1f400afc7f248", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d341571f34850304", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d3617ef9c91ea98d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d3dba763f4782aa7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d43c6ce24005b08d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d480b8b6122f19e1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d4ff4722c83e2618", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d5658ee952cb8bc1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d5d6ef6e6e51e971", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d5fde6809e34039a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d61b0230ee81c8c6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d663a7176086484f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d692664e243792ce", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d759881dbd988c0a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d77f9752ed78a082", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d7c420d203c65f1e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d8177300bb26602f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d82aa1484099e533", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d85e691cf7be71c4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d8b011beba68276e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d8f33cdc542cc61d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d9005f84dd28b86a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d90ed3f3f2b23b59", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d93df6b5e2b1b2fc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d9458abcbe504f23", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "d99ec8e8bf3092db", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "da12957b6f45bb2b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "da48452bc5b0586e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "da67cc911dc06455", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "da6804271eacfcae", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "daadbe488bb62226", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dacaf110bf8de8c5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dacb16f91adfd0f9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "db256f185ffb86d0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "db28d325fdc920f5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dbb0a3d6089a9fc6", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dbc677cc226c5bde", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dbc9953bd27721fb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dc93f0190e4e6037", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dc9c2fd4d0882e1f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dcee6d53265c6e7f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dd103b6e816d2e18", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ddb4f5de1597ac0b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ddcf8b443ee015cf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ddfd158bb258ad7b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "de2f654f55e43ff9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "deef94aaa73db32a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "df47275ffcc31e91", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dfa775b1a4cd8adc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dfafc2fed9b823eb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "dff4eaf5e627dc6b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e01a66277298dffa", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e027e11db5614a10", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e0c4b249dc49b5f2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e0d6325fe75dbde9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e0f47aa12134bde4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e1059d5ffa603007", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e157098c3e84fd6d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e1a65b54813e7cad", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e1cb8ab54c9f6721", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e1f108efea1a1e25", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e1f7d1a0ccba0af4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e27a14ea2487f2c2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e281d24d7099f5e1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e344467ee5edd5b0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e34d69fc8fd64db0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e3d1d4762de8a676", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e405aac96d00e5d7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e4aff854b855cea4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e5106613e173a194", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e558cff7fd52dc59", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e562a2fd813adf51", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e5de415c3446e2e3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e5e3b46a1a2d5a03", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e601c1701bc15818", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e61d8e695e02fb04", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e6301ec54ce9cc97", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e6f8d36860bb46bc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e72ab15c04ff6c82", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e7689e8c1fc5573e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e78e2ee93ff9f909", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e8110fedcbb4bbc7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e99828beb48b1d4f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "e9e033d57ffd82e9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ea1aaed0ab87a473", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "eadc11370fd845fc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "eb8e5e6df9df8234", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "eba6b0256e879307", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ebbf7e8295fb5e73", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ebd0a93d3267ad61", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ec05fdddc6405e4a", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ec2e7f2bb7673e7f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ed24e4728284a2b9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ed36b4cb5bd9c9ed", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ed81670d1999434c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ed87e0441df05b53", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "edfd3510bb2385b5", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ee25033c0484337d", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ee6140067fcb2088", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "eec9358f27a7a493", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "eecf52428f813064", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "eed9f40d681fb553", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ef42a46cdfa4d92e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "efac16e7a92d453c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "efbfe85b62e3f019", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "efd5106bceae41ac", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "efe0ba154362e632", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f01ae968eb62bf0b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f088d420fcb56f74", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f112e59c57c7c71e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f11ff9e294ac6513", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f1327bb7fe09f951", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f1590ee036f7ecfb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f1788ebf72dc5fc3", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f1906e7d7ea5abf2", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f1c851c1fbf30be4", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f220a4ce496d6705", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f22bf24740d50643", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f274f38dee326cd9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f3bc2559240427ae", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f3dd79f3423c742c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f4dd4277804a1888", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f5273098405bb713", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f55cd53dc015d2e0", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f579b9a44f5e1ff9", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f5883dd1dfbb42dc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f589a10948caf601", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f5a4d7c7b693747b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f6326d6bb964d497", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f63e3664c1547dcb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f6ac26365c2b6edf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f7af9c881fd14a4b", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f7b4e7bf64ab4294", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f7f78475b0c0585e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f80d06a257fc6ca1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f826f3ed6e49b403", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f8586856958402dc", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f873cd54e82528d7", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f924133b1d7f404c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "f9346a8ece50d07e", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fa22a0dae8f70b79", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fb102ef03b82fd5f", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fb2cb918e8666fa8", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fb59586013731ec1", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fb60909f82ce6239", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fb6742bbcb773325", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fc1d3f5b49090a40", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fce260e8dfac90df", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fd47aac3a3fc1bdd", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fd68f0253823b916", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fd8c84b62f7eedbf", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fdafdb9ae4ed498c", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fdd2f8a78cfc4edb", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ff0721638dbce681", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ff203a8c56621056", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ff8690858a9ff857", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "ffe219c458010d25", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "fff81914e7f64123", - "parent": "badec4cf98cb9851", - "type": "contains" - }, - { - "child": "057915e653a8e373", - "parent": "bee17957f6df430e", - "type": "dependency-of" - }, - { - "child": "3425ee7723f69b83", - "parent": "bee17957f6df430e", - "type": "dependency-of" - }, - { - "child": "401a800e90f1acaa", - "parent": "bee17957f6df430e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "bee17957f6df430e", - "type": "evident-by" - }, - { - "child": "5e8778950f469a52", - "parent": "bee17957f6df430e", - "type": "contains" - }, - { - "child": "82332c556788ac52", - "parent": "bee17957f6df430e", - "type": "contains" - }, - { - "child": "ae37961d223ae093", - "parent": "bee17957f6df430e", - "type": "contains" - }, - { - "child": "1de6e19dee40b0ab", - "parent": "c230fd832bac5f75", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "c230fd832bac5f75", - "type": "evident-by" - }, - { - "child": "66926c992b81c03c", - "parent": "c230fd832bac5f75", - "type": "contains" - }, - { - "child": "fb5c2c761f54ef1d", - "parent": "c230fd832bac5f75", - "type": "contains" - }, - { - "child": "115af19621c9dbcd", - "parent": "c25bb66032b208ef", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "c25bb66032b208ef", - "type": "evident-by" - }, - { - "child": "6f1bce4478d72750", - "parent": "c25bb66032b208ef", - "type": "contains" - }, - { - "child": "7dd081f082659732", - "parent": "c25bb66032b208ef", - "type": "contains" - }, - { - "child": "aa9a4b699a2e3ef1", - "parent": "c25bb66032b208ef", - "type": "contains" - }, - { - "child": "033005890361dcaa", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "034c9454aa0a76f7", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "09e6f2b3467fb092", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "0ef4619ec67d5542", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "10d29e690821bb9a", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "1199f386b6f9b751", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "13ce87c0fe463d55", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "1534b3c9b1c68b6a", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "1a175321d87eecee", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "1a3fb6b8c99b574d", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "1c020ded7216d88a", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "1c8fb1b8a731ed6b", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "1ddad10cac5637a2", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "1dfd81bab98ada2c", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "1fbc9fea3720053a", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "2085a0de3d5b1cf1", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "2376373b5873c491", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "23773e6d6647807f", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "29bd5a6e57a15047", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "2b430bae0d0f6145", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "365bb2be0a215672", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "369f3ea18a07c9fc", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "3700d11cf00156d1", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "39a4939247916844", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "3b9c8811d73df432", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "3f7ffba0ab083999", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "406e6d15ff389df5", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "420b3f262aca0ea7", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "42829c41295a7382", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "c6bc56609e4b9d8e", - "type": "evident-by" - }, - { - "child": "47e90d5aff161638", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "4bcb7123445c7df4", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "4fc6436a1f625b2f", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "51f16e323170cb65", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "52472906a1efb4b8", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "52678fdae358b8e5", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "56723f3f34e09e87", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "661b9a2b9cdaef50", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "668385c01a786800", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "66a8d8fbb56085c0", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "6a51436237f068c8", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "6afdf7ef616abd68", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "6ca3017d57259a8b", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "6d80302e6e0944cd", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "708cf0619a77544a", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "7305bfc0ba1ca438", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "733db563e74d438b", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "7345bb38580d2ea4", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "74f28923963c745e", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "79e34416c4471899", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "7ad0a3a35de3991c", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "7b90b88fd7d14bee", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "7f54d50c564b22fc", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "8019c3f1503775a7", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "8bdf320e3dc524c9", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "8cc551c9c639e8a8", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "90ccb902c719e69c", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "940222e4a29beb09", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "9790c04cdc730b0e", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "98322ac39d64a9e3", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "998d22fe28766345", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "9a6a9d4588b0e91d", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "9c47d2babfba4eb8", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "9d1cade4a4ef56b9", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "a59320daa61fb394", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "aa1183a097a3e583", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "aa48b680db6ec399", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "b1250e857af43277", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "b3cde48a502d8871", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "b41d38ed529e3e40", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "b510865a1f35a9d2", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "b5c1a33e6e833a4c", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "b70cf198cc56f9c6", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "ba8ff9448baa2072", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "bab81f8e512e7103", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "bfed7653edabcebe", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "c211097b68c3c943", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "c4804642db998046", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "c7d70e84b6b0f682", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "c8def0e64bd36241", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "c9a8277e4fc8f288", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "ca7e29d2f0d8ed0e", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "caef2f4401a8e179", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "cc5ff78519f14341", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "cfdda1fd466cd0a7", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "d015cfd92f429cb8", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "d171265c0e81a6d9", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "d18ff86d07d9fdec", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "d2aeb4acae8da3f1", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "dbfa8c2705484df2", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "dddbafe833046f62", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "df40c94d218e8836", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "e15779817963ab26", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "e646999a42e51f0f", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "e7b2131d20075224", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "e82f9792fb94e71e", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "e8f30f0a19e29025", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "e95bc607ae8006f4", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "e9756ec739b84b7d", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "e98277187ef8a867", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "ecd98b65394ed682", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "ef869ed213477aa8", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "f032760890dfa467", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "f1809c6094fba6b4", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "f98ae18f5dedc385", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "fa24023b52c0f9bb", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "fd3ec5f73df00831", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "fd99bfc9be361ae4", - "parent": "c6bc56609e4b9d8e", - "type": "contains" - }, - { - "child": "0b773f47ab137591", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "0c413c8a1461283f", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "1cce0df8aaf13cdd", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "c6ca962da553aeaa", - "type": "evident-by" - }, - { - "child": "5104c7baab553fc5", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "56b41bee42e0358e", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "64cd7ff11243a1a8", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "7c42a95e7fbf6cfe", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "8729e5c03100257b", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "8bd65dc6a2e11879", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "9c2cac8950fcdc2e", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "a256b1ffc7a4017b", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "cf6371963e627f97", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "d91703a1f19cf460", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "f9571063cf6175ab", - "parent": "c6ca962da553aeaa", - "type": "contains" - }, - { - "child": "003c66c23a6e0e93", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "0273013a35a79038", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "07a82a6ea4ab8ee7", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "0ced8ae5c9e4f810", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "0e3de6678dd2cd54", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "1041951426d3bf73", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "128dfcc4c0ffea78", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "12a018034482fe97", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "12a018034482fe97", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "14f50b6def6a1b0e", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "15b4e28f6b4bdacc", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "17d89159e22e15b7", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "1cdae1ad4175ee4a", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "1f05dc4b393db57f", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "21fcd72f0f22ecb5", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "23acf3037081bf3e", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "256baed1c9215c7f", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "25cf334159b5e594", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "260d75b9938c57ec", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "26ea05f46ca47d3d", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "2ac1c2c4a72c6b1d", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "2c54349ef23600ef", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "2fc0063e7584b704", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "2fc0063e7584b704", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "2fc0063e7584b704", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "3279f336d0778137", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "32a7269cd57b5fc3", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "3459a1b3e4b6ea08", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "368a9dace4744085", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "3cde54dcc98cca8e", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "409fe46cbeb29a31", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "41d97967880726c6", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "43f0324ffeacc8c7", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "cd568950fffd83d7", - "type": "evident-by" - }, - { - "child": "469141f2116888eb", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "4718f408bd536f14", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "48aa9b23ff387cc3", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "49a4a911f92971d5", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "49aadfe5bca9b570", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "49bd6182b6b890fc", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "4bbb76c8395bd92d", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "4c921f4e5d0a6ab9", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "4df76420454e9eaa", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "4f72c1d522455566", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "4fd179316a982d55", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "502cc16c7f204009", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "54e835262b9de240", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "57716f30a2ad314c", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "57716f30a2ad314c", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "5af1e716333c27ee", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "5bfc24b14d20151e", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "5c2e7a9d068cd0ec", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "5f0349daff3daa94", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "64035ca845dba435", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "6beb6acf5515ccc8", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "6f3349455a897693", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "72951e6b87f84026", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "73858d76c03fc105", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "75da09a35859e61c", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "7682b73323d3111c", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "793a7a4001eed561", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "7c3437079e36b320", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "7d4641a357aed2ad", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "7ebe8e0f00250203", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "807908b694bb1f56", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "80836e311f4ce65b", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "82b93b5b63485574", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "837a9bed818b3e25", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "871f5bb481627918", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "8a15bb9c77eea972", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "8abb9ba8e6bdbe17", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "8d332537a9c767f2", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "8f74eff5018d378b", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "8fe1dd794a8a05bc", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "905a14f30b41aa92", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "90ab1387918adbce", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "926ee5f0d4850508", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "93c412de20866d5b", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "9592031d1878a086", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "9702789f397c6406", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "97c73606fdafeb5d", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "9e3755175020009e", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "9e3755175020009e", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "a17769a348b8aa2b", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "a19b0036f2925522", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "a19b0036f2925522", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "a259d446d5a096dd", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "a631f78a68219270", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "a95595a527457f6c", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "aa4db6458b51e736", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "ab2e3d90e9dda802", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "ac44be6d4f0badac", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "ad6c55a6d7cd396c", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "aef2dd9b7ccbfa1d", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "b07e8c52b1bab899", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "b2f9352f7a0c3da0", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "b35a3d7edce4025c", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "b419166ba6406f2a", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "b4cfe5034703c6fa", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "b6f50d41a7d793d5", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "b94a2ee3a42b6041", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "badec4cf98cb9851", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "badec4cf98cb9851", - "parent": "cd568950fffd83d7", - "type": "dependency-of" - }, - { - "child": "bf3c6a005fd96f88", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "bf45d6a940f44ea8", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "c08b4837c81748d0", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "c0ecd7bba8d3f448", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "c31b58a2f1072f17", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "c7cd1ae31be53eb9", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "c80cbce52640f151", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "c89848f24006a5f7", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "cdb6c0e04d395d56", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "d2d832e8137842da", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "d3a122bb75e7f8e7", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "d5cc1150663013ef", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "d64aefbc4c4eb9ce", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "d69f0c4966d127e6", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "db592d74c64a5556", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "dca89831359c946b", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "e47f3deadd040c00", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "e50125168717f830", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "e57a13836f3b1cd2", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "e585be910692e741", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "e7b731e0ad87c7c9", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "ea4be6346aa08e7e", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "eea8245632bb8508", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "f023cfd0659b80ed", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "f0b02c95f9d0edce", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "f1b6df191f420099", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "f25ceb54e63511f3", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "f2c20f5afcd7a91e", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "f84e4722dce86f46", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "f9f3ff1c8a7c2d80", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "fab6a6abecc24949", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "fe2a8b9b5b2a4f91", - "parent": "cd568950fffd83d7", - "type": "contains" - }, - { - "child": "1de6e19dee40b0ab", - "parent": "d4da56d1d23cc1c5", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "d4da56d1d23cc1c5", - "type": "evident-by" - }, - { - "child": "6cc2f6e524d86f01", - "parent": "d4da56d1d23cc1c5", - "type": "contains" - }, - { - "child": "74e27c32616172f4", - "parent": "d4da56d1d23cc1c5", - "type": "contains" - }, - { - "child": "03e72792c40d70f0", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "09d8e12f55bb2d94", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "0b04afa7c66dbf13", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "298ef8aed0d5d2db", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "369cf862a2a618ed", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "3f7cf31e907f84c9", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "408ceb4578957286", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "d50c2d021f21396b", - "type": "evident-by" - }, - { - "child": "4b92f6143b6007df", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "51d0a02ff5f7b747", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "54fd3d496c3904c1", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "556854834493344e", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "5b19db92deb3c652", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "61d555a0bfe111cf", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "674a17003cf1cdfb", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "6795f3304880512b", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "711a9bb7d2d3acce", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "7358048cb836e4ab", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "8d4d3275d2fc33cc", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "8eb9dc596d4d920b", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "9301437db591ee67", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "99cc371c5a6e60ec", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "a0fe94b63b7557e6", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "a5952afa3cd42877", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "a5e852c6979800a8", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "aaad8f534f57ca01", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "ab2e005f22784ddb", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "abaadf1cbe026f36", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "b7ccdb72c4e12593", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "c1ca4e99b629fba3", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "c36133f98b8dca38", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "c3affb86131c233c", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "c808423a8dfc8d66", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "c90e8d832583019e", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "d2024c90535e2344", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "e80ee9dbbc51bd8e", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "ee5bf6fb76313448", - "parent": "d50c2d021f21396b", - "type": "contains" - }, - { - "child": "1bf51448294e0e43", - "parent": "d6bdae4cd6916b9c", - "type": "dependency-of" - }, - { - "child": "1de6e19dee40b0ab", - "parent": "d6bdae4cd6916b9c", - "type": "dependency-of" - }, - { - "child": "29acf14283411006", - "parent": "d6bdae4cd6916b9c", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "d6bdae4cd6916b9c", - "type": "evident-by" - }, - { - "child": "461325a0ac38700a", - "parent": "d6bdae4cd6916b9c", - "type": "contains" - }, - { - "child": "67e81e91a8c1dffc", - "parent": "d6bdae4cd6916b9c", - "type": "dependency-of" - }, - { - "child": "0741f4bb5c074bb6", - "parent": "ddeb6215c71a51d7", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "ddeb6215c71a51d7", - "type": "evident-by" - }, - { - "child": "5b48fadb57f92896", - "parent": "ddeb6215c71a51d7", - "type": "contains" - }, - { - "child": "873a6209b3c3e4d5", - "parent": "ddeb6215c71a51d7", - "type": "contains" - }, - { - "child": "8a98e97d294a9ace", - "parent": "ddeb6215c71a51d7", - "type": "contains" - }, - { - "child": "98e75b64ddd18659", - "parent": "ddeb6215c71a51d7", - "type": "contains" - }, - { - "child": "c9ee18517622c71f", - "parent": "ddeb6215c71a51d7", - "type": "contains" - }, - { - "child": "fa18883144abc09c", - "parent": "ddeb6215c71a51d7", - "type": "contains" - }, - { - "child": "fcac254c9d1cf3c1", - "parent": "ddeb6215c71a51d7", - "type": "contains" - }, - { - "child": "276f5c3e4018793b", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "2ea91c16a6907faf", - "parent": "ddf817162edbd918", - "type": "dependency-of" - }, - { - "child": "3c7de8b749707d48", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "ddf817162edbd918", - "type": "evident-by" - }, - { - "child": "5029c125e00b3372", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "545cd216b2be486e", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "60b0ce00d0cff0e2", - "parent": "ddf817162edbd918", - "type": "dependency-of" - }, - { - "child": "6594c66ac3093ed9", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "680b4f3cc7df60c4", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "6ce105ae25df46bf", - "parent": "ddf817162edbd918", - "type": "dependency-of" - }, - { - "child": "7ebff49d2da077eb", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "85f59e3cb9ec73b9", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "98dcdab970ce3962", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "9bf52e1efa79a10f", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "9e4d199232d82890", - "parent": "ddf817162edbd918", - "type": "dependency-of" - }, - { - "child": "9e8c45858999f282", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "b0640d4c5ea33b88", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "b6583f5b177f6ea0", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "c8e48be45ae127e7", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "d2c2b49e718b456a", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "db4a76368ee97769", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "edbcd89f8fd87720", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "ee55bfcfeeec632c", - "parent": "ddf817162edbd918", - "type": "contains" - }, - { - "child": "1a26ba66e66b3466", - "parent": "df10c96e9dc0111d", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "df10c96e9dc0111d", - "type": "evident-by" - }, - { - "child": "65bb025ed1d34ef7", - "parent": "df10c96e9dc0111d", - "type": "contains" - }, - { - "child": "e7bd4ca31b409ed7", - "parent": "df10c96e9dc0111d", - "type": "contains" - }, - { - "child": "2ea91c16a6907faf", - "parent": "df7d1f0196fd5968", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "df7d1f0196fd5968", - "type": "evident-by" - }, - { - "child": "921f47f05ccc17f4", - "parent": "df7d1f0196fd5968", - "type": "contains" - }, - { - "child": "a611a9ef7abf8f76", - "parent": "df7d1f0196fd5968", - "type": "contains" - }, - { - "child": "1a5e5bed1d41377c", - "parent": "dfb8fa00a791d161", - "type": "contains" - }, - { - "child": "33ef1e8094ffcc14", - "parent": "dfb8fa00a791d161", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "dfb8fa00a791d161", - "type": "evident-by" - }, - { - "child": "4c212f6faa951ad3", - "parent": "dfb8fa00a791d161", - "type": "contains" - }, - { - "child": "843c679ed925a586", - "parent": "dfb8fa00a791d161", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "e0d481a26eb4a8ba", - "type": "evident-by" - }, - { - "child": "4bd9cbfbcd17eaa3", - "parent": "e0d481a26eb4a8ba", - "type": "dependency-of" - }, - { - "child": "cf679dd4719e99a7", - "parent": "e0d481a26eb4a8ba", - "type": "contains" - }, - { - "child": "e7dfdbaa2c8d0db8", - "parent": "e0d481a26eb4a8ba", - "type": "dependency-of" - }, - { - "child": "f420cab82a475af2", - "parent": "e0d481a26eb4a8ba", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "e6616d6e8b142bad", - "type": "evident-by" - }, - { - "child": "7feb44f9bf4a083c", - "parent": "e6616d6e8b142bad", - "type": "contains" - }, - { - "child": "aa5c2ac44843f56b", - "parent": "e6616d6e8b142bad", - "type": "dependency-of" - }, - { - "child": "fd7cd90e4438b0cf", - "parent": "e6616d6e8b142bad", - "type": "contains" - }, - { - "child": "12a018034482fe97", - "parent": "e78c9691bc71759d", - "type": "dependency-of" - }, - { - "child": "3be129b7c5479ff1", - "parent": "e78c9691bc71759d", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "e78c9691bc71759d", - "type": "evident-by" - }, - { - "child": "4934ea9581b51baf", - "parent": "e78c9691bc71759d", - "type": "contains" - }, - { - "child": "731426fd43b64abd", - "parent": "e78c9691bc71759d", - "type": "contains" - }, - { - "child": "000d6df3e908d732", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "006feccb72c739b1", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "0095687fd44fd7c7", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "01749cf7378ce976", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "0264d67fcceabc70", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "04991e8c535f39a2", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "04a503eba9b38fb4", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "04c5086bd08b768a", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "04fa7db83c70363f", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "053222098fa589d7", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "065df211be11a3c3", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "07523405fdc7a68d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "07563c331d622718", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "09410d7cdee6b7a9", - "parent": "e7a8562a18255d2a", - "type": "dependency-of" - }, - { - "child": "098c95fea7d58364", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "0ad9fc7adbea5367", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "0ebc67cf55cef163", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "0f917aed5fb6f17b", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "10db978f27e6c754", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "120297d8560a80da", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "137896e81d70829e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "13a91d3b66040887", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "14c20a2457e5d288", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "155cdc9d46a1aab2", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "1a433a126db550ac", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "1a48c62980b3d78f", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "1aae566630b72b5d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "1abc728fd062cd50", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "1b6de48915aa75d6", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "1e4b715327c22b56", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "1f1d4bf8d048c706", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "1f7034f82932045e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "20e25db4ac80613d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "21e8e098272aecf0", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "241e2bcafcfffa2d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "252e85713f6a50a3", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "282b77e89d54fcc5", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "29148e45d2bfa1f5", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "2962c861188f0313", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "29f581eb3c79010a", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "2a26a3e973757735", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "2bcc73766921c110", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "2e1b14a47cb7629f", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "2fc5d0865fa80578", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "30f6a3a75740ef93", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "324367f4599ff6ff", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "332158167e6bb0e5", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "350399965f9797b0", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "3523dbde1d6622da", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "393e830b5d74155a", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "3a44fe5fdd4503dd", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "3b1210a3102ce78e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "3c8cad059f50fee8", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "3ccb27850c04768e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "3e481fdccf932c68", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "3f349fbe6f4007b8", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "3f6ecb37daac40e7", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "40835fdb0cc60fac", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "4228263cb0e0aa90", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "4363d4b0df216883", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "e7a8562a18255d2a", - "type": "evident-by" - }, - { - "child": "47399d6044aa53a1", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "4848a181dc1155be", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "49b5b349f4c3a400", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "49c71d3834b04624", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "4add2d47d6f280fa", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "4f57e2b3d701f3fd", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "4f94bbfbdc9f853e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "51a43af8f95fb502", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "5215e7452b48929a", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "521cd11e45288382", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "52c03374b4067eb5", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "52f9a376efc1374e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "535034d941af3481", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "55d97536510ba528", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "568108ccb73990da", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "56ab05145ef2f935", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "586fb7507ee33d98", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "5a5e62a32d37d0a8", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "5f776b16b7cc83a7", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "5fa1b8549394e3ba", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "61d48e0f7e3ab951", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "6332385583f669e0", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "63c8d31446ae2282", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "64f52118fae97659", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "655afcbea32518f5", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "65fb2c0465a6be3e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "6602ad0c7e35adeb", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "694906cda460452c", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "69c3a7b4e2345a10", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "6ad9686562666e31", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "6aee120e264066b1", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "6c28657df9e9489a", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "6e36eb0846111440", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "6e9c5dab971acc64", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "7119e1a007af19d3", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "727c40f2e57c0543", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "7430908333220cbe", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "75135b605a6ba33d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "778d39e416ea9b3b", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "795fcd0a956a5941", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "79b7e0ec342a5d58", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "7b232a23e9e0acf3", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "7c090cbd76819966", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "7d313a39c795f9fe", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "7da056b97c3777c3", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "7fee42ec8499d860", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "8058d831ea835415", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "81c61c50a660ce5a", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "85accce7ba91cf7d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "89a04fa5e8896ca8", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "8a7c12dda2cdd20a", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "8af9699ba095e7e5", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "8d19dd097bfc14fc", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "8df355de3cd9ca39", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "91d9a196267f4f21", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "93dc112d645d7c50", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "96353687c387d1a4", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "9649768e616bb926", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "9705003ae443da24", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "98a307715bbbaacf", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "9ed47346285c2ae9", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "9f4242f033370093", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "a2e42c0cbd2ca814", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "a37e488c876d3a2d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "a5a3b1f754b62f6f", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "aa16dcb939277f17", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ab20c172ab7c3b95", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ab5af7d8a296efd3", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "acca03c19c85d52f", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "acd362d9183e8b00", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "acf4051457326bce", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "af312edc94d44dd6", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "b0ca9189cc2e7af0", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "b140b5dcf01b526c", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "b2599ad5f165d8a0", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "b614392dd1ef7e13", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "b689a6a425ae00f1", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "b835810e836706fe", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "b8eb7618fbb3c1ee", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "b9d248e82872679c", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ba1483e61acab936", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "baa359919a1edce0", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "bbb92acd7888bde7", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "bd0e3bca0835f30d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "bd1fad2991326cc9", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "c0b4a5eae50ffb74", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "c1c595578fea0f81", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "c2dd20a37426ab61", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "c324d3b985b6323e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "c4b36838613cf299", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "c4d75410f477c7ff", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "c94c461c53b686f1", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ca1dae0e2db13d0c", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "d03d17f30810d4d3", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "d23575feb4500ff6", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "d267803b0251cbfd", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "d2b2b2403bb48fda", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "d41cbaec77b06ec1", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "d901e44be3be7e46", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "d912819d8684a268", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "dadb495cd057536d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "dae834a07ec9b16e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "dc04542ef795ba6b", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "dc83cad58bfd9484", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "de5c24cdeb858e49", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "debb140143075757", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "deefcc616e852094", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "dfa9f36377bfa3e1", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "dfeb6e56f1d78a74", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "e2f6b36a78e49238", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "e5bb8de7cb9873bc", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "e628355f5b948d75", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "e65c3e5d15dd6731", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "e67989d7fb451648", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "e830f40a8a2e6465", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ea572db32a613bf9", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ebb23ad27a4a85c4", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ec3feb4c0fed9289", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ed15d80c66ac0be5", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "edcdabdb0a8edd04", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ee54df8dcf30579e", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "eed71e9ce34982d2", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "efb3d80f0f640410", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "f0381c389e046d4d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "f80e84efd1dd7da3", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "f81bf180d1baa6a5", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "f93b83fdf03e9a3d", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "fbc61c243d882a76", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "fd290fbfd5a1b5b7", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "fe6420625d9b7f92", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "fee4f117bfb2fc8f", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "ffe66f2acffa2e8a", - "parent": "e7a8562a18255d2a", - "type": "contains" - }, - { - "child": "009ec8c9fa6f2a9e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "012285826d1c531d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "01e943c60ad20676", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "022ecd141ddba710", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "028a93e3109d37d8", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "02b7658326c0abc9", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0303f677ef4887d5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "039bf4187ff1fa90", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "03ad03238832e8f2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "03bd46e8ae80d39d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "03c1fe0b11cf0aed", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "041df8ee3556020b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "04632821f2f73a2c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "048d04071c3ca586", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "04ff5c9cc5b680e3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "053c875703955ae5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "053cdb702b4b0e52", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "05ef27f51f39fe27", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "06347a109a320ba6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "06b5c4b1f5c35fcf", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "06eb69023b09db36", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "08dd5da226b044cd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "09223c18f069c079", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "092686918093e067", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0a86c7cc730849de", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0a9a522b88abcbed", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0aebba30347f6cf1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0aed519b7a034f4b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0b33bb8adb257bfa", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0b9542f79d719c95", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0c3d9346d9076bf1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0c859e87aa1346ca", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0cc5091286ae1e2c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0cf7c11936a02aee", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0d655df1ba1bb943", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0d75c84fd16cd024", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0f0374de34a5d285", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0f0c2f65751430e6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0f3432b26d625246", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0f83364fe2d3d527", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "0fc1cc90bc0e423a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1134ca9f3efb09e7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1161365222e4fff2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1167dbb6de28d2ce", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "11746737956192cc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "11f10c058083927f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "11f7856c6af17f75", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "125f3609c8bb07bd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "12829ea9ed2bf34e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1349a57ab9ca6441", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "13aacfe0edb50dc0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "13de6f7537d0f67b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "14b704e6cbb78525", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "14bda53d817e9824", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "14ecc366065a8581", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "151643df4838496e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "15be135c66aebf97", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "15cebaf43824c1ce", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1638ae5c220a6bf7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "16438d7104e0c52a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "16bf2953b37e8565", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "16f4e5b6b4d7a76d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "17487893681a0013", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "17c90be39b9bf566", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "17dfdbf5a2511c3f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "17fce434f8abbc98", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1881b60b157fe7fe", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "189c9b2e99dd8c23", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "18d19e86985a33d3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "19ce758b73640a81", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1ab26f46b5daf248", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1b07d6355f074418", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1b730038cabf6681", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1da7dfaee897a856", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1de98807f62d2cdd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1e070e6b7f6b633f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1e2db6faf53c6481", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1f01fa78f58c9738", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1f80f30661f67a93", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "1fde31caac5cae8b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "219e638e6c970d4b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "21aec552ca6924dd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "228f3322fd1678dd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "22d73b34de69309d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "252aa69984919709", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "25c6e40e54a0a5c0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "265504d2d4d4ec15", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "26a07d131e854ff0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "26be6e3474fe274c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2731a1fdfc1e8367", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "28f7d064fe3660e9", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "28fb3aec5915ee1c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "293ec06869cdf7f3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "294665a758e29c4d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "29bfe667f61649fc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2b57772e2f8a1fbf", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2c15a0fb8d891171", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2c80912773c79c71", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2c8f8e19924e9541", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2e133940bfd262fd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2e48021f2fdce005", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2e6dcaca4dff9c97", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2f07d2698ecad51d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "2fba72c57cf1b099", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "30a375fecd7c3173", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "30b7dab202b6cdf1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3179571a101d3609", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "319785643c25c4ae", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "31ae94c4150442af", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "32c0f38dec3cf1ad", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "33e8fe9d32d59b82", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "33fd39a1762e5c40", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "342308a4c3e62095", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "342c53f905bea191", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "34a7bf64266fdd5b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "34bb784007698c12", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "34dd7d0dd56db8c0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "355512cd93e5232d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "359de2f712772be0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "35a121841ad48bc3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3672ce0b4c82e5c8", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "369c8ad50040309a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "36da274a3aaab084", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3727760765bd9a04", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "380a92ea5153a573", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "397bdc8a227c5615", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "39b7d6af1c5e23db", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "39e04fd993b38b74", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3aaebbac4f2e89c5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3ae72181bb4d5f1d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3b12b4579302e8e4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3baa884be2a7bd41", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3c1b1d08f515f463", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3ce7d6d4a1d59c4e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3d0a2a79d87c798a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3d0eb2f866a7ac98", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3d167779f062c5e5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3d2988a66d130d44", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3db7af2cb7933b84", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3e043a485b294c46", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3e3d876d894a10dc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3e70f755fc65a161", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3e720b0223deaace", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3e7f8d71f95f0f29", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3f63f419ec5e2474", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3f8d1ff6d937c85b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3fe1c3633571adb2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "3ffbf43e19bacade", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "411bf7f21ac0e139", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "419a28628386785f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "41b503cddb5e0283", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "42069a0c9e1777cb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "426a543af1e29a94", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "431be311e8827164", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "43aa3c3d5f95c0b0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "441cfffb46742417", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "44507440695f1c76", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "44e3c62ea313bf9c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "e7c6c7e67b78f445", - "type": "evident-by" - }, - { - "child": "45b7dec9f9b63a7b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "480b54e795f72bc7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "48267c167885ab1e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4826a451d3ed4764", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4853f6cd9eba805d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4870afcea6b35269", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "488c4f6435900773", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4914e6bbc305372f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4926f55c887d900d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "496e6c8db203414a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4b0a51a8e16b82c3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4b3d4bde8c773dc2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4b61f7ee4f149824", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4ba28fb73b1291e7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4ba4b954be9f726a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4bfbf12098e19c9f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4ca6c0e0934c5fde", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4d6d26a2cbd8934d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4d9df0bc4de06cb2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4e79beb228860a71", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4f37729ea655b0fd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4f6e2565510a810b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4f76f5351b495791", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "4fa4eaefcf55f98c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "507ac6f40867eee6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "51e015b21e33fdfc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5228aec4a57add52", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "525118615de9ac4e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "525f7be6275f58ee", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "53757b98e8d68185", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "544472a16a0414b6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "546970d937da991c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "54fd73fadccb9061", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5572a43b109a9420", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5599a12c3404d984", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "561906e13c99a675", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "562d108e1e6adf2f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5681b3068ef39c6e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "56981fcc2a472a29", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "56bce9fec230f06d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "57ab71643612fb7f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "58a63f461b9e6a23", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "58f40a97cb356225", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "58f8aba7f44f4c3b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "592467302361772a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "59632152b76aaede", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "59e43bc770570e3f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5a0ab9f05569e0bf", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5a800b09d8b0a6d2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5aaf3f7c5b47c869", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5ac4a699ad67f81f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5bfbf823b2239782", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5c446050f29b5df2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5c84a13fec31e031", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5cafa2ada565f395", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5cb1792aebc63d04", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5d1bc71c02736770", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5d4b6f65778254b8", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5da90b8342950d99", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5dd42872e5041687", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5ec66e9e6e85691b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5ecea245b117aa1c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "5f232825a773c963", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "601e5f123b473fec", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6026781700ab8966", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "60796df1cfe817fe", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "60a459ebfd5f82a1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "60dbd68220465fdc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6156e7fa929bf63c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "616c679ad907fc4b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6175716c26cdac6e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "61d46da2053e6f84", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "61d737e60c28d169", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "620ca4249a40b26c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "621c73a71734e999", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6228b462a387fd34", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "62df5e0f5a8b8c06", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6453bc49cd78ed6c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "655e53383478b39d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "663b0157fc64f872", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "66aa3e42b61eb1b5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "672a077e990838e0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "672b2056cbb14421", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6762b72695d9c312", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "679b8f1deba80238", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "679c9740661187f7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "67a16fc6aaf40dc4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "67d923f5fab0800e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6937d4e18492c540", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "69f769dc07068486", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6a00f2ac2b9798f2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6aa164a80079d937", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6abbb6e69018555e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6accd490f7937efc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6aea4ab3b2bc4403", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6b557f9919571845", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6bd6f87e2b4ec2d4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6be0057305399148", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6c15b5035dc610d0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6c56ffac863dfc79", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6c61440367f35605", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6c64b6df5ab0502b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6c9b7a568f9aa570", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6c9c36705a20af68", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6cf97b9969ca953e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6d3b6e00e475b3dc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6d42221784c78ef9", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6d74b56d3cb39476", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6d8a0e0a7c449f3b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6e1bd8ddfa37819b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6e222fa390dc2663", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6e603b63c47ac850", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6e60ac40b69ac037", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6e95275fb72b4c75", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6edcf73442503553", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "6efe6de95b992072", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7027a7450e58e0af", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "706b97e2389ba3cd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "708b9f96c6462531", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "71a9365d9a4e999b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7276c6f2b9832880", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "732ab2ce86e533e6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "73bcb43bb301d8b7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "73e546eed26a42ef", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "73f034355b64a756", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7401cd5b7751c931", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "74030d5a36919c4d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7477750a95e4708c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "747bb234b0f6ac60", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7487f426b7170cbf", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "74aaa55d2535ac4a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "74ff2a50f60a9131", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "751497748584edf4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "75792b7bb7f6e654", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "75d3d66386b345ad", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "75e5e7326125144a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "764c8f2ba6569be2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "76593115aa3bfd94", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "765fdace50677a06", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7718492e14cdf5eb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "78f308e47af41b8f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "79135101b6f48956", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "795331f4c0a5fb39", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "798b8df658df4b09", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "79bd584d011e5d4c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "79cc1bc651d6e347", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7a5bac0b436add84", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7a5ed2f5ae799628", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7b01e955f334fc58", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7be07c51fe6352b4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7c125785ac4d1d72", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7c47c18c08dd846e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7c62bc41fce5e61d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7c67f714c7624a5f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7c74f99aac3c4dcb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7c8f9898ff988624", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7dda94c61e0f68d4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7dede89456f6459c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7e407addd1082cfe", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7f6d6bc7e36e48be", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7f80f4007f4ffad4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "7ff7d6b5d8420cff", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "804095969a033144", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "80bbbd0e16e461fa", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "80d712b309eabd14", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "817cdc42edd086d0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "821067bac3022924", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "82b5fe13c2ef65bb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "82e0e952f460e025", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "82ebf707c1082738", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "82f711a3cd6a0c9c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "8319273fdb634272", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "835d804430ad2eca", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "83fe5897d7c9aad0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "840c38bd0b358a1b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "84791d1cefa26078", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "84df15cd01307783", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "86583b0d4c728739", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "86950d9570f0d6de", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "88fe78beeaec9bf0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "893466c9b19acbff", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "89e93f47dcf1858a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "8ad678ce406c4ce5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "8b6bd0cb86910ecf", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "8c4abff7ae8d763d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "8d36d42f6a16481b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "8d86c75ec802339c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "8e53b05f9622f535", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "8ee634fd46e87504", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "8ffcfe0186851204", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9105119b142926c3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9177a612f0609215", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "91c5d5157be67e3f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "929dccbd0e083521", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "92a461ae9127e47b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "938dd9d7980d6a01", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "939dee2e7ab82cab", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "94160d9cbe71bbda", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9422ec6e21fc19db", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "94251a9e9c92e5b2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9499a1afcb613040", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "95ad6c60160c6d1e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "96794fc68ef7d52f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "968d346e26a47d7a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "968e5f541e3a2980", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "96a0ee4f52acb425", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "96e78df7c9818354", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "97480487b5dcfc29", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "97b2e676d800e6b7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "991a1571e763c275", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "99404ed2d2bdcd88", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "996c27d76a261d01", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "99948a166b285e57", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9b06ef5eac2bdece", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9b54dabed987d517", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9bdc048abe76b9db", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9c0cc4c00dbc807d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9cac689a37da7fd7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9cc86f7fb33a7130", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9cda7652e9b7306a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9cfcf041a5dd4767", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9d8019a898c346d3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9eae1cdb97fde91f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9eb35fb1e6702ee4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9ee3ea07bb881c39", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9ee6d13ebf1dab77", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9f106044fa776056", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9f5fb0523ffd6a12", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9fa76df804ed7063", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "9fe1690a81a180d3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a01c8ec7749bea7c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a0703652c683538c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a0aaeeccbc675213", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a0e1dff00f5e641c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a11d0e96d759d9f2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a126ecb38da812c9", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a2a46c1366abb912", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a4e2b9df2823dc54", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a6e7c94b70272747", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a7079418142b8904", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a72fa5354a85cef1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a782f3e9f2f024bb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "a8c9618dbed4ff91", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "aa076fa05e9db3f0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "aa273ee996154730", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "aab7a87f6cb7623d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "aacdb14debe27cbc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ab3d850a1d45660b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "acdbdae8d60f2a2e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ad261a857c8aa6e3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ad4ad0227e9c5ba3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ae2cb33f84325b20", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ae6920ac6e5985e1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ae7c17f10f0bad9d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "af031df93f5c1676", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "af03e5cf1f698c2b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b07f143d735a3215", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b0cdc233af7ae31d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b0e7812dad2aacb0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b2d515e5d94791c4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b3036a26f8e089b5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b3417b0732df1c72", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b34db1b62fc67413", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b420ebc1fb346edb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b4249763fac3402d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b4fd7152bd8c4dd9", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b5062d5ea577a1d1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b52061ec1bc3dc5d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b594342e8ad7c15b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b5ad18f797b89698", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b5b059e57f99a7b7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b66120c6ccf70618", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b78c4ce3f21475b0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b78c906d3801155d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b7a6ea64aeb34dbb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b7ff29b7cfa798bd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b80bc313ef300056", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "b83cde665ba4ee59", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ba5a3545bf94d971", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ba7e8ff244462f26", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bb10d6ed3c8974d0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bb3a5b2d6b7e836f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bb7ee0815313b113", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bc8620aaa908c4df", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bcc629d5585a72ac", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bd040175c7061c47", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bd43c61395125f13", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bda54e0755948058", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bdd3d69c28f09ee8", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bdeee5f0690a59ad", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bdf05004ad314f7a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "be5412312c7f7b45", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bedc4f540cb3de8f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bee4169a83049d4c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bf8e25eb82b2e969", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "bfe26dd8e7ed5bc4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c04aeff0561e80aa", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c06bf9345383fb40", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c0a7d9d41e596474", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c0ed6e2c55a04cc8", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c115c31354dd667d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c194daa51f87bfa4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c2bbefa9f74b635c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c2df502de318fdcd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c3498d832659dbf7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c3b01ae5d548b443", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c40b3285f1e963f7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c4280815e047cc15", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c45b3e63ef5e8892", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c4d8d172e25804ae", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c4fae40d919d4de5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c50c5d06a3418a15", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c5287a0e0a2e9d71", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c531bdc6b73fb5d0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c593e54c69f2fa07", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c5aaaae176b0eac2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c5be869a11f7b1d6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c6bae5d5e41409e4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c6ebe69a0e4e9aa9", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c7553f64a1d9596c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c847c58376b02641", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c9900df60026e79f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c9ac37bc9db919ab", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "c9c49c26f7047b8c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "caeb3ae80594e134", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cb066e482524b0bb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cb4b4b4a816e42e0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cbf60f57860f1c77", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cce9a2954a07d148", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cd0364c8aaa42cf7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cd9bc4f1db817471", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ce0d70308a229532", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ce554ab43282a7f4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ce9cc34b9bb71f12", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cec2e1a655c62fa4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cee185d8b1f2d67d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cf700081c03af554", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "cfb632b6195532cb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d074d3894095065e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d080e17ad9544ce3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d0896be60c3253fb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d0d21c50424f7f7f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d15a5af408a51d4a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d15f96fc0d631df5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d1729a22b3f628b3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d173df9f7ff5fdbf", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d2275cdbfa91873c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d249d44a6b67adbb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d29ec878f53b6516", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d2c85737cf13e2d4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d4303a8e0a5c9eb6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d5dfa5e7316b7534", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d661160f94cf000a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d6a3621ad7e1efc7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d6a66ce8a1ba7da7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d6fa989737fd6abe", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d70b4fecefc0d6a6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d7e3fcd98c65480d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d81f7b0044ece1d9", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d86322f83a68e941", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d8a9340a3c9c4027", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d8cb5a1fb9965cde", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d8e3663822bbb8cd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d8ea8ac34d575709", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d908fac492f4d8f6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d90e7dd8c89872e6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d995bc39e9e1e55c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "d9facf1190ae42ad", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "db9844e4b861f1e3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "dbe4073ca4816624", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "dc0ebfa1bcd3eb86", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "dc178351474c444e", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "dc7945c5bf4ecd6d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "dcc22d9368b11380", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "dcd74da176d2587a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "dd71032bfbae90e8", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "dd838ed2404f53c4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ddaa668e07c6b11f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "de4e28c3387f4845", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "df62e7e3fb421ebb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e01ea673e2665344", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e03781a8d5ea2013", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e0fe87f0b71bfa36", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e1c79fdb8985b869", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e1f5de492bd5a50f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e200a3ff3e48ef37", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e22cfd1c148feb5c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e2e1091a0e56a9a8", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e3ee23d042502278", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e47fdea8db392ccb", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e4bf2d4a509a8db2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e4f0d65a6e1bcb6f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e51ca44cf6c11af1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e5cf03ec348fd8b0", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e60038c2dd7f2131", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e65585c1d2fb9790", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e6c3d6db6ecc3812", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e72a28b2170b155a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e732e995d5487bd7", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e758b6f6c718f8c2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e7d32c98b10922cc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e881b3c713ecb83c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e8beae01d44ca185", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e933ec4e3542f001", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "e986d7174078b0b5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "eab60a4bf4e9d90f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "eb1fc85fd8f175b9", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "eb2096bd9f30c988", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "eb65eda5f6e22073", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "eb78e921f4085bc5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "eca89530b8d57d88", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ecea856078822fc2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ecfb61d2e3cca9cf", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ecfcec4b34f5f647", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ed5c572e66a685f3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ed9f0ba8d3c20c2b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ee24c0a21790375d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "eec757c2250e7d80", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "eec8f259189b60b1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ef5dd7bc9141acfd", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "efc8b907cef945e3", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f042a1587c686a0a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f0480e3ca84d77ec", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f0eab19d4887d7a4", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f169394f54343125", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f18c4030415e5727", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f2127d24975182df", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f244833c5742421d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f2ed267afd54c853", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f41ca85adcdf30a1", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f4aeca7cb293885d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f551f0f2db1288f6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f58e956acc78f57f", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f6121db7b0ee4840", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f63a69a9b4ef384c", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f699047550c01fc5", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f6fd8b53f516ec64", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f788a1ad65a4c1b2", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "f9c90798bdbbd013", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fa040a632a30cf1d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fa71887793774da9", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fb0cb3f1c0ff446d", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fbc2b27f7daec68b", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fbe41f2981925507", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fc581de6309dbc15", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fce02a941e850f6a", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fcf32dc2c5c5baae", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fe75a880881e08bc", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "feb9a1977319a719", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "febf589d4152ec81", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fed9d6db62038718", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ff6391b0ca9fdff6", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ff78e2d459f48aef", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "ffceb152d3b8ca58", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "fffd0e715107f7ee", - "parent": "e7c6c7e67b78f445", - "type": "contains" - }, - { - "child": "03c06eda174a1871", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "215bac43b0876b27", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "2b74d4392388e5f6", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "331fe45fd7b2e482", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "3a21f4dbe1604771", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "e7dfdbaa2c8d0db8", - "type": "evident-by" - }, - { - "child": "52d3f0284956412f", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "5313e4aef6f5e535", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "59fc2209a98ad11a", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "5bfbb0715f02d39f", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "637ad52099452efe", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "66b5257b96e992ea", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "681f87e18d4b3a53", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "6b8b1d838cedda00", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "77ec0c17c46335cf", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "790e6e08e8e1eb2d", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "7b6347aa119b2499", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "884ae83be03aa846", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "96b69399c63a44ef", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "a8613391d2f5a59d", - "parent": "e7dfdbaa2c8d0db8", - "type": "dependency-of" - }, - { - "child": "abaa2c703619a3d8", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "c4140b1785fa851f", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "c6ca962da553aeaa", - "parent": "e7dfdbaa2c8d0db8", - "type": "dependency-of" - }, - { - "child": "d4f9560c37370dfb", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "d52edee3c3985b64", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "d5d57f92589a8441", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "dfb8fa00a791d161", - "parent": "e7dfdbaa2c8d0db8", - "type": "dependency-of" - }, - { - "child": "dfdc22792d0951ce", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "e20d923ed40c5048", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "e7c6c7e67b78f445", - "parent": "e7dfdbaa2c8d0db8", - "type": "dependency-of" - }, - { - "child": "e9169e4d2f79b8b8", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "ec68219eb7863330", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "fb1ffc059d49c0fe", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "fe36a6856f005ba8", - "parent": "e7dfdbaa2c8d0db8", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "e9edcdc78a2b088b", - "type": "evident-by" - }, - { - "child": "476c9c20e1e7fc90", - "parent": "e9edcdc78a2b088b", - "type": "dependency-of" - }, - { - "child": "a762d1301d128fa5", - "parent": "e9edcdc78a2b088b", - "type": "dependency-of" - }, - { - "child": "eb530b6c06324c23", - "parent": "e9edcdc78a2b088b", - "type": "dependency-of" - }, - { - "child": "f63c193431f1bfbc", - "parent": "e9edcdc78a2b088b", - "type": "contains" - }, - { - "child": "fa8882e0a61a0efc", - "parent": "e9edcdc78a2b088b", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "ea9c618e3b8ed6de", - "type": "evident-by" - }, - { - "child": "df55289fec7e9496", - "parent": "ea9c618e3b8ed6de", - "type": "contains" - }, - { - "child": "df7d1f0196fd5968", - "parent": "ea9c618e3b8ed6de", - "type": "dependency-of" - }, - { - "child": "fa17191cd25af33f", - "parent": "ea9c618e3b8ed6de", - "type": "contains" - }, - { - "child": "3425ee7723f69b83", - "parent": "eb530b6c06324c23", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "eb530b6c06324c23", - "type": "evident-by" - }, - { - "child": "c1a2f485ec023ae4", - "parent": "eb530b6c06324c23", - "type": "contains" - }, - { - "child": "c689dbb16293cede", - "parent": "eb530b6c06324c23", - "type": "contains" - }, - { - "child": "3425ee7723f69b83", - "parent": "ed26cdfa87149cfa", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "ed26cdfa87149cfa", - "type": "evident-by" - }, - { - "child": "4edb7e47a2b93cba", - "parent": "ed26cdfa87149cfa", - "type": "contains" - }, - { - "child": "8c396ca5c347b7bb", - "parent": "ed26cdfa87149cfa", - "type": "contains" - }, - { - "child": "c5249466000ada6f", - "parent": "ed26cdfa87149cfa", - "type": "contains" - }, - { - "child": "08f3410f0a4602ff", - "parent": "eec74e7c5122eb22", - "type": "dependency-of" - }, - { - "child": "18ed075bb8b76c7f", - "parent": "eec74e7c5122eb22", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "eec74e7c5122eb22", - "type": "evident-by" - }, - { - "child": "a5f7ee908299e757", - "parent": "eec74e7c5122eb22", - "type": "dependency-of" - }, - { - "child": "caae22995add4001", - "parent": "eec74e7c5122eb22", - "type": "contains" - }, - { - "child": "d50c2d021f21396b", - "parent": "eec74e7c5122eb22", - "type": "dependency-of" - }, - { - "child": "d6ba238f2dc7330c", - "parent": "eec74e7c5122eb22", - "type": "contains" - }, - { - "child": "1f9ccbfdd1743969", - "parent": "f31b75ee6392365a", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "f31b75ee6392365a", - "type": "evident-by" - }, - { - "child": "6ce105ae25df46bf", - "parent": "f31b75ee6392365a", - "type": "dependency-of" - }, - { - "child": "9c4ecdfa86a69c2c", - "parent": "f31b75ee6392365a", - "type": "contains" - }, - { - "child": "e45801159a9a46fd", - "parent": "f31b75ee6392365a", - "type": "contains" - }, - { - "child": "0919462d0d876880", - "parent": "f4f6c7a5773f97fe", - "type": "dependency-of" - }, - { - "child": "1df1d52a3d0beaec", - "parent": "f4f6c7a5773f97fe", - "type": "contains" - }, - { - "child": "3425ee7723f69b83", - "parent": "f4f6c7a5773f97fe", - "type": "dependency-of" - }, - { - "child": "4580119f4cc351bd", - "parent": "f4f6c7a5773f97fe", - "type": "evident-by" - }, - { - "child": "476c9c20e1e7fc90", - "parent": "f4f6c7a5773f97fe", - "type": "dependency-of" - }, - { - "child": "6ec904a150a7e5fa", - "parent": "f4f6c7a5773f97fe", - "type": "contains" - }, - { - "child": "7023b2ad941f42b0", - "parent": "f4f6c7a5773f97fe", - "type": "dependency-of" - }, - { - "child": "77372654b0de4b95", - "parent": "f4f6c7a5773f97fe", - "type": "contains" - }, - { - "child": "9664d7fd339ed634", - "parent": "f4f6c7a5773f97fe", - "type": "contains" - }, - { - "child": "9e4d199232d82890", - "parent": "f4f6c7a5773f97fe", - "type": "dependency-of" - }, - { - "child": "d294c3c99a416438", - "parent": "f4f6c7a5773f97fe", - "type": "contains" - }, - { - "child": "dc3fe6c998432f13", - "parent": "f4f6c7a5773f97fe", - "type": "contains" - }, - { - "child": "ddf817162edbd918", - "parent": "f4f6c7a5773f97fe", - "type": "dependency-of" - }, - { - "child": "e9edeede9d159ed7", - "parent": "f4f6c7a5773f97fe", - "type": "contains" - }, - { - "child": "316ba06e2b2f1ffe", - "parent": "fcacc8c1e128f9a7", - "type": "contains" - }, - { - "child": "4580119f4cc351bd", - "parent": "fcacc8c1e128f9a7", - "type": "evident-by" - }, - { - "child": "d4d2a5bc44760d3d", - "parent": "fcacc8c1e128f9a7", - "type": "contains" - }, - { - "child": "ed26cdfa87149cfa", - "parent": "fcacc8c1e128f9a7", - "type": "dependency-of" - } - ], - "artifacts": [ - { - "cpes": [ - { - "cpe": "cpe:2.3:a:adduser:adduser:3.134:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "8a49897e59f569c2", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/adduser/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/adduser/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/adduser/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/adduser/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/adduser/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/adduser/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/adduser.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/adduser.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/adduser.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/adduser.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "depends": [ - "passwd" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "cc3493ecd2d09837ffdcc3e25fdfff18" - }, - "isConfigFile": true, - "path": "/etc/adduser.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "11a06baf8245fd8d690b99024d228c1f" - }, - "isConfigFile": true, - "path": "/etc/deluser.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ba08fece3b3434a669f3c529bbea383" - }, - "isConfigFile": false, - "path": "/usr/sbin/adduser" - }, - { - "digest": { - "algorithm": "md5", - "value": "808647b72aa26222070ae241158f22bf" - }, - "isConfigFile": false, - "path": "/usr/sbin/deluser" - }, - { - "digest": { - "algorithm": "md5", - "value": "0091c90861f50e7be138d37764779d22" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "30b17d2e2e9c784208f01d130f196864" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/README.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4537699e4951748913a3d3e212be34e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/TODO" - }, - { - "digest": { - "algorithm": "md5", - "value": "30bb154dfdc69a2c0ff31ec465681b39" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad1acbe264ddc19bf4f50095c1ca50e5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "55f158219a06612fcb6d35952d1b95f2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/INSTALL" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff484e503a7f8b0d6f62e8bfda86c0a2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc3493ecd2d09837ffdcc3e25fdfff18" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/adduser.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "04bf7a834a790dbcf91d9126ec2a93bf" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/adduser.local" - }, - { - "digest": { - "algorithm": "md5", - "value": "51367088cb922ab47b652cad2fdf1ed1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/adduser.local.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a0388cf3e93997d82f705c29c90892a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/bash.bashrc" - }, - { - "digest": { - "algorithm": "md5", - "value": "c4869bc559365ab84733b15280332ae9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/profile" - }, - { - "digest": { - "algorithm": "md5", - "value": "82589559808bbaade90a966287e51627" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel.other/index.html" - }, - { - "digest": { - "algorithm": "md5", - "value": "95c9c80ac808659d74ec72d7bd86a118" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bash_logout" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e25a53e7588cdb05870608583b05b19" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bash_profile" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f2fe654cd11a739ba9fb6a9f13881fe" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bashrc" - }, - { - "digest": { - "algorithm": "md5", - "value": "11a06baf8245fd8d690b99024d228c1f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/adduser/examples/deluser.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "b702b3ed20154b001d1b2375ec7e488f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ca2951f2ef978d48c1f7f1ce153f5e8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "961b561f85178991cc846cd50571799b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c47fa9200cb5cce8b9d8c1ed2345ed8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b3cba03fcb342b5abfa8bca5afec4df" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d4b6195cf6ba1d3a33c5bf55b6ecf3c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c4ab5ed96290a2477b457889d68b081" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d7d3d40c026e6389aeb5c2f7e2ad043" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "50b5a14c95b5a85b8ef249146556dcbb" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "74d23efa1335e149d0b07ad464765afd" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "16eae53fcaa3879d6c2cb1b23e392cea" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e064773563de4e35534e73bc92ebf68" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d88de4925b4da406cd560f57ba4b1ce2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fdaa7ffe6cadbc41f6a6e7138bd3af5d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8295a7067aa3fda053d3f57d4a4ade2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e1c98d35dac5ca0e73b3a7e225bc7920" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f1642f13df692ea16e96f6f61f86443d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f16bf5c78b024661e685304cc84eb322" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0b4f60e88db1d73b2f4bc3e3fcd71c4d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6069303f3206caed75ef429164a5c29a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b13acd3c3039b256184446a35075679a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a99328519237e94580cbfd2a18d0834c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b62097a2043612a43b7de5bd2ef6ce78" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/adduser.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "279bc4b2fcee033a51226d002a619bbd" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/adduser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4be1449aa85465c1d1e1c230bcb65dd0" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/deluser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f6de0932af4b53ad2e2b3dbc67eda78" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/adduser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c139260599a1fbe30dda5bf13735765" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/deluser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f9f06923354ca40ac5a4153133400df3" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/adduser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f0b00c3117649f32d4ae2fd4b8f2635" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/deluser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "44703ebd828a02000329a9fb78336eb3" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/adduser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c743ace7c9fec6fd736f340285187fe" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/deluser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "72d8a98aca954db1e307f0af4d0e0741" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/adduser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d77325d2847f9445a98505ed6258cfbc" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/deluser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca2b03a3887d2ef87cdaf01d5e249ba1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/adduser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "205bd0d71b8575d75e1169b4d21a4b38" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/adduser.local.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd68f00caa2c02cdb17cbefca0983a1f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/deluser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "298d0b083299fd5aac8d8e823aeef531" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man5/adduser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "573812c7b0bdb53be8810adf5a8bca04" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man5/deluser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d66066537e31f55b9f68b5ceabc2bb5c" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/adduser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "86c181cd2cd77fe92165ce54088b1fcd" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/deluser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f12ac762e03c1ce1f858e141142424a2" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man5/adduser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bcb31d0138c1d3feed06cf9153a9302a" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man5/deluser.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "21910b8714511335642c53ec92a3e2e0" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/adduser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dfee1fa5f7449c26b3cf7289321309f5" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/deluser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "840faf09c56199b8c10c4ef15e376224" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debian/AdduserCommon.pm" - } - ], - "installedSize": 686, - "maintainer": "Debian Adduser Developers \u003cadduser@packages.debian.org\u003e", - "package": "adduser", - "source": "", - "sourceVersion": "", - "version": "3.134" - }, - "metadataType": "dpkg-db-entry", - "name": "adduser", - "purl": "pkg:deb/debian/adduser@3.134?arch=all\u0026distro=debian-12", - "type": "deb", - "version": "3.134" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:apt:apt:2.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "d50c2d021f21396b", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/apt/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/apt/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/apt/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/apt/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/apt/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/apt/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/apt/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/apt/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/apt/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/apt/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/apt.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/apt.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/apt.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/apt.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "adduser", - "gpgv | gpgv2 | gpgv1", - "libapt-pkg6.0 (\u003e= 2.6.1)", - "debian-archive-keyring", - "libc6 (\u003e= 2.34)", - "libgcc-s1 (\u003e= 3.0)", - "libgnutls30 (\u003e= 3.7.5)", - "libseccomp2 (\u003e= 2.4.2)", - "libstdc++6 (\u003e= 11)", - "libsystemd0" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "879455db9b938ce287b23383629aedce" - }, - "isConfigFile": true, - "path": "/etc/apt/apt.conf.d/01autoremove" - }, - { - "digest": { - "algorithm": "md5", - "value": "1400ab07a4a2905b04c33e3e93d42b7b" - }, - "isConfigFile": true, - "path": "/etc/cron.daily/apt-compat" - }, - { - "digest": { - "algorithm": "md5", - "value": "179f2ed4f85cbaca12fa3d69c2a4a1c3" - }, - "isConfigFile": true, - "path": "/etc/logrotate.d/apt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a05db20a2f3adc9f4175c37140e62a2a" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/apt-daily-upgrade.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f1973de70bf3594436cc1a68adc441b" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/apt-daily-upgrade.timer" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e25f0c08d2bd2776015d7b4d0fcb553" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/apt-daily.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "57b964b4d70e49baf77ca7c971358acf" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/apt-daily.timer" - }, - { - "digest": { - "algorithm": "md5", - "value": "9294dac7c10fc9175f9d86d19cd6ae88" - }, - "isConfigFile": false, - "path": "/usr/bin/apt" - }, - { - "digest": { - "algorithm": "md5", - "value": "9525331a3286af90160c6efa03297e3b" - }, - "isConfigFile": false, - "path": "/usr/bin/apt-cache" - }, - { - "digest": { - "algorithm": "md5", - "value": "309989ec20900439441edb97adb32769" - }, - "isConfigFile": false, - "path": "/usr/bin/apt-cdrom" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c366c5dcc2f8cc3f8dfae17d99af05c" - }, - "isConfigFile": false, - "path": "/usr/bin/apt-config" - }, - { - "digest": { - "algorithm": "md5", - "value": "92031a51b17ba248215692fa3608e825" - }, - "isConfigFile": false, - "path": "/usr/bin/apt-get" - }, - { - "digest": { - "algorithm": "md5", - "value": "533467d51f08f5bfcb814246c7acc588" - }, - "isConfigFile": false, - "path": "/usr/bin/apt-key" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fe528827db3b32ef5e4e16dad6fd62d" - }, - "isConfigFile": false, - "path": "/usr/bin/apt-mark" - }, - { - "digest": { - "algorithm": "md5", - "value": "ddcb610a558ce578efe07fe37ef033a3" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/apt-helper" - }, - { - "digest": { - "algorithm": "md5", - "value": "25a7e8b4d72b7eafa17d47a5e29544f7" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/apt.systemd.daily" - }, - { - "digest": { - "algorithm": "md5", - "value": "7159e85afd9b1d9715bc0e4159ebb2fc" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/cdrom" - }, - { - "digest": { - "algorithm": "md5", - "value": "0829b775daeaad545f57168748899b21" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/copy" - }, - { - "digest": { - "algorithm": "md5", - "value": "136644170f68df0af1fe5e2c82fa80c2" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/file" - }, - { - "digest": { - "algorithm": "md5", - "value": "715bf73f25e30564c5497b8432826196" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/ftp" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a1a4dbfae00209d8b571482bdcd440d" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/gpgv" - }, - { - "digest": { - "algorithm": "md5", - "value": "317729a44c85be4fdf443c0a6f1b6c9e" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/http" - }, - { - "digest": { - "algorithm": "md5", - "value": "d48b34ba82d64196c8f83c3523d3e5b8" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/mirror" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b030df027e0d3c67d41f1caf00b2dca" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/rred" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed79024767fe25203fbcdb977bda980b" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/rsh" - }, - { - "digest": { - "algorithm": "md5", - "value": "bb1efc0bffc0d5198745614457424850" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/methods/store" - }, - { - "digest": { - "algorithm": "md5", - "value": "38a0409f168968ec2cb8363adfe81c4b" - }, - "isConfigFile": false, - "path": "/usr/lib/apt/solvers/dump" - }, - { - "digest": { - "algorithm": "md5", - "value": "5c20df19d9e2659aa6a6c64276c5764c" - }, - "isConfigFile": false, - "path": "/usr/lib/dpkg/methods/apt/desc.apt" - }, - { - "digest": { - "algorithm": "md5", - "value": "e74d5f31cf2d2f567fd5984bdcea0b88" - }, - "isConfigFile": false, - "path": "/usr/lib/dpkg/methods/apt/install" - }, - { - "digest": { - "algorithm": "md5", - "value": "2662778ba9613ced00bb069711f43bf4" - }, - "isConfigFile": false, - "path": "/usr/lib/dpkg/methods/apt/names" - }, - { - "digest": { - "algorithm": "md5", - "value": "877bd4d867b2c1045688d5c401cf7ea5" - }, - "isConfigFile": false, - "path": "/usr/lib/dpkg/methods/apt/setup" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6445e2a9543b936ca687cdd5c837214" - }, - "isConfigFile": false, - "path": "/usr/lib/dpkg/methods/apt/update" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef6ee2f93bfaf080407e96e16c54c456" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "ddb79c052d772aa7b83eff472f01eb3a" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/apt" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4f3db44275600d2185ab933ed6a1c15" - }, - "isConfigFile": false, - "path": "/usr/share/bug/apt/script" - }, - { - "digest": { - "algorithm": "md5", - "value": "9475b419a08c6b8a8b09af6185e0f34d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/apt/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "62c1393e0bee0f8dc0e3203d610b5c02" - }, - "isConfigFile": false, - "path": "/usr/share/doc/apt/README.md.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9cdec09e1692a2fc1722491362824f0a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/apt/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "48da7ec3e56cc622ce13c23e963d3e48" - }, - "isConfigFile": false, - "path": "/usr/share/doc/apt/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e5a3dab995e501f81ea148ec1058801" - }, - "isConfigFile": false, - "path": "/usr/share/doc/apt/examples/apt.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "568016cc00ab86bf01ebed3a8c010037" - }, - "isConfigFile": false, - "path": "/usr/share/doc/apt/examples/configure-index" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e315fbd9f6d3c9ed0fed134d46da559" - }, - "isConfigFile": false, - "path": "/usr/share/doc/apt/examples/preferences" - }, - { - "digest": { - "algorithm": "md5", - "value": "6961e3472e5aec65ce39e301155601b2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/apt/examples/sources.list" - }, - { - "digest": { - "algorithm": "md5", - "value": "17067b84a96d6ef1375e55f8266dc851" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/apt" - }, - { - "digest": { - "algorithm": "md5", - "value": "706dae793a5abab4b859f8c0583f7f7b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ar/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f6c7d9106ac10a81f2a0c0c37e18c7d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ast/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c516afefaec141f1f92c81ee90df739" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f70bbecf1c73b724054579357b4dea96" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bs/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5dd6f72b8ec0a8da25bf87e8f6e7ee9c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b5c4fb78e00499480ac129386849486" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "46a85916618109be80a6813b46d2b404" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cy/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "750ac627d9781faf37b0569350930d40" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5befdc2f1b483dbb31aa0f2e3c9f98d1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a7895995691646aee16f466939e578e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/dz/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1553e8ba5448d74f1e8a4c08a0d8427a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2217f07325dfcbd7b288ff3fa03bd37a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca7d1aeab2d961b03ee8d21267615118" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5a03055d3be97aebfce31ed324c64df" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fab13c9c527629723fe17f0f49da30c6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fcdcec925d0224f036eb42661712aa40" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0192e9609fbc5e70de1e10386b6ddf05" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d55c2c7f5e20752813047db4cee1d0ea" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b776387e348840d879803417ede892d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "28f2cd12d9d62ddeecf7e1f57688355d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/km/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "91bc410d2a6d050a9eb719db3620c68e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "86311163538e8184b73974320f3523b9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ku/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e174683a1dcc17f0363024ff7620c5ea" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lt/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d17c302ed15d1db89d862aa0a8c36cc" - }, - "isConfigFile": false, - "path": "/usr/share/locale/mr/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5aa4e40ba96912757dee377d0ffcbad" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "12327f16e66037ddc727b8dc4c5f53c3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ne/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fcf1c1917edd48298b9237ec988e736" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "78ce42a8654e228b68a1ffdfa6b721ac" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nn/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff219ca1eb87000ea88316cd086fda65" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "21c5ca545a95fb93a4c32feba95e35d1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b70e8938ef09498b1cf88229dcce99e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4520d7891af77675560600c95edea51" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0dc9f5e3b3474c9a96cb3b93618e6e2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bbb0bac030ad5c5cdda0285304fd4378" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca95d7d8c19dad5486a62a484d18aba5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "70db38fc1b518a2d6beb073b1349636b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa80c1986f6933d4ec34b6232eebb2a3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/th/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e6d1f2cbf52740f4538a5c12c5223d5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tl/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc866db24daede33c4d540257ba9b0d5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "57a7950b15b28f7101d58f9912ba8858" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "910789b4a17f7806c2f687b1c297f680" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb4dd67af4dafb304d3395136a0b432c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bb010457e13403a16be3cc2f9374911a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/apt.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d34664a44166cf3dd0640b9c08af6b4a" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/apt-transport-http.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "52737b2caf80cec43e17d164430960f5" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/apt-transport-https.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a4b775105b153dff5e9dd06fe56d271" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/apt-transport-mirror.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "92cb487342346779c6ed91fb65b83f7e" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/apt.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a25e915c3e578969c8bbff7553d87a0" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/apt_auth.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4225cdc01e912b82d23e6d2edfea755" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/apt_preferences.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc0ff9b6335ac8be9ce7a66e72663d94" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/sources.list.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9ff5243667370cde8ed0540c3cbb8fd" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man7/apt-patterns.7.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c55fa660101f29a24bf2b6066e90d72" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/apt-cache.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a97a2b4b0a1f97266eafab050b78a3e" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/apt-cdrom.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8893b642ef53f8460342cc5497235f7c" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/apt-config.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "40ce3639af2eda27f39c2097db5ec2b2" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/apt-get.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "541179205be854e581b2bf1d6e4a0c47" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/apt-mark.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "447cda16394af8146d44944b64efb235" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/apt-secure.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a11507b49865678819c930041550f3ee" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/apt.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6eda754ad227f05df67bc0cd9fb5000" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man5/apt_preferences.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ccb2a9c9f98d977c69c2b1631882f79" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man8/apt-cache.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3fb62a2df29253893ae826bce08dac36" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man8/apt-cdrom.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8530e052383e4df823db4ec100f25159" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man8/apt-config.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7fb6aaafa60897478b8dc3da9324ad8a" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/apt-transport-http.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c04c7c6f5fd0241f65c0fa8ed9c73c18" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/apt-transport-https.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "88a022110f00e8418321427c90b01cd0" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/apt-transport-mirror.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5469009ecea35632f3d91836973e5de" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/apt.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc1b224c25790050a32379a40ac52346" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/apt_auth.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2c6f58e9ddd46e81ddb2ba5e86302cd" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/apt_preferences.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a971ffa5178ecfa3df9d575aef4a7a3c" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/sources.list.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6977068adf93fff50f6ee6aef4f24c09" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/apt-cache.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "63eb4fedc2638203a567268d49db5e60" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/apt-cdrom.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "86f9eaa56ad19f87a4a436d4d2f5300d" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/apt-config.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5400e78f554867098aeab8bcfc2bbf6" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/apt-get.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c649c41208240fab44e69d5148a20a34" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/apt-mark.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "76a625690942b2beade4bf6f20ab8058" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/apt-secure.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "74bdeb2ccaac125f52d8d838aebe5965" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/apt.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cbfc69ede247747ade8847c1861c6d41" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man5/apt.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a337c89e8f3e99e1f743ac1a7f3b443" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man5/apt_preferences.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f34404e321c4296ef85f332302196060" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man5/sources.list.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa0c12c9776f05bcbdd58f406febd5e1" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/apt-cache.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "95777aea2c95f5c9f5a2b21dd09e209d" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/apt-cdrom.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ba56dfdf261a36d9152ddb7f906ed40" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/apt-config.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c19d0d8a648cf02157d6dee102cc202" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/apt-get.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b188ece711075d39823a10a1df6c071" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/apt-mark.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b3a6c47918eadb5c0294b67879b9536" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/apt-secure.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "97dafe3330c2b896fe83f571918da438" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/apt.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c0fdb5e187084e733fff0852c4b9ab3" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man5/apt.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ba648409b10cf439491a6eb96899ed9" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man5/apt_preferences.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b491602ee70fde6ece73fb472547444" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man5/sources.list.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2ca1d1436bcfd8328c0d6cbea9f4d15" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/apt-cache.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc9e1b91628c920b8ffe040cf93c1edd" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/apt-cdrom.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "31d0b142de2d10c218724c4208fccb8d" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/apt-config.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "95af108b4f275ca25a98d24fc8e9cd79" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/apt-get.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aca8366521fef55f1dca30df24fdeec6" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/apt-mark.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5559f183d8e08d397758ee63f8e94f38" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/apt-secure.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "febbba7d1bbec76e9f935f46f869c9d0" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/apt.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "55cd7621cc4fc9dd2a249fcf80591b5c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/apt-transport-http.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf1710b918313924de1bf60d1e7dc75b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/apt-transport-https.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "74faa2cfbb3922e78fa7d95c74aa150d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/apt-transport-mirror.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "af8a91378ab3132b72a4f8eb23cc5b40" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/apt.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dccd71d88cba30769c0987a7fdd69008" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/apt_auth.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3fa221ac298c7020e6934d9db07dca79" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/apt_preferences.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a60b10bf66a2ec1ced7ad580da6897fe" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/sources.list.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fe6a1b0d69b25f647b1018d3840f806" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/apt-patterns.7.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "41ccf62876d0ef74e9939c2d2c0ed5bb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/apt-cache.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "29af4299a8cc1d5615ba0a376812c916" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/apt-cdrom.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "61a4c4f00e2a0c991993186ebb78883f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/apt-config.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c01bf82d355e78cd30922bcfc0e6600a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/apt-get.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c086dc39a06b5647b38ab9874f605b2f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/apt-key.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d4e540636563fdcc6eaa550ba304484" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/apt-mark.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a05dae392b23b383d31f5c9b6122de78" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/apt-secure.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ae2b70eb51b16adddabcdf4b6b78504e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/apt.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2e35e8fb5b31e204fe4e66248badb7e" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/apt-transport-http.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6195c54e7a83d10430d8cc804ec349d1" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/apt-transport-https.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c34b91504793123cd7dafc1696c09b21" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/apt-transport-mirror.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "50b3fceac4752387a7d21c686d6c92e7" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man5/apt.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "29807b0202a7068883070f8ccd2df750" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man5/apt_auth.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f15aa17d89db90b51587d757184e367" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man5/apt_preferences.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5e5fc34499a7a46834dadee72d17b69b" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man5/sources.list.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e285748bf29d0be2e38aa1e4c11fc3f" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man7/apt-patterns.7.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "285a51f00937676cace54ce6a0eb6aa4" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/apt-cache.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e98f5e1c73d6e095fd4daf55dc57c671" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/apt-cdrom.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "80305e3a0ed43016dc66f4d55f80dc07" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/apt-config.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "be4e8d84ea7fdb83fb4244ca578c236f" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/apt-get.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dfd54da53eae132a6d3c3d6fcf660a36" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/apt-key.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ce178eda11273d9c77bdb62b79cca93" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/apt-mark.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9379eeec3a377409ec64e9ace63d3c12" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/apt-secure.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d84a48d475213eba3ecfda6b1707c34" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/apt.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6eaf5cc116195948d295e5f88af64ce7" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man5/apt_preferences.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c1eb5ef74622319eba60ba295db77d3" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/apt-cache.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bdf22c2c2d02c5072f45bf3c3e23c52e" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/apt-cdrom.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "858681f19438e61dfc0787ba14c8970f" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/apt-config.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "08c93217354c7dd976ca74f5a0f59aed" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/apt-transport-http.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5873c9dde7b6e8b28f22ddf0e638824b" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/apt-transport-https.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "405223f2f3bf559c3e852a6e2b7891b2" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/apt-transport-mirror.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e33519c3d8c388e6a8a91add442f8fff" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man5/apt.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "73a18066ebabfdd84e4040c45d8d70cb" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man5/apt_auth.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "56effe4c51fbc1bb8bf73b106d191919" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man5/apt_preferences.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "70cb6a380946efc998674400619598ad" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man5/sources.list.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b75254b4da0833a899a4f5a0e0d7cd6f" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man7/apt-patterns.7.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "afa652d8f548190b88910cf71fed356b" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/apt-cache.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1004d218d823335849e8b3a57bddad2b" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/apt-cdrom.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9fc539eb6af7d38086acf29991f61972" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/apt-config.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a5545ea5958e5a8820f7d391f38a04d" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/apt-get.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f392716b21f3daf3b62d26eba63e3494" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/apt-key.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f7ab367c606386f55195e18749803de" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/apt-mark.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d988ad6b783f3f4219e6db2659e157e8" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/apt-secure.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5393dbdc897819659462082992b2766" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/apt.8.gz" - } - ], - "installedSize": 4232, - "maintainer": "APT Development Team \u003cdeity@lists.debian.org\u003e", - "package": "apt", - "provides": [ - "apt-transport-https (= 2.6.1)" - ], - "source": "", - "sourceVersion": "", - "version": "2.6.1" - }, - "metadataType": "dpkg-db-entry", - "name": "apt", - "purl": "pkg:deb/debian/apt@2.6.1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "2.6.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:base-files:base-files:12.4\\+deb12u5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base-files:base_files:12.4\\+deb12u5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base_files:base-files:12.4\\+deb12u5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base_files:base_files:12.4\\+deb12u5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base:base-files:12.4\\+deb12u5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base:base_files:12.4\\+deb12u5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "430b452649ec6d58", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/base-files/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/base-files/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/base-files/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/base-files/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/base-files.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/base-files.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/base-files.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/base-files.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "0900545d517886d6e52125fc9ed787a5" - }, - "isConfigFile": true, - "path": "/etc/debian_version" - }, - { - "digest": { - "algorithm": "md5", - "value": "c47b6815f67ad1aeccb0d4529bd0b990" - }, - "isConfigFile": true, - "path": "/etc/dpkg/origins/debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "4eb63731c9f5e30903ac4fc07a7fe3d6" - }, - "isConfigFile": true, - "path": "/etc/host.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "349d61a0e072d678e3e94923f0c3ce0e" - }, - "isConfigFile": true, - "path": "/etc/issue" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ae9b9ff69a78d614864f1957778fecb" - }, - "isConfigFile": true, - "path": "/etc/issue.net" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e1b832b7b06f566156e7c9e0548247b" - }, - "isConfigFile": true, - "path": "/etc/update-motd.d/10-uname" - }, - { - "digest": { - "algorithm": "md5", - "value": "07d31e7e63800ab1b7966980709c51eb" - }, - "isConfigFile": false, - "path": "/usr/lib/os-release" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a540d50c157ed0070459b82c358a05a" - }, - "isConfigFile": false, - "path": "/usr/share/base-files/dot.bashrc" - }, - { - "digest": { - "algorithm": "md5", - "value": "d68ce7c7d7d2bb7d48aeb2f137b828e4" - }, - "isConfigFile": false, - "path": "/usr/share/base-files/dot.profile" - }, - { - "digest": { - "algorithm": "md5", - "value": "6db82730e03aaeeecb8fee76b73d96d4" - }, - "isConfigFile": false, - "path": "/usr/share/base-files/dot.profile.md5sums" - }, - { - "digest": { - "algorithm": "md5", - "value": "f9128f409878ce10d54d06488e3ce136" - }, - "isConfigFile": false, - "path": "/usr/share/base-files/info.dir" - }, - { - "digest": { - "algorithm": "md5", - "value": "9830e3dbb6a828f2cc824db8db0ceaf7" - }, - "isConfigFile": false, - "path": "/usr/share/base-files/motd" - }, - { - "digest": { - "algorithm": "md5", - "value": "48a30a427d1794feb49f102b87ddce2b" - }, - "isConfigFile": false, - "path": "/usr/share/base-files/profile" - }, - { - "digest": { - "algorithm": "md5", - "value": "9be77181dd5dcc2b87956e3d45ed191d" - }, - "isConfigFile": false, - "path": "/usr/share/base-files/profile.md5sums" - }, - { - "digest": { - "algorithm": "md5", - "value": "f3b332b9a376a0567236f54d7d87f85e" - }, - "isConfigFile": false, - "path": "/usr/share/base-files/staff-group-for-usr-local" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b83ef96387f14655fc854ddc3c6bd57" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/Apache-2.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "f921793d03cc6d63ec4b15e9be8fd3f8" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/Artistic" - }, - { - "digest": { - "algorithm": "md5", - "value": "3775480a712fc46a69647678acb234cb" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/BSD" - }, - { - "digest": { - "algorithm": "md5", - "value": "65d3616852dbf7b1a6d4b53b00626032" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/CC0-1.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "cfe2a5472d5eaa226eae091d4114ce29" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/GFDL-1.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "a22d0be1ce2284b67950a4d1673dd1b0" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/GFDL-1.3" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b122a36d0f6dc55279a0ebc69f3c60b" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/GPL-1" - }, - { - "digest": { - "algorithm": "md5", - "value": "b234ee4d69f5fce4486a80fdaf4a4263" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/GPL-2" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ebbd3e34237af26da5dc08a4e440464" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/GPL-3" - }, - { - "digest": { - "algorithm": "md5", - "value": "4cf66a4984120007c9881cc871cf49db" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/LGPL-2" - }, - { - "digest": { - "algorithm": "md5", - "value": "4fbd65380cdd255951079008b364516c" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/LGPL-2.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "3000208d539ec061b899bce1d9ce9404" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/LGPL-3" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c5913925d40b124fb52ce84c5deb3f3" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/MPL-1.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "815ca599c9df247a0c7f619bab123dad" - }, - "isConfigFile": false, - "path": "/usr/share/common-licenses/MPL-2.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "af032ddc1821dfc3eb1dbb5883910119" - }, - "isConfigFile": false, - "path": "/usr/share/doc/base-files/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbd937e067f0a83fb9422713a6b84a8a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/base-files/README.FHS" - }, - { - "digest": { - "algorithm": "md5", - "value": "72b7251d99392d07131040b1a9197aac" - }, - "isConfigFile": false, - "path": "/usr/share/doc/base-files/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b8bb96d42614948cb7de2882e191734" - }, - "isConfigFile": false, - "path": "/usr/share/doc/base-files/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "9dbaaf7a8333c30200f3d11e831acb82" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/base-files" - } - ], - "installedSize": 341, - "maintainer": "Santiago Vila \u003csanvila@debian.org\u003e", - "package": "base-files", - "preDepends": [ - "awk" - ], - "provides": [ - "base" - ], - "source": "", - "sourceVersion": "", - "version": "12.4+deb12u5" - }, - "metadataType": "dpkg-db-entry", - "name": "base-files", - "purl": "pkg:deb/debian/base-files@12.4+deb12u5?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "12.4+deb12u5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:base-passwd:base-passwd:3.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base-passwd:base_passwd:3.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base_passwd:base-passwd:3.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base_passwd:base_passwd:3.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base:base-passwd:3.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:base:base_passwd:3.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "4998ded886abf971", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/base-passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/base-passwd/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/base-passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/base-passwd/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/base-passwd/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/base-passwd/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/base-passwd.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/base-passwd.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libdebconfclient0 (\u003e= 0.145)", - "libselinux1 (\u003e= 3.1~)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "a2d47ff76967b7b25155e34dfdf92bb5" - }, - "isConfigFile": false, - "path": "/usr/sbin/update-passwd" - }, - { - "digest": { - "algorithm": "md5", - "value": "f9b817368a2bbca3256e1302c1dda6ce" - }, - "isConfigFile": false, - "path": "/usr/share/base-passwd/group.master" - }, - { - "digest": { - "algorithm": "md5", - "value": "04769f5756a03dfc0dc7efb96c6c9202" - }, - "isConfigFile": false, - "path": "/usr/share/base-passwd/passwd.master" - }, - { - "digest": { - "algorithm": "md5", - "value": "cdac90d3d3ef8d60e4bc0eb73efa68d7" - }, - "isConfigFile": false, - "path": "/usr/share/doc-base/base-passwd.users-and-groups" - }, - { - "digest": { - "algorithm": "md5", - "value": "070ca330b7f1aa461ecb427d15b183fa" - }, - "isConfigFile": false, - "path": "/usr/share/doc/base-passwd/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "383218540729975d18f60b230ffbb613" - }, - "isConfigFile": false, - "path": "/usr/share/doc/base-passwd/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9d446fd6ded7735b847ceb645e39e86" - }, - "isConfigFile": false, - "path": "/usr/share/doc/base-passwd/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "a42de743cd0a844767a2366d1ad3f548" - }, - "isConfigFile": false, - "path": "/usr/share/doc/base-passwd/users-and-groups.html" - }, - { - "digest": { - "algorithm": "md5", - "value": "698a63df262c15d04bc150c02234dc81" - }, - "isConfigFile": false, - "path": "/usr/share/doc/base-passwd/users-and-groups.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8dc658a3a1b2fe714b45d245439bca24" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/base-passwd" - }, - { - "digest": { - "algorithm": "md5", - "value": "1dff50cb3d181984380e80258c24f36b" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/update-passwd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3aabf1f78ade5c2da8119bf18abdbdc3" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man8/update-passwd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "261e3ab3a68dc128df682a93fb9d7431" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/update-passwd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f5e8cf74ee334873cbba2d030c15bd6" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/update-passwd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1969463c65b2ba5854822cdeb0143e35" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/update-passwd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "07151e974281809746e01a6be8c03e01" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/update-passwd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "85605c43d9fdcd3efcdc788a17dd83e0" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/update-passwd.8.gz" - } - ], - "installedSize": 247, - "maintainer": "Colin Watson \u003ccjwatson@debian.org\u003e", - "package": "base-passwd", - "source": "", - "sourceVersion": "", - "version": "3.6.1" - }, - "metadataType": "dpkg-db-entry", - "name": "base-passwd", - "purl": "pkg:deb/debian/base-passwd@3.6.1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "3.6.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:gnu:bash:5.2.15:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:bash:bash:5.2.15:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "binary-classifier-cataloger", - "id": "1210e6f0d18d95c3", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/bash", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/bash" - } - ], - "metadata": { - "matches": [ - { - "classifier": "bash-binary", - "location": { - "accessPath": "/usr/bin/bash", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/bash" - } - } - ] - }, - "metadataType": "binary-signature", - "name": "bash", - "purl": "pkg:generic/bash@5.2.15", - "type": "binary", - "version": "5.2.15" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:bash:bash:5.2.15-2\\+b2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "7076d057ab25a499", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "BSD-4-Clause-UC", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-UC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "GFDL-1.3-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GFDL-NIV-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "Latex2e", - "type": "declared", - "urls": [], - "value": "Latex2e" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT-like" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "permissive" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/bash/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/bash.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/bash.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/bash.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/bash.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "base-files (\u003e= 2.1.12)", - "debianutils (\u003e= 5.6-0.1)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "e058f66f3092e973c731cb577cdc0d91" - }, - "isConfigFile": false, - "path": "/bin/bash" - }, - { - "digest": { - "algorithm": "md5", - "value": "89269e1298235f1b12b4c16e4065ad0d" - }, - "isConfigFile": true, - "path": "/etc/bash.bashrc" - }, - { - "digest": { - "algorithm": "md5", - "value": "22bfb8c1dd94b5f3813a2b25da67463f" - }, - "isConfigFile": true, - "path": "/etc/skel/.bash_logout" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee35a240758f374832e809ae0ea4883a" - }, - "isConfigFile": true, - "path": "/etc/skel/.bashrc" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4e81ade7d6f9fb342541152d08e7a97" - }, - "isConfigFile": true, - "path": "/etc/skel/.profile" - }, - { - "digest": { - "algorithm": "md5", - "value": "12c7981c8fed81743552e47dd4b1483e" - }, - "isConfigFile": false, - "path": "/usr/bin/bashbug" - }, - { - "digest": { - "algorithm": "md5", - "value": "afa76128e2e930f479ec943647865670" - }, - "isConfigFile": false, - "path": "/usr/bin/clear_console" - }, - { - "digest": { - "algorithm": "md5", - "value": "b0840061f097580c502a10137ba09af6" - }, - "isConfigFile": false, - "path": "/usr/share/debianutils/shells.d/bash" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a40818cede744b44e13d7792f5efddc" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/CHANGES.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e33c919ed8b88f5895591eb2aed571af" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/COMPAT.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab78b78be766692463cb112b88d5a74f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/INTRO.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "da7755d44d7ebecdc872cf866dbd45e8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "03ee8a82c581d332f2b7b95a2cf47f8d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/POSIX.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2737a3f295b4b1ddc40605d2053531a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/RBASH" - }, - { - "digest": { - "algorithm": "md5", - "value": "6bd7de8b98911613a536e83867e9b490" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/README.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5dac7b9b6332d9845e315cf8fd50ea89" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/README.abs-guide" - }, - { - "digest": { - "algorithm": "md5", - "value": "007dea9b8141f038c602b23f78509e34" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/README.commands.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b463610f80c54e22bb845da563040d6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/README.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "009c5f5cff4309e50da76e0cf4c702a0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4b49cbcd859181d46d5cb3482fb30d0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a40818cede744b44e13d7792f5efddc" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7b4d52dcef4931d6a74b71e0f25f568" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "244319c9dd88c980910aacd76477b8d9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bash/inputrc.arrows" - }, - { - "digest": { - "algorithm": "md5", - "value": "4574de6676d74019761f409168aa8e01" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/bash" - }, - { - "digest": { - "algorithm": "md5", - "value": "14e5205be2b2d1eb1968586d4b75d077" - }, - "isConfigFile": false, - "path": "/usr/share/locale/af/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "82a256a86bf6147e3d9476dd6f7299c5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5caf404d4b3a021fbe1e806fb938009" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4556d07b09119c1e89401d9c01743217" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b93872e8f5201a066824c4c5e39dedfa" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6bcc2be9b328515f7b376179318d8f25" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f389597ba7d75694f0bc81fb791114d0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "508deef9ba7eb5c0b61679317cf1eecf" - }, - "isConfigFile": false, - "path": "/usr/share/locale/en@boldquot/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f8c638bdfc06fc480548d3eede4942f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/en@quot/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b56e42fba13253589f7809b0cebd514" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8cf382f2fed81fd8bd0f667204959135" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7cdf7caabf5345c9b133f46872f7c29a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/et/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1a21485577467eca86299f5e0619f81" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "701bf22a4a76c47802aac5bf6c527b36" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c52b02f9c5d02984d2e186524d831782" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ga/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "73d17cff68a8f62dd3a0bc3b07c72409" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf5f00f9e8a41b624f5a84948a06d64b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e47f4c88b46199f021cb48ad4570eff" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5cc80ecceddf147b1676694c99710924" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "73fdc8904ce98781df62e9c6e6295cb7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "655b2d8d99b76da7c94ed73db9017a18" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c0c6e26b6adba363b97b2443268e089" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5f07e896bc124ba94c3730eac3a7536" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lt/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5c7e8aecb6a6aa3e0cd34855a0705f09" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b0a77a29d85b73ad2bc0eae82c630031" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ccf055bc6c6f4dc70f852a06a24dd42" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "963cd7eb19f730a13e40c7c2159f4e65" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1b95e939344eadf3a6f4f18403fff4e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad9e7ad08715689f9731f6560aedd4b2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa9097ab0c1c8df3277cbaaeaac751da" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6ea24cd22daeaa063843644816a521f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b7706f516896f9031e4c3506f02efe6b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0131f811ce6e7aa863982dfe86e45ab9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d430b4115f3236c27f45002fcc4690db" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9223bbbb129b5177d6f0c592f2fe1ab1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b03552d75b71bfa335d50941abe47de2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8530dca72945ebd2104d39604c653fb0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee5d5df74815115ea9f0efa5cb4c581f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "793629fa0cc724b8b5e7e43d4f4e79aa" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/bash.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc43cc10ce99183a178715ed7e806b27" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/bash.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab8320c478c9d17caaa4d86e113cf0a2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/bashbug.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c912132bdbce02861669392deb3f84c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/clear_console.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3953212dcd88f5ee9f4441ab3b7fa49" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/rbash.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2fb88f251700c29d638d9202e89a693" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/bash-builtins.7.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c05a14279f95fdb4618a4ccaa469681" - }, - "isConfigFile": false, - "path": "/usr/share/menu/bash" - } - ], - "installedSize": 7164, - "maintainer": "Matthias Klose \u003cdoko@debian.org\u003e", - "package": "bash", - "preDepends": [ - "libc6 (\u003e= 2.36)", - "libtinfo6 (\u003e= 6)" - ], - "source": "bash", - "sourceVersion": "5.2.15-2", - "version": "5.2.15-2+b2" - }, - "metadataType": "dpkg-db-entry", - "name": "bash", - "purl": "pkg:deb/debian/bash@5.2.15-2+b2?arch=amd64\u0026upstream=bash@5.2.15-2\u0026distro=debian-12", - "type": "deb", - "version": "5.2.15-2+b2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:bsdutils:bsdutils:1\\:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a5f7ee908299e757", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSLA" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/bsdutils/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/bsdutils.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/bsdutils.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "677de04c3a188e4d9c3be4d7fb3f7f9f" - }, - "isConfigFile": false, - "path": "/usr/bin/logger" - }, - { - "digest": { - "algorithm": "md5", - "value": "58f4c20e6ad9b1a867cf5ab99a953b98" - }, - "isConfigFile": false, - "path": "/usr/bin/renice" - }, - { - "digest": { - "algorithm": "md5", - "value": "ae97010e8060b075554c594e3040c59a" - }, - "isConfigFile": false, - "path": "/usr/bin/script" - }, - { - "digest": { - "algorithm": "md5", - "value": "dfb762630a25e90e5b7af199d1b806b9" - }, - "isConfigFile": false, - "path": "/usr/bin/scriptlive" - }, - { - "digest": { - "algorithm": "md5", - "value": "9122cfcc1f69b5190532d8d41f0a315b" - }, - "isConfigFile": false, - "path": "/usr/bin/scriptreplay" - }, - { - "digest": { - "algorithm": "md5", - "value": "07dea2fea1e5379fc98ae8aa8a264a99" - }, - "isConfigFile": false, - "path": "/usr/bin/wall" - }, - { - "digest": { - "algorithm": "md5", - "value": "cef6993dcff37806c8aed1c4b7cc97d0" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/logger" - }, - { - "digest": { - "algorithm": "md5", - "value": "971b883266b55869fab7e8aab1b3e3dc" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/renice" - }, - { - "digest": { - "algorithm": "md5", - "value": "176ef4a32b28d854c9eee2a9dcc11f0c" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/script" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c54835d07895d539de4e8ecad05f07e" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/scriptlive" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3890ee025e7e1e948c41da8c8db4259" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/scriptreplay" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fb153c973defc52cae222280b1a0aba" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/wall" - }, - { - "digest": { - "algorithm": "md5", - "value": "9cacf0247383cef6ea9efd21707f10e3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bsdutils/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bb7fd1ae3732779966184f543b8a91e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bsdutils/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "353888f385cfb82eb97a693e78f3cc9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/bsdutils/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "65e463f7d3cd92816fc7b65193f59de8" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/bsdutils" - }, - { - "digest": { - "algorithm": "md5", - "value": "744c89504936f26e4be6febd6727eb92" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/logger.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c58c20dd8ec4cbdf86867bf287602e2d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/renice.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "951bea214194a49ee28eea96c9a7cb82" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/script.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "55aa8cdac3569e863a12031a8a59bda0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/scriptlive.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc821a4a4607c466fb83763787923cde" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/scriptreplay.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a2cc387b5ab79dfa2a53b367671e30b7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/wall.1.gz" - } - ], - "installedSize": 355, - "maintainer": "util-linux packagers \u003cutil-linux@packages.debian.org\u003e", - "package": "bsdutils", - "preDepends": [ - "libc6 (\u003e= 2.34)", - "libsystemd0" - ], - "source": "util-linux", - "sourceVersion": "2.38.1-5+deb12u1", - "version": "1:2.38.1-5+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "bsdutils", - "purl": "pkg:deb/debian/bsdutils@1:2.38.1-5+deb12u1?arch=amd64\u0026upstream=util-linux@2.38.1-5+deb12u1\u0026distro=debian-12", - "type": "deb", - "version": "1:2.38.1-5+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:ca-certificates:ca-certificates:20230311:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ca-certificates:ca_certificates:20230311:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ca_certificates:ca-certificates:20230311:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ca_certificates:ca_certificates:20230311:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ca:ca-certificates:20230311:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ca:ca_certificates:20230311:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a19b0036f2925522", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/ca-certificates/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/ca-certificates/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/ca-certificates/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/ca-certificates/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/ca-certificates/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/ca-certificates/copyright" - } - ], - "spdxExpression": "MPL-2.0", - "type": "declared", - "urls": [], - "value": "MPL-2.0" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/ca-certificates/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/ca-certificates/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/ca-certificates.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/ca-certificates.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "depends": [ - "openssl (\u003e= 1.1.1)", - "debconf (\u003e= 0.5) | debconf-2.0" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "ef8d3b08d64daaddb0d1d4d2876c1206" - }, - "isConfigFile": false, - "path": "/usr/sbin/update-ca-certificates" - }, - { - "digest": { - "algorithm": "md5", - "value": "11c53d58aa2188c44a169b04c975d67e" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1cb5f41bce6d7ad3825ba5fb80ffcbf2" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3150cae02fa4e17fe2c9406b0cfc7d1" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "5bc9c72ad9f3db74459c463f6e52e9e0" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/ANF_Secure_Server_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "7f5aecb029c19b11ce73dad2b542777d" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a55695198460d2bababa4c2d96147ef1" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ca20daffd3d58c3aafa9644e85413e3" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "10c56ecc972802e53d1b7287ac2d1c6c" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "44e9f57f34d61d9009353aee88e0f753" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "7095142f080d1d25221eec161ff14223" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "35a64ca8f1313ecc71fe0d285e5f48fd" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1bc83454b3f91b4773756e4259cc1ab8" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "836dc5d8c5988e4e8f3e02607d1e8e87" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7614dbdac13068bf5ef3e9b117e014a" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "d6f0ded1c3a0eb2b220fb094b732d24c" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6de0187661626635fba80832d3f23d6" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068_2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "b1358966caad2e52a9f662032dc91139" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f3ff6e3e4c21ac5faa4aee951d13303" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9e8b19fc6df9da943f2d7ec1cadd078" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "f27825a04ac7d4a3495cc38477a0e067" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c4c2e0f8d248352bc752d7d5c149c7d" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "c4f42d74e4ca601040f95ac40ff7ae3f" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "048a81871d4a17ebd760e53e829e1bf5" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca105a966a5f62e1fa38db228585e366" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "07dd15e7e1830cfb6b56a8ef603aeb26" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Certainly_Root_E1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "581fd1b7f56120bb56a17ef3fcfa08c5" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Certainly_Root_R1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "7800edd54b8cde1605c6469c7f9fa5eb" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Certigna.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "966a5adc516570400400f076184cde63" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Certigna_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "11340855bda9a848dc33c78bd76dc560" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Certum_EC-384_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "231b5b8bf05c5e93a9b2ebc4186eb6f7" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "dcfa8c640560cf881d761001f6944e2b" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "c171ac81ae44b81c50c011cc0104eb65" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Certum_Trusted_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a22a580eec5fdd8e3f2a066c1c5a1a5c" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b7348260de7c8799fccedb50d246cab" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/D-TRUST_BR_Root_CA_1_2020.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d8f21b5d0ecd9b5607c3c0404680ec0" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/D-TRUST_EV_Root_CA_1_2020.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d8a4d19ede141e8a37ba235f1ed5e73" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "595d01c913c70e8300dee857dc8b6212" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e328b8d7eb2098bca933ed3353de369" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "040c19c1307dd3e6f2ffc22c2cb2c130" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e0410f6cd82e24f3242038696487e92" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "5945bad341623ae14991e09ffe851725" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "5590efae57dc6182aa3412dcd1e8dbb5" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e92d049c98128cf02a0b79874c91a8b" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b92857df75558b2466d31a45b9c64f8" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "9255bdecf412f69ef6d6f8fbcaa8d0e4" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_TLS_ECC_P384_Root_G5.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "da6ee93bf181c9ffe5d242f201d3cfb5" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_TLS_RSA4096_Root_G5.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8ad9cf647cf088cb60fa8bf12988187" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "e18fd1ebae8196583cd290cd425d323c" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "7cfc40abca73c4cad98862eac6d3641b" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/E-Tugra_Global_Root_CA_ECC_v3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5bf477e8eaaefca0d1d8b4245fb195b" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/E-Tugra_Global_Root_CA_RSA_v3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "244f3bbf6b112e7d399342c097db22a5" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5c740071952f2189d90dc600985be3f" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "d6d741eb82d939ecbba23844742c8a71" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "72a3669e936fa6ca128b12fa6d2602ee" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b86fe68a5ddc4f15d3a0698f885f55d" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G4.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a4b5b1d82401ecee7d50731f29bedcb" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "dae2915e01886ab093e2677d6aba7042" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GLOBALTRUST_2020.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6cae7b6fec22081f1d67d57535325f2" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GTS_Root_R1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1990200dcb4d3890c3870102d85ffa82" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GTS_Root_R2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b1d6bdfccf1b7b272ea19971b7d783e" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GTS_Root_R3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "93036f18e973c9db8723698dd4caba0a" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GTS_Root_R4.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a1e333456cca34c47cab1b0191b712f" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "14fbcd226d0fdf02ada31f45e1183efd" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "7872bab9a5e1a71e3d7f77836a841a04" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "221eb05e63024bb1b6420f8606d0c092" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "96e65cecf75c26daa525f07b627ad84e" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a7c46ace6cc17d274cd5eccc76d94ab" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_E46.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4a26de9354d098c3d2d73e7c6db1cd7" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_R46.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e1ac09956520b52461ca8b0a8b29826" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e8af9a33f6e16fa41e03feb1412ab84" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1fd755b556d378368b812fec56b5362b" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/HARICA_TLS_ECC_Root_CA_2021.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "f17e47d937359ef43774cddca1cea3fc" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/HARICA_TLS_RSA_Root_CA_2021.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6eca235822ad547eb77ffa40d9a8a02" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "006f6151fb3e339d2711284ef16e37d3" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c1870e167bc357d8f7d0714096a9123" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/HiPKI_Root_CA_-_G1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d6473c9ac21498c04dcdbd0375b2f50" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "de5dedd70668c5e0b80bfa22ae701303" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "118ecd744d864b32ffdb48b2e29f1d7f" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "dccffc02a69e6dc186f6779e6bf0916e" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/ISRG_Root_X2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1b9769e9c6bb6312c3ae5b29206b4b9" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1de8a3213d40019928815e77228e7e59" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "86d3c671fa13ad881ed2d6af2f0ab549" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Izenpe.com.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "80905da1172948cbfffacf61102fce1c" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "c94ea7b4c55c3d26070065e24fbc16cf" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Microsoft_ECC_Root_Certificate_Authority_2017.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "567a6a6b75b62a3a1344a49388ea786b" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Microsoft_RSA_Root_Certificate_Authority_2017.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "9040a3e1d66202de4d3fad7d5f744406" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/NAVER_Global_Root_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "22f5bca8ba618e920978c24c4b68d84c" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a50ebdd83b5df589d71b92a8b13a656a" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d3a6fb04b930ffc2ba760a72aa7488b" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b860d8d09c6b557586df464a43958e8" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "97c19f5ba9e0859dd5d40beebfe67d39" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ea2ed15e2982bc156a17e00726203e2" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "85313f1a4b2bbb4cdd5c15df2d14de28" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "8da1e21451a274798a0accb32f50f580" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "26226bf7ddcc42f0ffffc4afcd264e3d" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "3aff01671ac99c56813aeb8d9ac0c7e1" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "b68389ca8ccc7360d23522d122e44038" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "20168cd69d2f89c7b6b539569a1e8bed" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "38257fdccb703de37a729713d3fbe0e3" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f194715b3ce5e0d3e65621047effa3f" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f1ae52666579dc40173b90284b6d58e" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/SecureTrust_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "835cba07fd83c2c63c79a07ca7adc3f5" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Secure_Global_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa8bfee243e894274ecf1191b514c17b" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Security_Communication_ECC_RootCA1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "4920b847039f341361e8db66214f913e" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "6cc58d85368956799e192bc12c8b4801" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Security_Communication_RootCA3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "65e1b82ec98f06be99a3514c66f8b907" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "758158cc118b07162bbe84f2baad7709" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "59ded95ba90cc18fc757e2d9045b58f6" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "afa7c51b1be82699985b1cf2f6552663" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "485bce6d706a2c6ef08e0d8cfd51760d" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "d22fa0b6ee7006c1e5601c244fc372e5" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "d8bcdd62b7258a9c980555915b7a142e" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "56bf2c959e919294780045520ed2be92" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "191e0288ddf8f3459eb9c55820da371a" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "076f628a36b6a93a8481afda67637ac6" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "e7fae74253eeee732da048cdef56a3d2" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "8588d49be3999f2daf69c3090682594f" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa2c6616b18942944bdc84f5d65db93e" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Telia_Root_CA_v2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "b379e6601f5ecfbbee2fefc4eb2efd4a" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "496558da623dfee9e37db21da09ab275" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "69f8d1609f035d5ae8a83fd037671603" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b8da6bc6300389ebfee657921de062a" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Trustwave_Global_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "67c15398744f8415c904d1b3eb89e3d1" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P256_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "8cf2cb9a27299de85e2e31a323a47dcd" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P384_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "2cfbacd407a7a5c8e616e67f7c102420" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/TunTrust_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "e1e1c6899009118e9db1593fdfde890b" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/UCA_Extended_Validation_Root.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "c368f42b5393baf74ea2bdfc1fce2b9e" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/UCA_Global_G2_Root.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "840644351dd523125493ff4c28e694f7" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a4c985ef9f8142961ea8ba0c7326d10" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "9022170930c6993faa24b8660ab0e777" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "af9cef1bc5260376a2cbe5d845e8d383" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a64d53544df4c1537d21e2785ad667c0" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/certSIGN_Root_CA_G2.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "02b103e1007760678a9b4d9273217452" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/e-Szigno_Root_CA_2017.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "7f410e2d89378c8a2032084b1aa31851" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "21a05696c75d321aed0325626ea49516" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_C3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "506dd1e02c9a023ef36524115d9abb9a" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_G3.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "faea44d1935ff0209bd4c5143be83358" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/emSign_Root_CA_-_C1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "bdd1808b5bc69b587c2bd9df10e6c800" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/emSign_Root_CA_-_G1.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d75e56163a0d456f1f187804d54341d" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/vTrus_ECC_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b8fa208468666176ad30bfd95f47743" - }, - "isConfigFile": false, - "path": "/usr/share/ca-certificates/mozilla/vTrus_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "25a21d3c6652577a71ee32a438babe5d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "d28aa7805d7b2c056ff85cbc4899e312" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ae5b36b514e3f12ce1aa8e2ee67f3d7e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ce4affbb807ef10acd0b83dcb621547" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/Makefile" - }, - { - "digest": { - "algorithm": "md5", - "value": "747e0bb01ae1887a0b5bd50e2fc5e840" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed9f28ec33ce22f06e914dccc060d65b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/ca-certificates-local.triggers" - }, - { - "digest": { - "algorithm": "md5", - "value": "b5fb5567d41fff37b2a206620ce1b2d3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/changelog" - }, - { - "digest": { - "algorithm": "md5", - "value": "c30f7472766d25af1dc80b3ffc9a58c7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/compat" - }, - { - "digest": { - "algorithm": "md5", - "value": "18a42a7fcb7871ee0ba1e04dcc20dc97" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/control" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1595b60c996a078e1bb289bb5d5c810" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "53a8c315f53ae9041da0220cc0bddeb2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/postrm" - }, - { - "digest": { - "algorithm": "md5", - "value": "49150152b1e819057858f54d0ee73915" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/rules" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5fc031a250b2d76fe051ac3621620ab" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/source/format" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf9d8702340acb1136c3db64a6800e9d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/local/Local_Root_CA.crt" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4c7072a049e3fc90ecfbe2355f3edc0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/local/Makefile" - }, - { - "digest": { - "algorithm": "md5", - "value": "da94423d353f8fb18cbf898d16e65e2c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/update-ca-certificates.8.gz" - } - ], - "installedSize": 384, - "maintainer": "Julien Cristau \u003cjcristau@debian.org\u003e", - "package": "ca-certificates", - "source": "", - "sourceVersion": "", - "version": "20230311" - }, - "metadataType": "dpkg-db-entry", - "name": "ca-certificates", - "purl": "pkg:deb/debian/ca-certificates@20230311?arch=all\u0026distro=debian-12", - "type": "deb", - "version": "20230311" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:coreutils:coreutils:9.1-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "c6bc56609e4b9d8e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/coreutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/coreutils/copyright" - } - ], - "spdxExpression": "BSD-4-Clause-UC", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-UC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/coreutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/coreutils/copyright" - } - ], - "spdxExpression": "FSFULLR", - "type": "declared", - "urls": [], - "value": "FSFULLR" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/coreutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/coreutils/copyright" - } - ], - "spdxExpression": "GFDL-1.3-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/coreutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/coreutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GFDL-NIV-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/coreutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/coreutils/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/coreutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/coreutils/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/coreutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/coreutils/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/coreutils/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/coreutils/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/coreutils.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/coreutils.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "7a4179e324c784b99e98fedee05260f7" - }, - "isConfigFile": false, - "path": "/bin/cat" - }, - { - "digest": { - "algorithm": "md5", - "value": "db0817401cfd9c5a818ae919d10ba7c5" - }, - "isConfigFile": false, - "path": "/bin/chgrp" - }, - { - "digest": { - "algorithm": "md5", - "value": "6142a2ff5b69d32166187cdee41e7ea0" - }, - "isConfigFile": false, - "path": "/bin/chmod" - }, - { - "digest": { - "algorithm": "md5", - "value": "e789e05de882f3db00648191ff1eb4e9" - }, - "isConfigFile": false, - "path": "/bin/chown" - }, - { - "digest": { - "algorithm": "md5", - "value": "4799bd8b4078905c8a63dfe95c88fe31" - }, - "isConfigFile": false, - "path": "/bin/cp" - }, - { - "digest": { - "algorithm": "md5", - "value": "eabbb6891e630b56133f5586c2967d24" - }, - "isConfigFile": false, - "path": "/bin/date" - }, - { - "digest": { - "algorithm": "md5", - "value": "613e08370df170236e4ba6cd74f5aeb1" - }, - "isConfigFile": false, - "path": "/bin/dd" - }, - { - "digest": { - "algorithm": "md5", - "value": "5dbe30808de99a4eae2cb57eba6a9620" - }, - "isConfigFile": false, - "path": "/bin/df" - }, - { - "digest": { - "algorithm": "md5", - "value": "882f9aa9bbb1f3a737150ff86c79fd25" - }, - "isConfigFile": false, - "path": "/bin/dir" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf3140d19c23120505f44c536ac67ed8" - }, - "isConfigFile": false, - "path": "/bin/echo" - }, - { - "digest": { - "algorithm": "md5", - "value": "df56c034173cb308425f3a978fa4e660" - }, - "isConfigFile": false, - "path": "/bin/false" - }, - { - "digest": { - "algorithm": "md5", - "value": "720a4e697b43627748b73e2fe7e628e8" - }, - "isConfigFile": false, - "path": "/bin/ln" - }, - { - "digest": { - "algorithm": "md5", - "value": "7987cf330ff5bb94015dfbb9eae5a99f" - }, - "isConfigFile": false, - "path": "/bin/ls" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa9201e747658fdd2deaec71c60327b1" - }, - "isConfigFile": false, - "path": "/bin/mkdir" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebb8f8282dc096f1f360ea8ba15ce6f0" - }, - "isConfigFile": false, - "path": "/bin/mknod" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d238b3cd5ee873c8fe87fc80fae4f03" - }, - "isConfigFile": false, - "path": "/bin/mktemp" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d2e990f96663c9d15542a48018623e5" - }, - "isConfigFile": false, - "path": "/bin/mv" - }, - { - "digest": { - "algorithm": "md5", - "value": "f37a618c1076c36474a8befa6a466cd9" - }, - "isConfigFile": false, - "path": "/bin/pwd" - }, - { - "digest": { - "algorithm": "md5", - "value": "61b8680dc559f48c6fba7e7b363feb6f" - }, - "isConfigFile": false, - "path": "/bin/readlink" - }, - { - "digest": { - "algorithm": "md5", - "value": "a6526861d83c2e25b2eb7912af1306fa" - }, - "isConfigFile": false, - "path": "/bin/rm" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0b4cdb7235c5619ccbba556a9adb5c4" - }, - "isConfigFile": false, - "path": "/bin/rmdir" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ce54ade9838ff20e0f3e44763dbbb66" - }, - "isConfigFile": false, - "path": "/bin/sleep" - }, - { - "digest": { - "algorithm": "md5", - "value": "c77c79d27c0c5a969e6e6b4e82c066f3" - }, - "isConfigFile": false, - "path": "/bin/stty" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ae14d029e5532e425bb574b0edeabba" - }, - "isConfigFile": false, - "path": "/bin/sync" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f47a295ca6d22e1ede03e13dfb3d7a9" - }, - "isConfigFile": false, - "path": "/bin/touch" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a52c94ace40d9c052cf40f3541637c3" - }, - "isConfigFile": false, - "path": "/bin/true" - }, - { - "digest": { - "algorithm": "md5", - "value": "b38faa02cf704dbc24430fa94c0d18c5" - }, - "isConfigFile": false, - "path": "/bin/uname" - }, - { - "digest": { - "algorithm": "md5", - "value": "ffd6d0cb18e3ff9e37ae684f70f573ec" - }, - "isConfigFile": false, - "path": "/bin/vdir" - }, - { - "digest": { - "algorithm": "md5", - "value": "3820701e433d98542a3ffbc8cdcc5b14" - }, - "isConfigFile": false, - "path": "/usr/bin/[" - }, - { - "digest": { - "algorithm": "md5", - "value": "c1afea0b50deca49fa182cccde3d6dc7" - }, - "isConfigFile": false, - "path": "/usr/bin/arch" - }, - { - "digest": { - "algorithm": "md5", - "value": "5885ca8a381dd17e7b206ecf49b96cb0" - }, - "isConfigFile": false, - "path": "/usr/bin/b2sum" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd348898c2e6708a6c7d27608286324b" - }, - "isConfigFile": false, - "path": "/usr/bin/base32" - }, - { - "digest": { - "algorithm": "md5", - "value": "2247fcf18921c9c8e1f150008ee531f7" - }, - "isConfigFile": false, - "path": "/usr/bin/base64" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e76f7ad024f7e11761d8d277243cf2d" - }, - "isConfigFile": false, - "path": "/usr/bin/basename" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d451e33629df473270c0dec7356871e" - }, - "isConfigFile": false, - "path": "/usr/bin/basenc" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ea42e74053933bfd5277c8c2b2a9864" - }, - "isConfigFile": false, - "path": "/usr/bin/chcon" - }, - { - "digest": { - "algorithm": "md5", - "value": "65de23dae89373f1ebf27e903134b566" - }, - "isConfigFile": false, - "path": "/usr/bin/cksum" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c314b19c4863d8e7293a38dd8144052" - }, - "isConfigFile": false, - "path": "/usr/bin/comm" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f0e2e8b6ee0723cb5177241233f233e" - }, - "isConfigFile": false, - "path": "/usr/bin/csplit" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8dd9174ed8627d7868bfa0541901692" - }, - "isConfigFile": false, - "path": "/usr/bin/cut" - }, - { - "digest": { - "algorithm": "md5", - "value": "0aee5fb04432114be160d13731bf0ca9" - }, - "isConfigFile": false, - "path": "/usr/bin/dircolors" - }, - { - "digest": { - "algorithm": "md5", - "value": "62baaa622242d1b44616908c7a575710" - }, - "isConfigFile": false, - "path": "/usr/bin/dirname" - }, - { - "digest": { - "algorithm": "md5", - "value": "950a30cd1a578b27d638c2b189d2cdeb" - }, - "isConfigFile": false, - "path": "/usr/bin/du" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b55b9073f3d6afd23952113797e3d8d" - }, - "isConfigFile": false, - "path": "/usr/bin/env" - }, - { - "digest": { - "algorithm": "md5", - "value": "b89256b8476649c8f25106a2c8cee112" - }, - "isConfigFile": false, - "path": "/usr/bin/expand" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3ec650c5240018ab19d03a4bf898480" - }, - "isConfigFile": false, - "path": "/usr/bin/expr" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d98321c5f0198c5a9ba221693ad4d31" - }, - "isConfigFile": false, - "path": "/usr/bin/factor" - }, - { - "digest": { - "algorithm": "md5", - "value": "51e15362e4ad4fed1340c54547ba369f" - }, - "isConfigFile": false, - "path": "/usr/bin/fmt" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d4d1a3ebb2bb676cb65ace73a7391a0" - }, - "isConfigFile": false, - "path": "/usr/bin/fold" - }, - { - "digest": { - "algorithm": "md5", - "value": "9fd1559a3d8959bfcdd67b9f30079855" - }, - "isConfigFile": false, - "path": "/usr/bin/groups" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef30f5ee62ba71d373af486fc3119d78" - }, - "isConfigFile": false, - "path": "/usr/bin/head" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d28e190ef5f9e0229cfe40b92381931" - }, - "isConfigFile": false, - "path": "/usr/bin/hostid" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a2ca6d0a7cffd7d5df8b4617beb9e43" - }, - "isConfigFile": false, - "path": "/usr/bin/id" - }, - { - "digest": { - "algorithm": "md5", - "value": "a21d765038f77f69d324d3da05d9d116" - }, - "isConfigFile": false, - "path": "/usr/bin/install" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b5dc4a5a3b13a9a40b90f4d0c4aa8ac" - }, - "isConfigFile": false, - "path": "/usr/bin/join" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec58606891bf7b2cfdd6ddefffeda76e" - }, - "isConfigFile": false, - "path": "/usr/bin/link" - }, - { - "digest": { - "algorithm": "md5", - "value": "5e0cfcc574f5c171f2daeb8edc9e5cd8" - }, - "isConfigFile": false, - "path": "/usr/bin/logname" - }, - { - "digest": { - "algorithm": "md5", - "value": "84da1678e490fb1bc3183e4aa02aa7cb" - }, - "isConfigFile": false, - "path": "/usr/bin/md5sum" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c9a48d5c60759d162797867d079ae95" - }, - "isConfigFile": false, - "path": "/usr/bin/mkfifo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ae29da82d30e5b6c352ec4dee4c5d594" - }, - "isConfigFile": false, - "path": "/usr/bin/nice" - }, - { - "digest": { - "algorithm": "md5", - "value": "946c3e959d8bd9bfe2df4faa34a27323" - }, - "isConfigFile": false, - "path": "/usr/bin/nl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a99a4bb67a8e1866dcd9544e7834674" - }, - "isConfigFile": false, - "path": "/usr/bin/nohup" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e9541668d2506f6d2eb9dffd9303afa" - }, - "isConfigFile": false, - "path": "/usr/bin/nproc" - }, - { - "digest": { - "algorithm": "md5", - "value": "6279fb99b28c5110e3a0cb6aa7ad4cb1" - }, - "isConfigFile": false, - "path": "/usr/bin/numfmt" - }, - { - "digest": { - "algorithm": "md5", - "value": "fdce3c8042e8abe0463ad60fa05b1951" - }, - "isConfigFile": false, - "path": "/usr/bin/od" - }, - { - "digest": { - "algorithm": "md5", - "value": "08acc08095d0aa68480a5c109bb2811b" - }, - "isConfigFile": false, - "path": "/usr/bin/paste" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff3a0528dcdc7fc9ce37a22f9d33eb8c" - }, - "isConfigFile": false, - "path": "/usr/bin/pathchk" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0590cc3a0e0b4bffe9c4b617d7d8cbe" - }, - "isConfigFile": false, - "path": "/usr/bin/pinky" - }, - { - "digest": { - "algorithm": "md5", - "value": "f2595ba3e3de660a31e32a4f1882e419" - }, - "isConfigFile": false, - "path": "/usr/bin/pr" - }, - { - "digest": { - "algorithm": "md5", - "value": "b611567a5ede050cc56a7ebef162cc3f" - }, - "isConfigFile": false, - "path": "/usr/bin/printenv" - }, - { - "digest": { - "algorithm": "md5", - "value": "8bddf6a7a22498b8db40938441b6feb3" - }, - "isConfigFile": false, - "path": "/usr/bin/printf" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e7c073097d41ae15b77a09a9324dfa9" - }, - "isConfigFile": false, - "path": "/usr/bin/ptx" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e3bf63f1ddc5b7319e8dd22ba3ddade" - }, - "isConfigFile": false, - "path": "/usr/bin/realpath" - }, - { - "digest": { - "algorithm": "md5", - "value": "ae36ec0a0c18f753de3cd74a2a0012f1" - }, - "isConfigFile": false, - "path": "/usr/bin/runcon" - }, - { - "digest": { - "algorithm": "md5", - "value": "e33e457493af30ba6d87e91e1f21fd82" - }, - "isConfigFile": false, - "path": "/usr/bin/seq" - }, - { - "digest": { - "algorithm": "md5", - "value": "219a268fcc35d6f586c963e3945381f3" - }, - "isConfigFile": false, - "path": "/usr/bin/sha1sum" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d8e605f403dc63ec5f71458eea0bcc2" - }, - "isConfigFile": false, - "path": "/usr/bin/sha224sum" - }, - { - "digest": { - "algorithm": "md5", - "value": "57aa3f86e559f6e8d211da0c1f737739" - }, - "isConfigFile": false, - "path": "/usr/bin/sha256sum" - }, - { - "digest": { - "algorithm": "md5", - "value": "f9c90c9d5a6d4ea4480457e89bc05b09" - }, - "isConfigFile": false, - "path": "/usr/bin/sha384sum" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc9736a157e7ca4c6950c70797d42628" - }, - "isConfigFile": false, - "path": "/usr/bin/sha512sum" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f1ba6b0f0e7cd7e536c40d1c055d91c" - }, - "isConfigFile": false, - "path": "/usr/bin/shred" - }, - { - "digest": { - "algorithm": "md5", - "value": "21160d1dbabf4f6ca986591c5bb96bcb" - }, - "isConfigFile": false, - "path": "/usr/bin/shuf" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b7634d32e91facd5800d2d97ef5a4fb" - }, - "isConfigFile": false, - "path": "/usr/bin/sort" - }, - { - "digest": { - "algorithm": "md5", - "value": "a6eb2b789023c70c3994ab428354f9bd" - }, - "isConfigFile": false, - "path": "/usr/bin/split" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc1de59c99c31cde0cba7f3d8a0009dc" - }, - "isConfigFile": false, - "path": "/usr/bin/stat" - }, - { - "digest": { - "algorithm": "md5", - "value": "779343475dc276cec469abaf03b01c69" - }, - "isConfigFile": false, - "path": "/usr/bin/stdbuf" - }, - { - "digest": { - "algorithm": "md5", - "value": "89723f6d65ca3ef1774c47a9f33d87e1" - }, - "isConfigFile": false, - "path": "/usr/bin/sum" - }, - { - "digest": { - "algorithm": "md5", - "value": "68fdf0860a9d4b22a7ab0bfeff386e9a" - }, - "isConfigFile": false, - "path": "/usr/bin/tac" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d9323649cd3618f15f6a20185cf55a9" - }, - "isConfigFile": false, - "path": "/usr/bin/tail" - }, - { - "digest": { - "algorithm": "md5", - "value": "8303f4a474cf16ba8d9603ca8adbdfd5" - }, - "isConfigFile": false, - "path": "/usr/bin/tee" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b0d8f6da5bc97e313ded93f0bbbb239" - }, - "isConfigFile": false, - "path": "/usr/bin/test" - }, - { - "digest": { - "algorithm": "md5", - "value": "68a5dbef05db76e205bd1757e3e20f88" - }, - "isConfigFile": false, - "path": "/usr/bin/timeout" - }, - { - "digest": { - "algorithm": "md5", - "value": "391a765192fcbe17e0bc6fdf8999d737" - }, - "isConfigFile": false, - "path": "/usr/bin/tr" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f64cab438265bd7f96ff77a5c027bb3" - }, - "isConfigFile": false, - "path": "/usr/bin/truncate" - }, - { - "digest": { - "algorithm": "md5", - "value": "73b8ae4ba13ac793b58130756bf3f1f3" - }, - "isConfigFile": false, - "path": "/usr/bin/tsort" - }, - { - "digest": { - "algorithm": "md5", - "value": "b3f168bd022e4b9f67872464722dd989" - }, - "isConfigFile": false, - "path": "/usr/bin/tty" - }, - { - "digest": { - "algorithm": "md5", - "value": "edf89c2a5a9bee4b20250b43923c5a21" - }, - "isConfigFile": false, - "path": "/usr/bin/unexpand" - }, - { - "digest": { - "algorithm": "md5", - "value": "8242181286fa015e0b9cf71fad7007d6" - }, - "isConfigFile": false, - "path": "/usr/bin/uniq" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0d7d80b812e94dea41d173790139322" - }, - "isConfigFile": false, - "path": "/usr/bin/unlink" - }, - { - "digest": { - "algorithm": "md5", - "value": "62952c72a6d11c503733d4f68ea1fd39" - }, - "isConfigFile": false, - "path": "/usr/bin/users" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ba73ec5f15bb880732fe6e78456fc3e" - }, - "isConfigFile": false, - "path": "/usr/bin/wc" - }, - { - "digest": { - "algorithm": "md5", - "value": "1070b879f0cd690ce287d50ea614c894" - }, - "isConfigFile": false, - "path": "/usr/bin/who" - }, - { - "digest": { - "algorithm": "md5", - "value": "3449871cc8b6da567a47d6d689d6f651" - }, - "isConfigFile": false, - "path": "/usr/bin/whoami" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc2001ddacaf74be91c4ef7939938f88" - }, - "isConfigFile": false, - "path": "/usr/bin/yes" - }, - { - "digest": { - "algorithm": "md5", - "value": "519f9acc4b24d86bcbe85e0806f67cf0" - }, - "isConfigFile": false, - "path": "/usr/libexec/coreutils/libstdbuf.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "e365b748bb85882f88f09f3a86f40d9d" - }, - "isConfigFile": false, - "path": "/usr/sbin/chroot" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d13cb5b2bee07003d2b69ccbd256e65" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "11bb530d75a69e84cfdef8adbcfb489a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fbadfea450ae5ee8bab8afc45c561b0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5d9f0b6ae652b1748962b4665364e96c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "585b8a1711ef803d6c572ccf156654ff" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/README.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eed676778c7c80aa02d137d35c22627f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/THANKS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a900a9eb16340bc25409635989c25e1f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/TODO.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ea4281560b8440f3e051a2726a7071e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1ae93c0ebb406606a7112c702c0dc96" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0aee8b1b7b90b42b577fe8562f37c1b5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/coreutils/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "13a6c9dfb71bf7699577b46ddd5e3971" - }, - "isConfigFile": false, - "path": "/usr/share/info/coreutils.info.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "696f3b31c33414c86ea7e23427681799" - }, - "isConfigFile": false, - "path": "/usr/share/locale/af/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5d05355e685bb693e297a5c37f5e725" - }, - "isConfigFile": false, - "path": "/usr/share/locale/be/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e16d5bba909f6730663fe65af62bff00" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7101d04ba18ba7f6f11436bf766c2885" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6699114b8c3b312bf4049dd7a8d65aba" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "de3ce8934d349dedc30f4ad0bfbff2c6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "aff3ee38bc3e91dd4f250300cca75e81" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "204cd4f932f08b72d7f087965fc37864" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "50e6d811b541170a0cff1ef50854f39d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7af279e58179c087c70ab2aa8e511fde" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4b6447c1a6f1b4320fc1995d125c6a4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/et/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "67a9670b5f701789ab110b149abb5cec" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "65ab42d8c4566f1a2436d221512b9ec4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9eba9c2678fa327a8dcf7b78bbcb333a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "520bb08592f4eadc4c83dc284b3f310b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ga/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5643363bf81e4d7a04a6822e39a11f2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b63bdfe11bec5f4d710a625fcc0b1fb4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f77d1ccb80aa24a7d2e32e61a37f5e61" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "de594e3dd0ec521ddb9c5c67a762ee91" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ia/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9bf37fbbf5a897369d6156569fc938d1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8776d6c94f1201128dbc6e3f7c687333" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c6f2016b00aef23e210c62780328a68" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "10890f90192db8284c6cb9f495add2a1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/kk/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "43c01308c8fd75d32a09d84cd557d7e1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e71514d50800d9d74f64acc113d987b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lg/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7228c69b084a60fe7670bd141caa0028" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lt/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f93b7700c4fdedfd021dcc77290563c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ms/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bddbe8b3d79b02a05889a028635e730f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "21f648acf0a1e31447850a53067f9724" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ea95dce81da38af7f29306494be9542" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c68021265fa503fac6ae71dae545468c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f9f0f8b7a579d87873206b9ae6f4ea9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e1a243d3f7bb493877cd571120e9206c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "366c8bfade931f6c70275e96a7e73637" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "94393e8e8f4816c409aa0c3d31314202" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a02299838c70f25fed8ffc4427ee5942" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5f1a07c88b74e5a63d6c19f5698978a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d1e1862ca1857b594cc907f54085b43" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6e02908adf6b0c1a4ea5aba1207ce18" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d00cf5f3ce27da9ac2c984f5b25bdd0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "aea5e5a7f8e2b50bf8a07ebe9f6ca173" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "abde95eac7a3838ac97a41b5ca2b3312" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "283179235d6956bade781d71cf391648" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/coreutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f261706288f2468047c5297de3a99c68" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/arch.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c92c1ee436b95b28572dc62dc995107" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/b2sum.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "03bf60ab6a7c2e5c095eed1e3897cf6b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/base32.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "67d178c7dbe70834a811faa04a090bb1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/base64.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab4b404ef1ba75290b187c67c535e769" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/basename.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "44fb25b2d30b9c27b7fbbfce58d21cda" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/basenc.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f0e14e5d8b780f30af6164ff9aa8c57" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/cat.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0eff500f900b0461c802f5e81247a8b1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/chcon.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "51ee90cb93c606d37c8c97abb899be4c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/chgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "946d60711161c8416d073c8c2ff53e3f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/chmod.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "685d87f429ecc8d47a368c41ba5eb5ce" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/chown.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0dfe68f30ce09b877d680ca340af3f49" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/cksum.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebe7800eb9875871cbb69e21cd3588f3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/comm.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "87525e7c82e5acf6587faf2ba1032077" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/cp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7f5f49e1b2262513bbe71479c986f5ee" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/csplit.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea3144e75e69da1ac9b0979e3d725b40" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/cut.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf89269415dda5a5e6b2ba7dd19ba917" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/date.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b61bd05e19ff7ac6593cad13e7dd616f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "337559e186dda995f318ed657e882242" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/df.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a96a6f03a2ca573cc25744d1d2983b3e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dir.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "64c870b60c348e009275810ed50a386a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dircolors.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2cbf5672cadaf86e150c4e4a4b4c7d8b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dirname.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "72d6d3b59f6b2722fa21c2fe24a2d22c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/du.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "09a8fe40ed4f3b383a4ba7dda09362dd" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/echo.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "befba1c074d7e84f7e6f924789cc037f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/env.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "472e7e04edd0bd69275982c2c64fb57a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/expand.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "90abaabe3da7c4d709a94315ee2bff9f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/expr.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d01d0ca98faa53d6840eac352b54870" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/factor.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e10cb3dbed27fe30add4a5084be5db8e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/false.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6eb17bfa9a9c92d8e4b49d514d37af3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/fmt.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c432306077abfb10723fc8b0c1301fb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/fold.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "87c20af4965bff48384e00a3dfc219b3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/groups.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d3ccfc28a954119e01764eec8d50e34" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/head.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5356477efa2361b8450643d736f718d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/hostid.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "272478e212863533b4997077d30b9a9b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/id.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "575e53510b1e96fc52679105c1b1fa6c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/install.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "22af6d7375e1ad0840498983a888eee8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/join.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "25cfccd19ea5969c91530e18eba62231" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/link.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b719e97067c04704a6dfe7dd89d678b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/ln.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "255c6992e52f380522ce9c22070fa9e8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/logname.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "483e4dc3dd6b3bd7411686ebf44de8d0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/ls.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "967cc77029b6efefcfc75bbfb2b9b84d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/md5sum.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "66a0997194f844faac238de60fb88cac" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/mkdir.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6e9a0ab1f457850bd54ebdbb9c66ee61" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/mkfifo.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eecbda40204d852b50717de5132c31aa" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/mknod.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "87d8c99e8ee5a0b124816d3cf659ce13" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/mktemp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "547a30c95f297e1d2e217135882a1886" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/mv.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aeeb5acf640ecb56d37b7165aeabc460" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/nice.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a098675fa5e2f4b484fd1c020d229eed" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/nl.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c7b9eae7658413c9e40615943c16bc8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/nohup.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "534ce4aaf11dfba81c2f3c69abe8a5d3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/nproc.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0290654a7c09873685149fefdb967e1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/numfmt.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c08d0d5947c6a6c5f922a467e5aa4391" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/od.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "902cc40eabbb1ddafadfafd1d41fe032" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/paste.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a0f6ffe5911ee9f79764a6d8e5f7e29" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/pathchk.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2bca6504e1627c21c3409a162ea500c6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/pinky.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3dcdb450578228e504908a5a17aa258f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/pr.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad8999693a08a8dbfee9833a8194839b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/printenv.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d35f18ef072c04742c1676312a3c8501" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/printf.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f564a083d8ab4338d383043ffef3b1f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/ptx.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "557645c1a74084a8a3965cddbe80af95" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/pwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9fa2af0e001b02a90cd12aa327f33988" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/readlink.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "81172aa56312ee7c252c13fc5573901c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/realpath.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f2b2c9fcedc4f8dfabf9c6c54870a693" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/rm.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d5e7bd0187122f5ff7169c75b440251" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/rmdir.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "77f40dfad95d2af36441348a06637917" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/runcon.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "77182fd7aa8ca29a76bd53255a2958dc" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/seq.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "25bc18486df9713c53005d21f0be4580" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sha1sum.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "72f10360e857294e4d2196663957ac73" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sha224sum.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "68054c2158b343e8b960ff85301063c8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sha256sum.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3dd18de50c51311219156cd2695e1c9a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sha384sum.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "88f0fc6abf6a826812dc9003767c4d2c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sha512sum.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "44e3f9247b23ff72c239bd347d3c24e0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/shred.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d446b21317bdbd302a3bb1b17d6575f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/shuf.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4243f0cd6dad8a93c90afad1a4fc1a7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sleep.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f09e0f94fafd18784a72069d368170cf" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sort.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "41a68d4ae7415a19ec94dc7c167418e4" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "81f7fd4d26dfe216301dff09e1e4dff0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/stat.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b765726d01ec64e47165a74b2073d752" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/stdbuf.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7393f897b2a4d9a9885fd38d449a1818" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/stty.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "102237b295590a3e1ba87dbc4d4f97f2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sum.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "914e22e838a9e2f9dd2f952bf1cace6d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sync.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8f6e0fed6f684a3f311a0576a4318c7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tac.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6d8a8ab08d333a6e39ab0dba4673513" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tail.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f46537a3f8b9ebb42fb707fd51f735ff" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tee.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5c98676740383eb86178e11ac087d7f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/test.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "49fdc56b707f7a635f286ed7a92df700" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/timeout.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5466bb864f9bb3cd647488a8cf6ae3f5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/touch.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec8fc73f9b45343538d301fcb3590183" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tr.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c5b82df782381ffb82e77cecc725c2a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/true.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "05f05183f56ca8ef3215e09c0178f7d8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/truncate.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "486f74485a80242b469446fa4257b82e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tsort.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c49c0f0fe81d4723cfd3b0d2e6ff4856" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tty.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aaacb9e8cccd585569b796bfaa36c1ba" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/uname.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bff18eb4767e1115140988059e94cd1e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/unexpand.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c426bf446d63c635972c4baabbdd6c92" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/uniq.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "32ee47211359256071c47d66be782cb0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/unlink.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5cb79b2eef890f15166dc5c0f72f43bc" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/users.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d92da765f4bd13f612d21672f16423b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/vdir.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c724752d0e97db929248a9d3c0864580" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/wc.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ef6b17bb6099d107c4f59b6563ef6fb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/who.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "683531a6e378d78013fff147ed3f8d11" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/whoami.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "84006fca2bfffd0cd8f5b7ef57c72f20" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/yes.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a574a4dd8cf2eb0dfbd5ee653c0e083" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/chroot.8.gz" - } - ], - "installedSize": 18062, - "maintainer": "Michael Stone \u003cmstone@debian.org\u003e", - "package": "coreutils", - "preDepends": [ - "libacl1 (\u003e= 2.2.23)", - "libattr1 (\u003e= 1:2.4.44)", - "libc6 (\u003e= 2.34)", - "libgmp10 (\u003e= 2:6.2.1+dfsg1)", - "libselinux1 (\u003e= 3.1~)" - ], - "source": "", - "sourceVersion": "", - "version": "9.1-1" - }, - "metadataType": "dpkg-db-entry", - "name": "coreutils", - "purl": "pkg:deb/debian/coreutils@9.1-1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "9.1-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:curl:curl:7.88.1-10\\+deb12u5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "60eb7e4999f74148", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "BSD-4-Clause-UC", - "type": "declared", - "urls": [], - "value": "BSD-4-Clause-UC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "FSFULLR", - "type": "declared", - "urls": [], - "value": "FSFULLR" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "OLDAP-2.8", - "type": "declared", - "urls": [], - "value": "OLDAP-2.8" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - ], - "spdxExpression": "curl", - "type": "declared", - "urls": [], - "value": "curl" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/curl/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/curl.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/curl.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libcurl4 (= 7.88.1-10+deb12u5)", - "zlib1g (\u003e= 1:1.1.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "b05a9b64cea9c7bc3cd7d73fa21493d1" - }, - "isConfigFile": false, - "path": "/usr/bin/curl" - }, - { - "digest": { - "algorithm": "md5", - "value": "71b3fc9fe0a67c617a278a212ec0e4bd" - }, - "isConfigFile": false, - "path": "/usr/share/doc/curl/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a7d15f1f7beb98774b69a1e88bc2119" - }, - "isConfigFile": false, - "path": "/usr/share/doc/curl/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f9f6598312858fead4eed4d151197550" - }, - "isConfigFile": false, - "path": "/usr/share/doc/curl/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "44ba31c9dceb262766e093e2bfd9f539" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/curl.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5af0593e6eaf8d1e3bd86b0092ea7009" - }, - "isConfigFile": false, - "path": "/usr/share/zsh/vendor-completions/_curl" - } - ], - "installedSize": 488, - "maintainer": "Alessandro Ghedini \u003cghedo@debian.org\u003e", - "package": "curl", - "source": "", - "sourceVersion": "", - "version": "7.88.1-10+deb12u5" - }, - "metadataType": "dpkg-db-entry", - "name": "curl", - "purl": "pkg:deb/debian/curl@7.88.1-10+deb12u5?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "7.88.1-10+deb12u5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:dash:dash:0.5.12-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "dfb8fa00a791d161", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/dash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dash/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/dash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dash/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/dash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dash/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/dash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dash/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/dash/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dash/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/dash/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dash/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/dash.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/dash.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "debianutils (\u003e= 5.6-0.1)", - "dpkg (\u003e= 1.19.1)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "623e332d8ae2db8a2d050dcce9510b47" - }, - "isConfigFile": false, - "path": "/bin/dash" - }, - { - "digest": { - "algorithm": "md5", - "value": "755cdd52cc480bb5b6226850a2889137" - }, - "isConfigFile": false, - "path": "/usr/share/debianutils/shells.d/dash" - }, - { - "digest": { - "algorithm": "md5", - "value": "33bbdf9b5abcff27bb89603648467d95" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dash/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "75dfd2f9ad393db52c90bd1cebbd8927" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dash/README.Debian.diet" - }, - { - "digest": { - "algorithm": "md5", - "value": "e48ea975fd9f8728849631e7b2169fee" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dash/README.source" - }, - { - "digest": { - "algorithm": "md5", - "value": "afea425dd91060f5751ba7b28d0bbfd9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dash/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3774a6864e89305f485d7c44486367be" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dash/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "45a7982fc91e179d26fb860de1307a82" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dash/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "3380d64a96355e15f0d855107354d615" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/dash" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ec640491f9452080428a20f58a0d48e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dash.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c0deee3ed2e105f02a0a7f439493657" - }, - "isConfigFile": false, - "path": "/usr/share/menu/dash" - } - ], - "installedSize": 191, - "maintainer": "Andrej Shadura \u003candrewsh@debian.org\u003e", - "package": "dash", - "preDepends": [ - "libc6 (\u003e= 2.34)" - ], - "source": "", - "sourceVersion": "", - "version": "0.5.12-2" - }, - "metadataType": "dpkg-db-entry", - "name": "dash", - "purl": "pkg:deb/debian/dash@0.5.12-2?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "0.5.12-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:debconf:debconf:1.5.82:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "cd568950fffd83d7", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/debconf/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debconf/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/debconf/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debconf/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/debconf.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/debconf.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/debconf.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/debconf.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "7e9d09d5801a42b4926b736b8eeabb73" - }, - "isConfigFile": true, - "path": "/etc/apt/apt.conf.d/70debconf" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c0619be413824f1fc7698cee0f23811" - }, - "isConfigFile": true, - "path": "/etc/debconf.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "52fc9c61a0d4d0146e6a946c3e14f323" - }, - "isConfigFile": false, - "path": "/usr/bin/debconf" - }, - { - "digest": { - "algorithm": "md5", - "value": "19c67e6eb300e9c61f80aa6b76719bdd" - }, - "isConfigFile": false, - "path": "/usr/bin/debconf-apt-progress" - }, - { - "digest": { - "algorithm": "md5", - "value": "9667b0261cac6f775e0bce8d5b390cf6" - }, - "isConfigFile": false, - "path": "/usr/bin/debconf-communicate" - }, - { - "digest": { - "algorithm": "md5", - "value": "02b774c3cf0ea04dc88b078fad41681c" - }, - "isConfigFile": false, - "path": "/usr/bin/debconf-copydb" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b8e7ec5583b033efd3d6eb0085fbce0" - }, - "isConfigFile": false, - "path": "/usr/bin/debconf-escape" - }, - { - "digest": { - "algorithm": "md5", - "value": "36fca810603f8a0654a9b4bef2178640" - }, - "isConfigFile": false, - "path": "/usr/bin/debconf-set-selections" - }, - { - "digest": { - "algorithm": "md5", - "value": "e2193426e7bf0d0d6c30f632aad55fff" - }, - "isConfigFile": false, - "path": "/usr/bin/debconf-show" - }, - { - "digest": { - "algorithm": "md5", - "value": "41cd32217ba8e7813b76a5014b6801b8" - }, - "isConfigFile": false, - "path": "/usr/sbin/dpkg-preconfigure" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e9cb8e2a222592f2940fd81ef71e1b2" - }, - "isConfigFile": false, - "path": "/usr/sbin/dpkg-reconfigure" - }, - { - "digest": { - "algorithm": "md5", - "value": "f3566bee9dc1c5e9d7261089cf173b33" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/debconf" - }, - { - "digest": { - "algorithm": "md5", - "value": "686b6704d2bb458a89826cda5b4546e5" - }, - "isConfigFile": false, - "path": "/usr/share/debconf/confmodule" - }, - { - "digest": { - "algorithm": "md5", - "value": "039097b6c3340a7386e841c4935eda12" - }, - "isConfigFile": false, - "path": "/usr/share/debconf/confmodule.sh" - }, - { - "digest": { - "algorithm": "md5", - "value": "b5ce961d3b91bfaa5ec56d99f7dc4b8d" - }, - "isConfigFile": false, - "path": "/usr/share/debconf/debconf.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f5d1c3f1b66ce17569091e9435c1019" - }, - "isConfigFile": false, - "path": "/usr/share/debconf/fix_db.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3391027c494f54494ba4f089015ebdc" - }, - "isConfigFile": false, - "path": "/usr/share/debconf/frontend" - }, - { - "digest": { - "algorithm": "md5", - "value": "74516646512de2dd1c55df3f61c8bd62" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debconf/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "20c51c96dc14801a095b3994715731f5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debconf/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e01af813228cc4977867d6012351f76" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debconf/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a44f8297ec915c6ebe33f1f33b8c6007" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debconf/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce8cbe0dfeddc4bbb314754838c98db4" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/debconf" - }, - { - "digest": { - "algorithm": "md5", - "value": "934f8ef6a27b3fcf08235a1b5f85442d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/debconf-apt-progress.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "52ecbbaba9f260f6cae65a57b967136e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/debconf-communicate.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "93f81606a8eb7dfdcadb56462bb3518b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/debconf-copydb.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "892606924f993907fb2acef4376c96aa" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/debconf-escape.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e82f30b6cdfd38460eb6e947c55107c5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/debconf-set-selections.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e9645689d66bea6ade7813fe27bb7ad" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/debconf-show.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a53c9b5a5074f1d553fc2f301b8c72e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/debconf.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f50d7386ba7028c60b9f70af3a48a206" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/dpkg-preconfigure.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f008f787f8f9d0293ef611bd81e1ffdb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/dpkg-reconfigure.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8de485b18877846234415aa61eadb7b3" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/AutoSelect.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "27a6f4e44ebb6c631c63bae827ee8c8c" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Base.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "72cd26ac568bcf2081b7c28912ee72d7" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Client/ConfModule.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c33e9c32da536ab805ea13821108270" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/ConfModule.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "808d58d99e3f1de8f4aaad471de10860" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Config.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "731d6613934ce6d46e11d1b6e30e4215" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Db.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb0982fc87c96ad7ab89b8039982d215" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "22bcaf2c1d2a042d5e04cc9c48e5331c" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/Backup.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "8caad6c2e0d23be6f31f386b814dfbd1" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/Cache.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "072adbb7e13e5bc2b75f86ccdf542b1a" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/Copy.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0d58a6a2d0e6124f5a9da21c2be8f2e" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/Debug.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "2dae1795691944962dc7d0cb04405b5a" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/DirTree.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "9be5bc66d0030fbdb28022fe1b7d5363" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/Directory.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "8abe74a074e0fa0d4908a1ce335aa6a2" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/File.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "51500a03fabe0aa80fd17d0c55d49722" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/LDAP.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "31560c883795a0c98e6075702a877890" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/PackageDir.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "9aa8c9c7e9d45106324b6da00583945f" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/Pipe.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "84fa17235afa66ff0e6a0ebb8bc9ac21" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/DbDriver/Stack.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "cfcb83b556c78ce238145e8a5c8331c3" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f4213ac1ba985c6a86a1f5337e22f96" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Dialog/Boolean.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ceceaa749c08fe6427c13855c4849b1" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Dialog/Error.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b98b4ea4097519a8776543f6b6490948" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Dialog/Multiselect.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "6a5aa9f7e4ac81e21a1d4a1484f275f4" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Dialog/Note.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ef627f6608f0fb8455021a753b23624" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Dialog/Password.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b5236284f89efeb755ddd8ce06ad3ad9" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Dialog/Progress.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea97823fd786f71641e898b7140420c2" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Dialog/Select.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b98a19a2a3f108ec2ad4af5192cb3b31" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Dialog/String.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a22697639f7848c94db179df3ffa13a" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Dialog/Text.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a617ddca6907cd3ee805393756c8fdc" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Editor/Boolean.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "42c2833b78ccd2af5c3d1cce4428eb5e" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Editor/Error.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d6d5510fc76676de40a8b2b02c4da3a" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Editor/Multiselect.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "65c85fd416c5d6cd432f84eb5526f37b" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Editor/Note.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "4735d2f1c31de756e3aea03228384106" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Editor/Password.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "c43ad2a3b448b46a9ffc6e5c89e4885f" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Editor/Progress.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "7bbbf3f0021b526f2bf6c726cf3a6acc" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Editor/Select.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "61b25b4dc6b8a8e1d6417167c464031a" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Editor/String.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e08ffacda2e1dc9f06b15d690b38d2a" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Editor/Text.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d7145459a3a29053f68df607b6bc89d" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "6bd21d5f66c0929f2927cba75f7613ec" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome/Boolean.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0702ba61bcfe53256410e2399e42a5c" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome/Error.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "56305085246a52b8622bb7cc09315f73" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome/Multiselect.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc2619e83ddab5adc1b92245b47722a2" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome/Note.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f69e273bba25eacfbf40d523b24fb11" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome/Password.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "69489241144da0943e84b30b0ccec3a6" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome/Progress.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "458f1e10f6e933cd0c35c1453f4c7338" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome/Select.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "54ac61f0c47d524d96566a5485d3d7d6" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome/String.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "16b3a15c9bd104e90b9d848623c0899f" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Gnome/Text.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "0b76d2ff2abd5586732860ed069973ba" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Multiselect.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "5090f97c9972fab4f7dc7ebb49996e2c" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "db7670d7933d1f8f0118c31ddd493970" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Boolean.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "33916265f1150a5bc060f2387feb523f" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Error.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5cb32767a176049e396af94685b01ff" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Multiselect.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "13dfe95e3aece538a11d509ada1ce289" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Note.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c838d4a47dddc48509e6ea21baa3161" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Password.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b405559f2200112ab95036b7ec849505" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Progress.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "4260064e9c28b8a83c59e64eea97a557" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Select.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "06e70029507fb6f7e6ec9dc82f744122" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/String.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "0037100480bef471cd88d10e5003dd1e" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Text.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa4f4dfa69239f1964626f5206d13b5d" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Select.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "38b4f0c167293001dcd38d1ceac2dd66" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Teletype/Boolean.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b999aa2c596feea026c3d3361ab408b" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Teletype/Error.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7d71486929b88c20170677791c23d72" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Teletype/Multiselect.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "da293d7c097e983170f80fd973e595ad" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Teletype/Note.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d5d3393bc473166c626bac82c91f516" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Teletype/Password.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "55f02de45fa6f2ea2bbd8de839959dde" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Teletype/Progress.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ff7785d0781ce267418f8890acd4409" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Teletype/Select.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "432a3e2ccada26eed6d8efd9c2d7c66e" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Teletype/String.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "272b1231b35fb5eeccb4aeb8042a934d" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Teletype/Text.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "80228037ab8a8441054e37586a99060b" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Web/Boolean.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "f146fa12fbbe5434e4910ec1a7422475" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Web/Error.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef1ff584e10e02c3b0aeb0d985e99a19" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Web/Multiselect.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "310ea26706fb2ccd80e0524017d1ab54" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Web/Note.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "64824ec979d1bdb973b6f9d81532ffeb" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Web/Password.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "6745d03b282a96b208f8cea951366d05" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Web/Progress.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "990129f10517cd949f29864363784c23" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Web/Select.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b21b58ec6213c636dce8cd26893d269" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Web/String.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "88550019f5e9bec6cd3dbf62a2de4049" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Element/Web/Text.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe7a858360c6152eaf84a745273acd83" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Encoding.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "be75659c57c73794f8c66cb59265a714" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Format.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "611536bbf4f507ecc7b8266a3ce946ec" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Format/822.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "e305f3178e9fab07fb1b8014acbcc10d" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "afe7410fa7d1f5cc4fa3e7af5d266da3" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Dialog.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b4119d66ee8dde0e7fa95de44394813" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Editor.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "cbf73546742945004e02d031355a6809" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Gnome.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "a57a122cd5bd584bceee2f5d20712fbf" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Kde.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "c826594c3b7dbeb965b863115a51f9b2" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "45353dd2e95f8b26f42cfc59f4f02caa" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Passthrough.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f4f993916d07fb2d186b1ec74b6711a" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Readline.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e6b83d495fc01a6dd07806c8acaa1e2" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/ScreenSize.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "22a4af7da2960fd87452449a88d7ea64" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Teletype.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9ac9868f237206993bde33a17a61220" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Text.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "7ffb67a8e8d623beb2be7c08d2c80b8f" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/FrontEnd/Web.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "072dbdddbd69162468e988d43848cbca" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Gettext.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf4de7542d6829631b3bcc4b4f87f641" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Iterator.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "fff70eb6929c7a6e7af6f7d00beda73a" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Log.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b40ba281b22387604e0ad781d221e1cb" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Path.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0af214079361d605172e510abd69604" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Priority.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "15565a7e690252752e461a50aa130803" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Question.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "38a37b0eb8764fd2d827a46317ab5a1f" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Template.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a3c7de553d6eccd5480adc6d02583bb" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/Template/Transient.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "46c0e42d52a4ea2fbe0316eebc6c1118" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debconf/TmpFile.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "a12c3f0045bfbe05e2345aed702f6fc3" - }, - "isConfigFile": false, - "path": "/usr/share/perl5/Debian/DebConf/Client/ConfModule.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef66f9c42198fee38af53f848b36a4f7" - }, - "isConfigFile": false, - "path": "/usr/share/pixmaps/debian-logo.png" - } - ], - "installedSize": 491, - "maintainer": "Debconf Developers \u003cdebconf-devel@lists.alioth.debian.org\u003e", - "package": "debconf", - "provides": [ - "debconf-2.0" - ], - "source": "", - "sourceVersion": "", - "version": "1.5.82" - }, - "metadataType": "dpkg-db-entry", - "name": "debconf", - "purl": "pkg:deb/debian/debconf@1.5.82?arch=all\u0026distro=debian-12", - "type": "deb", - "version": "1.5.82" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:debian-archive-keyring:debian-archive-keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:debian-archive-keyring:debian_archive_keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:debian_archive_keyring:debian-archive-keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:debian_archive_keyring:debian_archive_keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:debian-archive:debian-archive-keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:debian-archive:debian_archive_keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:debian_archive:debian-archive-keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:debian_archive:debian_archive_keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:debian:debian-archive-keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:debian:debian_archive_keyring:2023.3\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "5f72b60542cf0be2", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/debian-archive-keyring/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debian-archive-keyring/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/debian-archive-keyring/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debian-archive-keyring/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/debian-archive-keyring.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/debian-archive-keyring.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/debian-archive-keyring.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/debian-archive-keyring.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "55eec060916a9d4a0db7560ab4d7bdce" - }, - "isConfigFile": true, - "path": "/etc/apt/trusted.gpg.d/debian-archive-bookworm-automatic.asc" - }, - { - "digest": { - "algorithm": "md5", - "value": "bec0a1224f667bcd1e231b874db9bc4f" - }, - "isConfigFile": true, - "path": "/etc/apt/trusted.gpg.d/debian-archive-bookworm-security-automatic.asc" - }, - { - "digest": { - "algorithm": "md5", - "value": "fac2ec9faba2c2d82c70a6e2805c5b79" - }, - "isConfigFile": true, - "path": "/etc/apt/trusted.gpg.d/debian-archive-bookworm-stable.asc" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f30ce1ba8532d523017acb1a69c106a" - }, - "isConfigFile": true, - "path": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-automatic.asc" - }, - { - "digest": { - "algorithm": "md5", - "value": "9fbe7b0d8ebb38e240aeec6b0830ac7b" - }, - "isConfigFile": true, - "path": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-security-automatic.asc" - }, - { - "digest": { - "algorithm": "md5", - "value": "85a4c0e5c747a38509b33562d4c950be" - }, - "isConfigFile": true, - "path": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-stable.asc" - }, - { - "digest": { - "algorithm": "md5", - "value": "10178cd8ac882d2d436857bd0f0bf5ad" - }, - "isConfigFile": true, - "path": "/etc/apt/trusted.gpg.d/debian-archive-buster-automatic.asc" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b60b0a24ecff63128cffbb055451931" - }, - "isConfigFile": true, - "path": "/etc/apt/trusted.gpg.d/debian-archive-buster-security-automatic.asc" - }, - { - "digest": { - "algorithm": "md5", - "value": "49a2e1a5cc1922728aea81e00604f9d8" - }, - "isConfigFile": true, - "path": "/etc/apt/trusted.gpg.d/debian-archive-buster-stable.asc" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f7bb252cc1f41fc32eba28217117883" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debian-archive-keyring/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "b56666f38e4df0e57efb653f248bb331" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debian-archive-keyring/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a39527c50bc61e28a31bd9c3de8e17f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debian-archive-keyring/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ed7972dd2fdcbcf16ca5c139655eced" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-bookworm-automatic.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "befef93070ec9002b7873a7375ffc739" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-bookworm-security-automatic.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "4974fa497e6120a5babe820bc779e357" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-bookworm-stable.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5b8d048d75e0ba9a964c28daa0757cf" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-bullseye-automatic.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6b2ad2c894ecfe479981fd0eadc1c92" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-bullseye-security-automatic.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "045a5096301163f4b172d226e9d4dbb8" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-bullseye-stable.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e93d0a43d3a60272034c15900e9df6f" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-buster-automatic.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "f2d1b03b7a3c279ec66425d06aaab50f" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-buster-security-automatic.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "4797ff6df738da65413ef710cf73936f" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-buster-stable.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "dacd8c0fd426043ef110d84065dad482" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-keyring.gpg" - }, - { - "digest": { - "algorithm": "md5", - "value": "958720e3ce841d665a75d88674cc5386" - }, - "isConfigFile": false, - "path": "/usr/share/keyrings/debian-archive-removed-keys.gpg" - } - ], - "installedSize": 272, - "maintainer": "Debian Release Team \u003cpackages@release.debian.org\u003e", - "package": "debian-archive-keyring", - "source": "", - "sourceVersion": "", - "version": "2023.3+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "debian-archive-keyring", - "purl": "pkg:deb/debian/debian-archive-keyring@2023.3+deb12u1?arch=all\u0026distro=debian-12", - "type": "deb", - "version": "2023.3+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:debianutils:debianutils:5.7-0.5\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "491d4893a84ee6f1", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/debianutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debianutils/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/debianutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debianutils/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/debianutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debianutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "SMAIL-GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/debianutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debianutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/debianutils/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debianutils/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/debianutils.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/debianutils.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "f761c929d6dc77bd3c17a5245ad32de7" - }, - "isConfigFile": false, - "path": "/bin/run-parts" - }, - { - "digest": { - "algorithm": "md5", - "value": "6cd113a394c8d2d6f8842232bbdea09b" - }, - "isConfigFile": false, - "path": "/bin/tempfile" - }, - { - "digest": { - "algorithm": "md5", - "value": "467b9e77c7b896b4898a44c326f16e6b" - }, - "isConfigFile": false, - "path": "/sbin/installkernel" - }, - { - "digest": { - "algorithm": "md5", - "value": "385ec708cb6c1caba40018aad7c8e446" - }, - "isConfigFile": false, - "path": "/usr/bin/ischroot" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c844c3942907e9edf9f30b7110b0cc6" - }, - "isConfigFile": false, - "path": "/usr/bin/savelog" - }, - { - "digest": { - "algorithm": "md5", - "value": "e942f154ef9d9974366551d2d231d936" - }, - "isConfigFile": false, - "path": "/usr/bin/which.debianutils" - }, - { - "digest": { - "algorithm": "md5", - "value": "139cb32cfcb71cd06e22a432efe33659" - }, - "isConfigFile": false, - "path": "/usr/sbin/add-shell" - }, - { - "digest": { - "algorithm": "md5", - "value": "e052ac1c8b98cc06d58011a6bfc74515" - }, - "isConfigFile": false, - "path": "/usr/sbin/remove-shell" - }, - { - "digest": { - "algorithm": "md5", - "value": "d476d035515c4b4b39e09e6c83b09576" - }, - "isConfigFile": false, - "path": "/usr/sbin/update-shells" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0b758b0ae1eaefda1dfb8b031f7a903" - }, - "isConfigFile": false, - "path": "/usr/share/debianutils/shells" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc0a65ab5c89c8e9442cafd12d428d84" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debianutils/README.shells.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec5d23dd5e89ca754e8aa6990d57b0c9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debianutils/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "40e94d80af0ef9ed2ecc49b3b6770e14" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debianutils/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "365dd1cc0a59bc0faee05bb1a0456efd" - }, - "isConfigFile": false, - "path": "/usr/share/doc/debianutils/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "5dd5fcfc01ded2a3cb2dcef2f8ad4271" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/which.debianutils.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "484f342d6f681d9472aac98461c7c523" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/add-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "15d3cb1f086d27f717f349730de3291e" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/installkernel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "859e4b18bf26f86a216c35102847f2a0" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/remove-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca38207250dde30dc0b8819665759339" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/run-parts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5fa73341ea98f5ed04b35a665c86225" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/savelog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a7fbb315200b747fef96d53a6d29ad8" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man1/which.debianutils.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "018af8d7ec38e32ea4aebff34811d82e" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man8/add-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0c0c9822533ee1eb745f301d418d828" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man8/installkernel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "03724d569da9435a17fa18359c4c6efd" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man8/remove-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c18c2a2bb6010d78d75c0ef100a141ae" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man8/run-parts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f50ec1821fc8421f71a7e356329223f" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man8/savelog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4dbc9e5ab93bda483d6162200a714b62" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/which.debianutils.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "574a1d5408e2188c3e009f6caedb8c1a" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/add-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "80799f22cc608639b98ec0de7fddcc2f" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/installkernel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a3ef6913a518a910f0d0f07fe47764b" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/remove-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "40c584a60f79b191e47fbb533a274663" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/run-parts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "07da2a5e5fb3a740be1116404c2ee820" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/savelog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cddcaa628a9edcf1ea19bdf503e9ad77" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/which.debianutils.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ce1ba3d779a1c34faac736cb9a37204" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/add-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cdd93afd71373cc32a1314f1f9abeca6" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/installkernel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cbaa34b9700d1f3ce602c00ce601374e" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/remove-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fdd207fc094658ed4461ace4d3b39000" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/run-parts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f532fcfbc4376e225a02e4371d9e97b8" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/savelog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "78b747d1afb3984da4d451441557495e" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/which.debianutils.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "47925debb3eef5f86141f23ccd6d1708" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/add-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3f15a11abc8f6dbc93d41a3fd502d71" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/installkernel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "264e83ccbf65d1f03a6517db8f17e070" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/remove-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6af8b8ec14e95946aeb6b5b0045b02c0" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/run-parts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd8fc824b214c04a06f11aa604cd90d6" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/savelog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a4ec88654b945c97d4d3d51456c22df" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/ischroot.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e9ae809d3e7be3a20212f3c9885cad2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tempfile.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa13fe96c02efaee3e67533f95413f74" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/which.debianutils.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b1c4db1b2ae57b3a3a0987cdc541c515" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/add-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e70536fb91582eae89e02194b3d6ef11" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/installkernel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "27cba2cc672a31a4f82895d4cc73fd5b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/remove-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "26c7036af0a30dd0c93c90e75d84bd64" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/run-parts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d1889587d106b7c88bb16706edf4faa" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/savelog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ad9c5ac9d1b93724cc45767b21443b6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/update-shells.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2858393c277090a6991489640584aee3" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man1/which.debianutils.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f23f87226c135664b81d031c9da34daa" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/add-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "70f974b9899e2a2758f475a36346f3a4" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/installkernel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a53bd04b407fbe4f89424436c245d615" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/remove-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e9b2ed69c5495b890c6116d2b24c60e5" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/run-parts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c937a4226ebd83ac2e525c10afb63755" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/savelog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f74e0341e8b7d891bff89f579f0cbede" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/which.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a2016a114eca102686fa2d4a3933b69" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/add-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "62fc9ce33e9b858f9f13f58a621be867" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/installkernel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "321e4da05fbcfe6d6ad72e958a410ed2" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/remove-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "80b93717908aacd8239401dd7537c261" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/run-parts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "93141eb00b892349b864ccbe011ad9d1" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/savelog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b5234ba3035929b69da34fd9007f4a1b" - }, - "isConfigFile": false, - "path": "/usr/share/man/sl/man1/which.debianutils.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f786580b5376b1fa5e2f4cf70c921ac3" - }, - "isConfigFile": false, - "path": "/usr/share/man/sl/man8/add-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c39d12b2da2e3d92860baf7c1185726" - }, - "isConfigFile": false, - "path": "/usr/share/man/sl/man8/installkernel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd7c845ab3cb83e35f5961eb5a4395c5" - }, - "isConfigFile": false, - "path": "/usr/share/man/sl/man8/remove-shell.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d68aee4df97bf80cd1021bde0c39679" - }, - "isConfigFile": false, - "path": "/usr/share/man/sl/man8/run-parts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1df217ec0b164e41551342ade8e81701" - }, - "isConfigFile": false, - "path": "/usr/share/man/sl/man8/savelog.8.gz" - } - ], - "installedSize": 243, - "maintainer": "Clint Adams \u003cclint@debian.org\u003e", - "package": "debianutils", - "preDepends": [ - "libc6 (\u003e= 2.34)" - ], - "source": "", - "sourceVersion": "", - "version": "5.7-0.5~deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "debianutils", - "purl": "pkg:deb/debian/debianutils@5.7-0.5~deb12u1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "5.7-0.5~deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:diffutils:diffutils:1\\:3.8-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "7b8a5443f3ae24b7", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "FSFAP", - "type": "declared", - "urls": [], - "value": "FSFAP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "FSFULLR", - "type": "declared", - "urls": [], - "value": "FSFULLR" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "GFDL-1.3-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GFDL-NIV-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.0+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3.0+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/diffutils/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/diffutils.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/diffutils.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "c9426f1e31af8676d3951b0ffcec117d" - }, - "isConfigFile": false, - "path": "/usr/bin/cmp" - }, - { - "digest": { - "algorithm": "md5", - "value": "5096769cf79b5471bd14df7c5773b091" - }, - "isConfigFile": false, - "path": "/usr/bin/diff" - }, - { - "digest": { - "algorithm": "md5", - "value": "f53bd286dfe7871b85d53b7016f13ab5" - }, - "isConfigFile": false, - "path": "/usr/bin/diff3" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ae2843b495d49cd90d4d2ef8df05af8" - }, - "isConfigFile": false, - "path": "/usr/bin/sdiff" - }, - { - "digest": { - "algorithm": "md5", - "value": "800626bf46cd2853fd760d0ec578327b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/diffutils/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d51fdfc6f22a5277d4e2ae623fbba32f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/diffutils/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "76639db7b090bd3d68a3f08d74f20da5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/diffutils/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f54c48b13a8f7f32e284d92a8c33a329" - }, - "isConfigFile": false, - "path": "/usr/share/doc/diffutils/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "120eb3ea10be91ef70909b921a9c5bed" - }, - "isConfigFile": false, - "path": "/usr/share/info/diffutils.info.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9552f666915a0c98e4e891555b7d742c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "16b203e2fce161f94119068140569f1b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "169720b38551e979dfc74efac603fae3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9fa19c7f0119e2fe5fccf64fb4611549" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb52f90aeb39935a184a230a28a6dc62" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5af68c070c1ba46cc1f0f627f6f3daac" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d38a1aee4b5cd757cd30513d4f96d9d7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2235d67d918321c8e8fbb13529352d26" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "89d24dcf29b1ce43445ce23d3ab67ad0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b26aec43c5f2ce0bc2035166321e1852" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9481340abe3cd32ea6cdf67772a0e871" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ga/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8bac7984abcadbbfb86e0ac76ca19f78" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3feed64e400fdd2ecee10d02bb1cf6af" - }, - "isConfigFile": false, - "path": "/usr/share/locale/he/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b5572f7411cbd99a63c1be90134dee7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0b125dc9838cc21bd70ccbfc53c058c0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "add090b8405d4e556a88ef6e1fee0591" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "43129bb21f339b6df7af0c69fb3b7510" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6432b25eadd7684b62b08e4effd16ee" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "45c058e8bc71a90c1648aae988926233" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lv/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c1e2a343dba8ff65791aeb7f32c6959" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ms/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ae97d28970d3584fe0aea3abd110c31b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "deb6a13f5dfc7a7b7ef73014c0591814" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5982dd9bbd0505924ef73bd97b418f07" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4f7d4b31bcf731a0285ce730f94df15" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0879a9c06321887c7e9be9ec4454e0dc" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "747ed964b2532976c0342f69cb6733d3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "52cc1cdcc071599371351ef98fcb2b2e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b277b11c6c99b85eded9df7c27d3c5a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d43d636fb659845bfdfd69dd4c703c1c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "96bd2beb1d3c0fa449533215dd78b91c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "984f5a943b4fef5dd75f67c2c87c264e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd696bfada891bc5e0cdb0eabe05fdef" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e1d5eb2b9fe0c8f8506b23f0ec3ad003" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3217534be935432c4c88f9d9eed8b618" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/diffutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "156f58e78c75f695dbb0f04ad35ecb4d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/cmp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e7b0049c95aa9163395ddc26d209ec6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/diff.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6df14bbdb44d45bbb6060af0e801b8f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/diff3.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4fe2a544d47bb43f8fdc4d8ca2adf819" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sdiff.1.gz" - } - ], - "installedSize": 1598, - "maintainer": "Santiago Vila \u003csanvila@debian.org\u003e", - "package": "diffutils", - "preDepends": [ - "libc6 (\u003e= 2.34)" - ], - "source": "", - "sourceVersion": "", - "version": "1:3.8-4" - }, - "metadataType": "dpkg-db-entry", - "name": "diffutils", - "purl": "pkg:deb/debian/diffutils@1:3.8-4?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1:3.8-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:dpkg:dpkg:1.21.22:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "e7dfdbaa2c8d0db8", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/dpkg/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dpkg/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/dpkg/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dpkg/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/dpkg/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dpkg/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/dpkg/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dpkg/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain-s-s-d" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/dpkg/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dpkg/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/dpkg.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/dpkg.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/dpkg.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/dpkg.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "tar (\u003e= 1.28-1)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "7be88b21f7e386c8d5a8790c2461c92b" - }, - "isConfigFile": true, - "path": "/etc/alternatives/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "94bb6c1363245e46256908a5d52ba4fb" - }, - "isConfigFile": true, - "path": "/etc/cron.daily/dpkg" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4413ffb515f8f753624ae3bb365b81b" - }, - "isConfigFile": true, - "path": "/etc/dpkg/dpkg.cfg" - }, - { - "digest": { - "algorithm": "md5", - "value": "5fe0af6ce1505fefdc158d9e5dbf6286" - }, - "isConfigFile": true, - "path": "/etc/logrotate.d/alternatives" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e25c8505966b5829785f34a548ae11f" - }, - "isConfigFile": true, - "path": "/etc/logrotate.d/dpkg" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b7bcfb2ca9f6f6b155d00a8e0187dd7" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/dpkg-db-backup.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "3fa2bedc580076dd391eb79adf668de5" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/dpkg-db-backup.timer" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3e885c01810c7cb5ea999884c4042c2" - }, - "isConfigFile": false, - "path": "/sbin/start-stop-daemon" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b6f8c07496e110980e9eef5a6d8067b" - }, - "isConfigFile": false, - "path": "/usr/bin/dpkg" - }, - { - "digest": { - "algorithm": "md5", - "value": "444f6fbf2e1bef8ca3dae358dbb32190" - }, - "isConfigFile": false, - "path": "/usr/bin/dpkg-deb" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b646d08f247859fc1cccd8777af14e4" - }, - "isConfigFile": false, - "path": "/usr/bin/dpkg-divert" - }, - { - "digest": { - "algorithm": "md5", - "value": "a2f7181e29f25cc611f62e26b3b58326" - }, - "isConfigFile": false, - "path": "/usr/bin/dpkg-maintscript-helper" - }, - { - "digest": { - "algorithm": "md5", - "value": "b259ca765376746f8d1da0cd3004d89e" - }, - "isConfigFile": false, - "path": "/usr/bin/dpkg-query" - }, - { - "digest": { - "algorithm": "md5", - "value": "3217809fd694be0af7722c50926a4f71" - }, - "isConfigFile": false, - "path": "/usr/bin/dpkg-realpath" - }, - { - "digest": { - "algorithm": "md5", - "value": "931bc15e9df35b77541d8da32310307a" - }, - "isConfigFile": false, - "path": "/usr/bin/dpkg-split" - }, - { - "digest": { - "algorithm": "md5", - "value": "b60c922390cbaaa60a28f724aebf0b3a" - }, - "isConfigFile": false, - "path": "/usr/bin/dpkg-statoverride" - }, - { - "digest": { - "algorithm": "md5", - "value": "48fe59d72e4aaf1a4d631a08ec8a623e" - }, - "isConfigFile": false, - "path": "/usr/bin/dpkg-trigger" - }, - { - "digest": { - "algorithm": "md5", - "value": "ccdf886c921ca2503e583bc8ecc2aa41" - }, - "isConfigFile": false, - "path": "/usr/bin/update-alternatives" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff2a4444fff126e0d0a727087c001953" - }, - "isConfigFile": false, - "path": "/usr/libexec/dpkg/dpkg-db-backup" - }, - { - "digest": { - "algorithm": "md5", - "value": "182aacadc848d79c8d8ac34c05649e97" - }, - "isConfigFile": false, - "path": "/usr/sbin/dpkg-fsys-usrunmess" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9a1bb27a501e5cada8f4df111eb7dec" - }, - "isConfigFile": false, - "path": "/usr/share/bug/dpkg" - }, - { - "digest": { - "algorithm": "md5", - "value": "882f693d370cce35bbe2fd7da957f45f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dpkg/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ce2fbf23b56aa55bbea412dd69ba1f7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dpkg/README.api" - }, - { - "digest": { - "algorithm": "md5", - "value": "3406b0ff214e6f5664548b30903b8156" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dpkg/README.bug-usertags.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8555d91b11108afbf494acd39cb216a8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dpkg/README.feature-removal-schedule.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "03b06dc7f263ff791a6c73bb0fc9d5bf" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dpkg/THANKS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "886d4b4c236162969893850c75504dd2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dpkg/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf2250db092ad01ac5d07a9c9992b8b5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/dpkg/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "b0c6e5a7af8570311e933114924c3921" - }, - "isConfigFile": false, - "path": "/usr/share/dpkg/abitable" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0b2c3f0ff8ece724a4f3ce006baf372" - }, - "isConfigFile": false, - "path": "/usr/share/dpkg/cputable" - }, - { - "digest": { - "algorithm": "md5", - "value": "c82f8482842da787529bdec4349bf831" - }, - "isConfigFile": false, - "path": "/usr/share/dpkg/ostable" - }, - { - "digest": { - "algorithm": "md5", - "value": "01b008f4860da246c61250a0959c2e12" - }, - "isConfigFile": false, - "path": "/usr/share/dpkg/sh/dpkg-error.sh" - }, - { - "digest": { - "algorithm": "md5", - "value": "eeecbd5d3f1eb3c5356b75ed4c723778" - }, - "isConfigFile": false, - "path": "/usr/share/dpkg/tupletable" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f97b14d6904dcc77e049e4ef0a553aa" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/dpkg" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2de9c8b0e763798fba2cb0fee3ada58" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/profiles/dpkg/main.profile" - }, - { - "digest": { - "algorithm": "md5", - "value": "cac09dad09c8d49571f45da8d711d3f9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ast/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf3726a0fb9cc9ffafd1b406e00a4d16" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bs/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9995085faad2347106dd964ffbae1234" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "082c31a45f29438411e107a0fcf66118" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ff75933b0bd89ad094482c3c0faa095" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "04766df9ae4a22cc7094d5f225a2a761" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3795b6f1c788d59b669b084f0af63597" - }, - "isConfigFile": false, - "path": "/usr/share/locale/dz/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee8f70732078155a4addb6083c920596" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8de3ce44d49038c5e6008f61fe8550ff" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1046319bfaef77107c98860f1b219867" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ee88106814944d0214ef784e18778ce" - }, - "isConfigFile": false, - "path": "/usr/share/locale/et/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "821091295e9f075a4e7dcd9a008dedad" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e1df8ce0546004145c9c6ce0519e8aa" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "10030fa2079bfd6e34dab35d032da563" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a373dd161672448f5cc0832b76d0e50" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "60be31071dda1f0ceb102ed304748167" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb8eecad88ada263958b680ed37976a5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d75f81af7c5cc5df24ca014aeea313a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "06804fb29da94a067a419e6d1de34444" - }, - "isConfigFile": false, - "path": "/usr/share/locale/km/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a1d6b5d7814337c6de6882dc261db31" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "38d3e197bb8a00a0485021d95724b3f7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ku/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc3a56aa8b07c7d494b33cf79e7a2a3c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lt/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b122f66be4c1f93f0f346a64b6e8c70" - }, - "isConfigFile": false, - "path": "/usr/share/locale/mr/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b393ec2483760402f37237dd9ec109ac" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "da208eeeafcc5f87e049e3ebf6854ac3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ne/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "98cdc7c055fed08f387a4618efcb1a46" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0891049cb5f2089e66f9ec49fc00f732" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nn/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2079fe44a024d41dd87129a40c80dca3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/oc/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f07b1fe33e126a2f9d96cb52d5a67d1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pa/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d1c723ea5e868b6422cae19b1ad3e49f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bbb01d3c225d356d42fb17e418660e56" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9aa3fd396633f2c0045d423bafd572ec" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f05ab26ab4155df24620a72183f7332" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "30322c351a8457aeee5e4402de50c4b6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8b31bd4e7ead8a917e9d8c737f8a9b0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c8bd4e990a39ee117500109a268684c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "23bd9183ac0363074af913575bd6125e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/th/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2eab79f2bf778afd98d5d2526680580" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tl/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "64bc797253c98e6ec50ddf20062b09c6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "78db69d4daf0cd605d869c1c6adaefdf" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a34c84c41cc4da298c2108a8e04fe5b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "778d34f88703943459e9a3fc001af6ba" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/dpkg.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ceff516e995499491d4991d725fb32e" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/dpkg-deb.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d0ad92fdc19dc2585fe9a366f94331b" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/dpkg-divert.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "23b9543a11def56bc33e25d955b59db3" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/dpkg-maintscript-helper.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2abeb295347a3243d482e97a26461d09" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/dpkg-query.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9580e782e452f3e49dcc11b58719c30" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/dpkg-realpath.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "acf91f84bcb6ac961f4d0cfdb649f577" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2eb155a4b32327586c78a2ff8d38ab2c" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/dpkg-statoverride.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "20c55ad376c445ac00d9d7859a48bdaa" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/dpkg-trigger.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "891aeb352eb808f7073062e5a020f862" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/dpkg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d0fefec15b5ded82e5e56adc98d3efba" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/update-alternatives.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d6eca09c9460ab0fed48cddf5f204847" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d05202a77f1771257fceac1e930244f" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/dpkg-fsys-usrunmess.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a11ac7eea07951eece2678d04eed47e9" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/start-stop-daemon.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c52c751c6af52b6dbdc847c17221a6c" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2050ce3c602ea35633fc9ab5214d8e17" - }, - "isConfigFile": false, - "path": "/usr/share/man/es/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0a721a2f929246a7d62f077851d86cd" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/dpkg-deb.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "40af0daa8f84d9f1d41ed7f72188d7c5" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/dpkg-divert.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de482b50ce4028dcfe20dd0212fbd7a6" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/dpkg-maintscript-helper.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1133fbb90e7062f6615b8b8f00be2755" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/dpkg-query.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b66e5cfd7ae4901f3d59a923c166e331" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/dpkg-realpath.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fadecc92bf666116247439897f5e3a67" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c2ac746daa95223d3208aa4abd4eff2" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/dpkg-statoverride.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "99b47e30e8550de049e5a85ee69fba0a" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/dpkg-trigger.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "653db1111ea8bff9959b3646fd14689c" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/dpkg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e4f91e7c97b61b2fd876d40c154f393" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/update-alternatives.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3285fa44a63649d26cf8756f86b1873" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4eb0d1b27fbb3769848200642caf5cba" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/dpkg-fsys-usrunmess.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8350bf7a6b6676b5cc658ad8ffddc0d8" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/start-stop-daemon.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "655842fe406402bb14ee1f7538b6a464" - }, - "isConfigFile": false, - "path": "/usr/share/man/hu/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7160bd41f4bb002cf18434f0dabbb8f" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "db6ec7578a64e59cfa1e71583e808c36" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c294e6787f49a2d643e35b25de9bec2" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "da70f2e89e62658004f42c68a7218826" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "39da116d94848fdced986cd8c71f59b3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dpkg-deb.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "611fb6898c4359cfc659cbf17cc63e0c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dpkg-divert.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b741575af0e07540b99ce1f5f8ac1e43" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dpkg-maintscript-helper.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c3b8f3a03593fd2a52e963df5b1de78d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dpkg-query.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f40273aa988196ab16d27aac335c1229" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dpkg-realpath.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fd469d97ebcfc07db4ae90fc8cb67cc" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4898bb9966031512e6e2e06c69603bf" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dpkg-statoverride.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "44f82700e534ba886e84c10d231dc474" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dpkg-trigger.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "390b8e264b4ae085bee5b08969a2eccb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dpkg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "93f4eacc3ee2eff8392f219eed19e0fd" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/update-alternatives.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6dbf770a900bf14f9c00bc7cca41e194" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c9883a754efb79a2ffda7bb3ad88fd1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/dpkg-fsys-usrunmess.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b68a70110865241a2c2aabd0b6316e5c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/start-stop-daemon.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a59948634d1d1f9d9e823ef59c199ba0" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/dpkg-deb.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a29560120224fd7b9fa7b2878a38178c" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/dpkg-divert.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f283a2fd3a5597274e7f305ff1a99fa" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/dpkg-maintscript-helper.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9663bcdaa7d802bda5877974ba9eca67" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/dpkg-query.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "77ff5cfa266250f878ab447456928865" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/dpkg-realpath.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e68271b848dd93ed01024ff70f73ae59" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "05e1cd03bf0a7bd43cbc9f56a269c5f7" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/dpkg-statoverride.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "856bf02f2a70672b8e6cf6c4d0ab7f57" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/dpkg-trigger.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e7a8810a85d35ceb0f5283e1ac15d713" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/dpkg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1303f02398b3ad52b5ad680960a19b80" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man1/update-alternatives.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cdc04daab94364c84643c36257843d93" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "07f3ddb71e6b3ae89022e24906bacdcf" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/dpkg-fsys-usrunmess.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ead4c789c4f10201ab68f4b859a7547c" - }, - "isConfigFile": false, - "path": "/usr/share/man/nl/man8/start-stop-daemon.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff18c27936fca1884402e813594131a9" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b342bd7f5cdad317f9d9ff31571448c" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "162498058efe02e45bcc8b751e1c44c2" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/dpkg-deb.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea62b22308652d5cd3b38d1515ae74b9" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/dpkg-divert.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f271fb0d20107d0b938142e1ea851a4" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/dpkg-maintscript-helper.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "857a5db7aae495e1e11a265e5c54a255" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/dpkg-query.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "19d8c4724dc9e8c1a4388bfa5b4e8ac1" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/dpkg-realpath.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de86cb436b5ed9ae2134cb57774f4510" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb0d9f98e5dacb0df7eb79e0a87c201e" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/dpkg-statoverride.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c3321af67da0087b9fe6f82eca8ba8a" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/dpkg-trigger.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "94cc594125320f8d04ec043542bff392" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/dpkg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b19132a50f98c627c103080255b57f5" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man1/update-alternatives.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a919fc360a263edbdfb7c136ec48c86" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9386614839f534299e83f7c0824a22f1" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/dpkg-fsys-usrunmess.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9922fff9fc60d59ed36bff412944db6c" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt/man8/start-stop-daemon.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "042814ad5a08fe60296fcddcf4b60229" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/dpkg-deb.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5be9bc0962789ff4e9079401191daaca" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/dpkg-divert.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0265abfcf1568712a5886a1c134b76fa" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/dpkg-maintscript-helper.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f057ca9e286c89a4361100a71ef8bd8" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/dpkg-query.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e569f7a827bfc924610b882a37780d51" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/dpkg-realpath.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6a820be71ed3a6dccc365226c2ad970" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/dpkg-split.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "748af3168869a02260a506856dfd01a8" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/dpkg-statoverride.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "56e8100d7f52ab2934e8f81c44e20568" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/dpkg-trigger.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "14fde22dd30b875e477fdfaa8cfbf951" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/dpkg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8cc2052a6c878d4370e6e1d4b3fa243" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/update-alternatives.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "35071d25345a190a035fb84aece441a0" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man5/dpkg.cfg.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de2d5f69ad6f21b3bacc3fda38cc73bd" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/dpkg-fsys-usrunmess.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f7678fed66a486a9ec8d6a9a3863a51" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/start-stop-daemon.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "54954d2b88edf5304e5891823c6b1789" - }, - "isConfigFile": false, - "path": "/usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy" - } - ], - "installedSize": 6409, - "maintainer": "Dpkg Developers \u003cdebian-dpkg@lists.debian.org\u003e", - "package": "dpkg", - "preDepends": [ - "libbz2-1.0", - "libc6 (\u003e= 2.34)", - "liblzma5 (\u003e= 5.4.0)", - "libmd0 (\u003e= 0.0.0)", - "libselinux1 (\u003e= 3.1~)", - "libzstd1 (\u003e= 1.5.2)", - "zlib1g (\u003e= 1:1.1.4)" - ], - "source": "", - "sourceVersion": "", - "version": "1.21.22" - }, - "metadataType": "dpkg-db-entry", - "name": "dpkg", - "purl": "pkg:deb/debian/dpkg@1.21.22?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.21.22" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:e2fsprogs:e2fsprogs:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "603134b12dc04fbb", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "Kazlib", - "type": "declared", - "urls": [], - "value": "Kazlib" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - ], - "spdxExpression": "Latex2e", - "type": "declared", - "urls": [], - "value": "Latex2e" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/e2fsprogs/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/e2fsprogs.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/e2fsprogs.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/e2fsprogs.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/e2fsprogs.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "logsave" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "bc533e09f3b3d96bfe1633ad57eb7026" - }, - "isConfigFile": true, - "path": "/etc/cron.d/e2scrub_all" - }, - { - "digest": { - "algorithm": "md5", - "value": "df38534cc670c70a91cf9b035845d244" - }, - "isConfigFile": true, - "path": "/etc/e2scrub.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "6a2103e33d9e48b5f6f3190045c37561" - }, - "isConfigFile": true, - "path": "/etc/mke2fs.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "5fed1684fbf97721fe17b5d450cd9328" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/e2scrub@.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "db357ec98aa91a8290dfc59fdf5cf0ef" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/e2scrub_all.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "8974b51fc7181c1efaf93832f9039e69" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/e2scrub_all.timer" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e6e28179af85df871c7b51e44b52b06" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/e2scrub_fail@.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "3425f04930cd63f2bbb700d917032e98" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/e2scrub_reap.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "1172955a6de564dd2812b9389da5987e" - }, - "isConfigFile": false, - "path": "/lib/udev/rules.d/96-e2scrub.rules" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b1427951d697e4c2d8c7d669fd36eba" - }, - "isConfigFile": false, - "path": "/sbin/badblocks" - }, - { - "digest": { - "algorithm": "md5", - "value": "7380b95f7697ccaa47cd2e8b7a30e2ad" - }, - "isConfigFile": false, - "path": "/sbin/debugfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "09f373c0b63ac97120e18b0a688d5585" - }, - "isConfigFile": false, - "path": "/sbin/dumpe2fs" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fcf90e6c9a55d8e2a1a88f3154fb7f7" - }, - "isConfigFile": false, - "path": "/sbin/e2fsck" - }, - { - "digest": { - "algorithm": "md5", - "value": "631c6a96efd83d787ef4367cecc81c34" - }, - "isConfigFile": false, - "path": "/sbin/e2image" - }, - { - "digest": { - "algorithm": "md5", - "value": "047aa2a0032ed81843af7425f3e37f8c" - }, - "isConfigFile": false, - "path": "/sbin/e2scrub" - }, - { - "digest": { - "algorithm": "md5", - "value": "81b4f2759bfc1a471cc5e040f6a402c8" - }, - "isConfigFile": false, - "path": "/sbin/e2scrub_all" - }, - { - "digest": { - "algorithm": "md5", - "value": "96d117c7685b849e60106e5fd3973df9" - }, - "isConfigFile": false, - "path": "/sbin/e2undo" - }, - { - "digest": { - "algorithm": "md5", - "value": "72ef78ad12d01248ef895b7769eee1fe" - }, - "isConfigFile": false, - "path": "/sbin/mke2fs" - }, - { - "digest": { - "algorithm": "md5", - "value": "84cc7b37fb12d92fdb3f31c8e7f7154a" - }, - "isConfigFile": false, - "path": "/sbin/resize2fs" - }, - { - "digest": { - "algorithm": "md5", - "value": "34b9aaaeaa376efe845f6390d863f4de" - }, - "isConfigFile": false, - "path": "/sbin/tune2fs" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebcf7538b6918430cfec678cbcd63508" - }, - "isConfigFile": false, - "path": "/usr/bin/chattr" - }, - { - "digest": { - "algorithm": "md5", - "value": "1404fb429cb183629340b7037f54fb44" - }, - "isConfigFile": false, - "path": "/usr/bin/lsattr" - }, - { - "digest": { - "algorithm": "md5", - "value": "731d4cdfa7f74511d554db35468c9a7c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/e2fsprogs/e2scrub_all_cron" - }, - { - "digest": { - "algorithm": "md5", - "value": "7cadd12f72ba9663414849b5abe98649" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/e2fsprogs/e2scrub_fail" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0f5da6d57ba656e2d9609eb2aad0249" - }, - "isConfigFile": false, - "path": "/usr/sbin/e2freefrag" - }, - { - "digest": { - "algorithm": "md5", - "value": "016105dfb13dc36f447125d3804dbaf3" - }, - "isConfigFile": false, - "path": "/usr/sbin/e4crypt" - }, - { - "digest": { - "algorithm": "md5", - "value": "966d491630e3da9a806077329aadeb6d" - }, - "isConfigFile": false, - "path": "/usr/sbin/e4defrag" - }, - { - "digest": { - "algorithm": "md5", - "value": "382c987cde930586cd33b33ea1b225db" - }, - "isConfigFile": false, - "path": "/usr/sbin/filefrag" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3b81a8903c786ce96e513bb6fd23141" - }, - "isConfigFile": false, - "path": "/usr/sbin/mklost+found" - }, - { - "digest": { - "algorithm": "md5", - "value": "3716adf68038098484fc9419a526433f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/e2fsprogs/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "888c04f124112b43d39a595d712a42cb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/e2fsprogs/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "5158735efd96c4aa3f42a8e100600b8b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/e2fsprogs/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1310ed8edd8d42af06394a2c050f9c8c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/e2fsprogs/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "98f1856c61406654b4097cf1a3f7dd3f" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/e2fsprogs" - }, - { - "digest": { - "algorithm": "md5", - "value": "8bda89a176a6ec1f04b14d7ce9317652" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/chattr.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b90d550d3f79d2014780ce5e477a766f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/lsattr.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e975da9e93ffe0edece4d6caaa3a3c28" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/e2fsck.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1cc9a9c5efa0582532c309e489959a15" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/ext4.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f19ae7f80b8087ebd8b9984e4d99fa69" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/mke2fs.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "907e3d0046072b4ee67c1175868091e8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/badblocks.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "14ba09019349dc8de8f14c8f02353fdb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/debugfs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce77807a77576bdb3dae9ab5f80c67bb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/dumpe2fs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ce88797d6abcd9f93bf307c2993e756" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e2freefrag.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a3a3e4fc2d2c190eb942c88433c5555" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e2fsck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6eddfd70921c0705ce7b92b85f124f6f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e2image.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4c072cee98f84bf515771a7753c75ed" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e2label.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "81a634cb7d584a65632070e26ea214bd" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e2mmpstatus.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b74535c2dab569e6658cc01f446ce4fb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e2scrub.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5eb6ae9e59c5e5f1e3fac1fbe055e62" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e2scrub_all.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2c5fc7e7a4f03a749cad8e2bbae3c2b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e2undo.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0b6f092e933afdcb2b5edf933b6fc7e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e4crypt.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9529eedb97b9ec5145f6ba55d2dcaa6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/e4defrag.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7ab2795e282189ab647bc01cda1e034e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/filefrag.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3b1a6fe166251596a0e3acd3089af4b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/mke2fs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4021fa58f124bd7353cf6ab2ab60315a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/mklost+found.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "badaf2c6e8183f0a90a985327e37ce36" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/resize2fs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3706f1ec6bf1981df72cc335e40ea8b8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/tune2fs.8.gz" - } - ], - "installedSize": 1496, - "maintainer": "Theodore Y. Ts'o \u003ctytso@mit.edu\u003e", - "package": "e2fsprogs", - "preDepends": [ - "libblkid1 (\u003e= 2.36)", - "libc6 (\u003e= 2.34)", - "libcom-err2 (\u003e= 1.43.9)", - "libext2fs2 (= 1.47.0-2)", - "libss2 (\u003e= 1.38)", - "libuuid1 (\u003e= 2.16)" - ], - "source": "", - "sourceVersion": "", - "version": "1.47.0-2" - }, - "metadataType": "dpkg-db-entry", - "name": "e2fsprogs", - "purl": "pkg:deb/debian/e2fsprogs@1.47.0-2?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.47.0-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:findutils:findutils:4.9.0-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "c25bb66032b208ef", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "FSFAP", - "type": "declared", - "urls": [], - "value": "FSFAP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "FSFULLR", - "type": "declared", - "urls": [], - "value": "FSFULLR" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "GFDL-1.3-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GFDL-NIV-1.3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/findutils/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/findutils.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/findutils.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "77c69f8faad395a584cc682952786dfc" - }, - "isConfigFile": false, - "path": "/usr/bin/find" - }, - { - "digest": { - "algorithm": "md5", - "value": "ae9ab3b8498cea8fce2c31ee287dac51" - }, - "isConfigFile": false, - "path": "/usr/bin/xargs" - }, - { - "digest": { - "algorithm": "md5", - "value": "f78e2d4189be58135a915698efe1cd7a" - }, - "isConfigFile": false, - "path": "/usr/share/doc-base/findutils.findutils" - }, - { - "digest": { - "algorithm": "md5", - "value": "75ca1d03fcbb9d988ff479d6c9ca6349" - }, - "isConfigFile": false, - "path": "/usr/share/doc/findutils/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd89a9df9396614704073d690617af10" - }, - "isConfigFile": false, - "path": "/usr/share/doc/findutils/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1dee84120f907a8a0c98300a4bd8f70e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/findutils/README.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "95c7c4265ee5c7b9e67d0183d25c13d9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/findutils/TODO" - }, - { - "digest": { - "algorithm": "md5", - "value": "2815f2e3daaade334f2bb682deb72cec" - }, - "isConfigFile": false, - "path": "/usr/share/doc/findutils/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "88586ad5c040cc3dd3ec205a1117addd" - }, - "isConfigFile": false, - "path": "/usr/share/doc/findutils/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f8dbd7d4e91c384f4cd76a9234ffdfb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/findutils/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "495db52f99bd799da1a2c4c8177d116d" - }, - "isConfigFile": false, - "path": "/usr/share/info/find-maint.info.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4a5639962311edf0dffca95fb7f5534" - }, - "isConfigFile": false, - "path": "/usr/share/info/find.info-1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9d5adafc1cd14c179e8306345cb5c19" - }, - "isConfigFile": false, - "path": "/usr/share/info/find.info-2.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3977fd270ea225601ed2fe1e363bd7d4" - }, - "isConfigFile": false, - "path": "/usr/share/info/find.info.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "da0b43bb3ab589cee0d08fac9eacd374" - }, - "isConfigFile": false, - "path": "/usr/share/locale/be/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "705805c4912d21bb0ccd0f463a8d6e5e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e049a51bac1463e942302aa79662c70" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "932234736a5f8a20c7a28fba77842363" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee2e47c6a5fd1a211188e62119928e23" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "520fa532abcb646e0f43cdaf6aee41d3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6397ef848f38bedfd0deababa076b29" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "afa1daa74522ffd5efaa48fcf0dbbd21" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf3fba2b57bd43ba5ceb53f08eec4d70" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "125a3643ebac3094098ae386bea23e6e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/et/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b591083bda12033fdb57cec60735fce" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a61cecb7ac19508f2a6c90ca3aefe4b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2969f24f51d6f519cbeffd60fdb73158" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ga/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "70363a8bf3c1f5cae5a0e7de27b2adc0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad484875bf02434e68673415195c553b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "88cd877029212d48ee2fc054e532688d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b5294097078cfb97fe9aac16423657d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "276a3610103231a25b54f751d69fdd48" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f330a82946084d650236fd55d308e999" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d57e7bc20e23f680e291cb208382bd3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e39a70f1fd80b5452a3d7364cd6f3a5a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lg/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "99cd315f836f6b19f9cb57416fcc9984" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lt/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad8a27e26854aeddb2a68bc02fc5b28d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ms/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e575694e26fd089a38f6fd639e0b53fa" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7281681a563f06785bd0bba229e49ca4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ddeb79f00ee44ac945960e5976c0837" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d37bc4db999f689042cad033c1c9479a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc91c0952b509f220b7fd31e058a9d31" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d81b2bd19c0e3196b03afc59ad7c542" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5754d744f18a55c0e028b4e7fadac92f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "596a1d5a98421d1748a17edbe40588f5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a74dcf106a74726e261ab295ea907775" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d6713fcc97d5ade0d93ce8edebf0bb9d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c629c57bccd46dbf98a422c1cdd9989" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2940da17dc54330849e344698d2cf73d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "25360400cfa36eaa68f33eaccdd8615b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "789c178a903be7f536cffb6c0c2a3781" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f1630e916ce1bf0647336c335b1b4fd7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "11192422c355a4c9b1422ae06e77f681" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/findutils.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b11a525cf7a5e5267875da2f1468ded" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/find.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2c12ccddd7641e2fd435472784da852" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/xargs.1.gz" - } - ], - "installedSize": 1746, - "maintainer": "Andreas Metzler \u003cametzler@debian.org\u003e", - "package": "findutils", - "preDepends": [ - "libc6 (\u003e= 2.34)", - "libselinux1 (\u003e= 3.1~)" - ], - "source": "", - "sourceVersion": "", - "version": "4.9.0-4" - }, - "metadataType": "dpkg-db-entry", - "name": "findutils", - "purl": "pkg:deb/debian/findutils@4.9.0-4?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "4.9.0-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:fontconfig-config:fontconfig-config:2.14.1-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fontconfig-config:fontconfig_config:2.14.1-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fontconfig_config:fontconfig-config:2.14.1-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fontconfig_config:fontconfig_config:2.14.1-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fontconfig:fontconfig-config:2.14.1-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fontconfig:fontconfig_config:2.14.1-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "57716f30a2ad314c", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/fontconfig-config/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/fontconfig-config/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/fontconfig-config.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/fontconfig-config.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/fontconfig-config.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/fontconfig-config.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "debconf (\u003e= 0.5) | debconf-2.0", - "fonts-dejavu-core | ttf-bitstream-vera | fonts-liberation | fonts-liberation2 | fonts-croscore | fonts-freefont-otf | fonts-freefont-ttf | fonts-urw-base35 | fonts-texgyre" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "ad6182d0b838d9d8f39219a37b88b24d" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.d/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "9632eb1c8b4d81e0e300cd733a4beefe" - }, - "isConfigFile": true, - "path": "/etc/fonts/fonts.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "30ba0f755dfdf5e8a335be15958ad5e0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fontconfig-config/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3fc5adb2d3dd28df1f7af89317e98d6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fontconfig-config/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ffc010f3b92c1f32a60a4edf138c7b9a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fontconfig-config/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4648df9e8d6215ae7dd16ce863b16967" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fontconfig-config/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "3afa30c28051ba4ceb3e1979fc460bee" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/05-reset-dirs-sample.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e7985a85a60dad1b44aee2f418eaa0c" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/09-autohint-if-no-hinting.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7001cead7c337fa02359926c4d71dfa" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-autohint.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7bed3a1b6716b8d87c528bd7db0e59e" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-hinting-full.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa8777b5ef1afba5d935f3b6475a03c7" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-hinting-medium.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fdd0076e7874521576de0ede438ad0b" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-hinting-none.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "5da52d777c5af2cb4b7445b81ead6c3d" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-hinting-slight.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "abc0049fafa172cef7723547b8984c02" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-no-antialias.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b917873967397433a44ddff38568ce8" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "8588f87eaf68a1eb73920066f6817b48" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e33def77f5a7a289d240b903d669561" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "e58e3be3a96cfa19b6cc53f27845e65a" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "b889df9e6b61c11ad86f906a4bf2450a" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b863fb3d17c36dfbe7f496dc9c73107" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "67a28bdc6fd1289bd6eb22de56516fae" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-unhinted.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "908d9e324c24bf809448ca7041db580b" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/10-yes-antialias.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "4dd5ffa8e7c3448e76fe1bbe2f3df871" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "103cccfe6ec9df81d344fe010ad4f002" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "93991270f397bea2c965a8c97a0fa50e" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "535df1a3aed553ced27e176639e4b541" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "99badbcb331e7195fe0f66430413375f" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "7be41db6d316caacc8978247ff444f29" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/30-metric-aliases.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e33e79a78bc52268c24a0067394bdcd" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/35-lang-normalize.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "c3cf056712b96dbef771f29c6b1d0655" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/40-nonlatin.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "6eb7544e52701729de1bc87c7e03b155" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/45-generic.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4d73455619dd836ecd6c711d7d6b522" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/45-latin.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ef1b86cdc752b8765d2d1531e799cc1" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/48-spacing.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb5873c73e8ea39848ffb07a8d87d8cb" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/49-sansserif.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "acde2cbca39bb6261deea4e6e4bf597e" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/50-user.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "99b54670882634722fada39c78a39863" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/51-local.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "381ad51b6c9a0c578c7176ae47481985" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/60-generic.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "887f091506809fe493dd452a40cf97ab" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/60-latin.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "b04584ac948140f0c6af958b87f0a734" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/65-fonts-persian.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "b1c4fab66d44c99bfaf07ca5719fe645" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/65-khmer.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c99b94356bc5b76767ccfbc8651ba21" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/65-nonlatin.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "50c85de35a0dc211f7222ae974df7f3a" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/69-unifont.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9866f60b8a23e11e4fbb952e10c910c" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/70-force-bitmaps.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "4076437ae2a2d0fd638d529303affbc3" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/70-no-bitmaps.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "91c414090c7d8bfe557785fe845cb6bd" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf3e2f77fdab77b46f9f793dcfa267f8" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/80-delicious.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "3202b57ed004b0828d6e2e70f56d951d" - }, - "isConfigFile": false, - "path": "/usr/share/fontconfig/conf.avail/90-synthetic.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5858ae11e08c1c789fb0fc2e4fccefe" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/fonts-conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c84e0b58247e55e588812313b545636" - }, - "isConfigFile": false, - "path": "/usr/share/xml/fontconfig/fonts.dtd" - } - ], - "installedSize": 527, - "maintainer": "Debian freedesktop.org maintainers \u003cpkg-freedesktop-maintainers@lists.alioth.debian.org\u003e", - "package": "fontconfig-config", - "source": "fontconfig", - "sourceVersion": "", - "version": "2.14.1-4" - }, - "metadataType": "dpkg-db-entry", - "name": "fontconfig-config", - "purl": "pkg:deb/debian/fontconfig-config@2.14.1-4?arch=amd64\u0026upstream=fontconfig\u0026distro=debian-12", - "type": "deb", - "version": "2.14.1-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:fonts-dejavu-core:fonts-dejavu-core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fonts-dejavu-core:fonts_dejavu_core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fonts_dejavu_core:fonts-dejavu-core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fonts_dejavu_core:fonts_dejavu_core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fonts-dejavu:fonts-dejavu-core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fonts-dejavu:fonts_dejavu_core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fonts_dejavu:fonts-dejavu-core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fonts_dejavu:fonts_dejavu_core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fonts:fonts-dejavu-core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:fonts:fonts_dejavu_core:2.37-6:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "3aff051b7736e3f5", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/fonts-dejavu-core/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/fonts-dejavu-core/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/fonts-dejavu-core/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/fonts-dejavu-core/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/fonts-dejavu-core/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/fonts-dejavu-core/copyright" - } - ], - "spdxExpression": "Bitstream-Vera", - "type": "declared", - "urls": [], - "value": "bitstream-vera" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/fonts-dejavu-core/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/fonts-dejavu-core/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/fonts-dejavu-core.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/fonts-dejavu-core.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/fonts-dejavu-core.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/fonts-dejavu-core.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "10d6f2176d76ee9b89a19a17811257f2" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans-mono.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "6488b24401e477e35aa71237054c8ada" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "0b01522fe76b4e5b8ab3d12383371348" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-serif.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "0cbf30e4580c5a8570da071ab12c5e4d" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-sans-mono.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7df7bba810dd953dd78212900f4dcad" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-sans.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "e90c678d46f49bb9d6ba469b64e80c0c" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-serif.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9a76edd2aeb35cd1095e378963e2cdd" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/57-dejavu-sans-mono.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "2156c2353cfcc81f33150cf889193c28" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/57-dejavu-sans.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "2604487cb2eee1bdb7010ea716faf408" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/57-dejavu-serif.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2ee39274982cb4f831783cff742c8bc" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/58-dejavu-lgc-sans-mono.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4a8f51e45aa24fdee47b3f838cc0205" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/58-dejavu-lgc-sans.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f0b00e681b1f40b65dd336696ee0bbb" - }, - "isConfigFile": true, - "path": "/etc/fonts/conf.avail/58-dejavu-lgc-serif.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "147b1c34c0fd7f4751eabd68e2f636c5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fonts-dejavu-core/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "c094fff4e830eb0a35b7943d21c412a6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fonts-dejavu-core/BUGS" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e6462f9829f856f95029bfb6a24bcb6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fonts-dejavu-core/README.md" - }, - { - "digest": { - "algorithm": "md5", - "value": "015f86f22d95f7e7da7c1923fb118ff1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fonts-dejavu-core/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "977f07c5be6cdd8cf34b01f1e570e724" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fonts-dejavu-core/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "425865e1c534c5788b1341d401f131d9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fonts-dejavu-core/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "4609bc6bab86bae194ce03c107ad48b0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fonts-dejavu-core/langcover.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6a81d94b8e87e41cca4085ed4ac71dd" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fonts-dejavu-core/status.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f3c578b962e138887621a5f8a2dceb9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/fonts-dejavu-core/unicover.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf697586f59d0e1457c86b7b2dabacad" - }, - "isConfigFile": false, - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf" - }, - { - "digest": { - "algorithm": "md5", - "value": "4cc160d1da14d4598cef75f69c3c6385" - }, - "isConfigFile": false, - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d374321996a45a6345b97224deafbce" - }, - "isConfigFile": false, - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf" - }, - { - "digest": { - "algorithm": "md5", - "value": "dbb96297cc09a88cca3d6394ba81f986" - }, - "isConfigFile": false, - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ffa57f6833dbddfac376e25024fb012" - }, - "isConfigFile": false, - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf" - }, - { - "digest": { - "algorithm": "md5", - "value": "c1ae83f7906cccd91659f2e61f93a2ba" - }, - "isConfigFile": false, - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf" - } - ], - "installedSize": 2960, - "maintainer": "Debian Fonts Task Force \u003cdebian-fonts@lists.debian.org\u003e", - "package": "fonts-dejavu-core", - "source": "fonts-dejavu", - "sourceVersion": "", - "version": "2.37-6" - }, - "metadataType": "dpkg-db-entry", - "name": "fonts-dejavu-core", - "purl": "pkg:deb/debian/fonts-dejavu-core@2.37-6?arch=all\u0026upstream=fonts-dejavu\u0026distro=debian-12", - "type": "deb", - "version": "2.37-6" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:gcc-12-base:gcc-12-base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gcc-12-base:gcc_12_base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gcc_12_base:gcc-12-base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gcc_12_base:gcc_12_base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gcc-12:gcc-12-base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gcc-12:gcc_12_base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gcc_12:gcc-12-base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gcc_12:gcc_12_base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gcc:gcc-12-base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gcc:gcc_12_base:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2d9c105581cbe6a2", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/gcc-12-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Artistic" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gcc-12-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "GFDL-1.2-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gcc-12-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gcc-12-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gcc-12-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gcc-12-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/gcc-12-base/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/gcc-12-base:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/gcc-12-base:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "529a8596b6ec08c5d43aa0c4d4114ec3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gcc-12-base/README.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8afe308ec72834f3c24b209fbc4d149e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gcc-12-base/TODO.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "59f07beb9c9a458c3f4488523d4fdc84" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gcc-12-base/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "07a02c5ec7c91711d0229d4e36fed9a2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "installedSize": 100, - "maintainer": "Debian GCC Maintainers \u003cdebian-gcc@lists.debian.org\u003e", - "package": "gcc-12-base", - "source": "gcc-12", - "sourceVersion": "", - "version": "12.2.0-14" - }, - "metadataType": "dpkg-db-entry", - "name": "gcc-12-base", - "purl": "pkg:deb/debian/gcc-12-base@12.2.0-14?arch=amd64\u0026upstream=gcc-12\u0026distro=debian-12", - "type": "deb", - "version": "12.2.0-14" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:gettext-base:gettext-base:0.21-12:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gettext-base:gettext_base:0.21-12:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gettext_base:gettext-base:0.21-12:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gettext_base:gettext_base:0.21-12:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gettext:gettext-base:0.21-12:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:gettext:gettext_base:0.21-12:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "732de2031e7334e7", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/gettext-base/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/gettext-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GFDL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gettext-base/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/gettext-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gettext-base/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/gettext-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/gettext-base/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/gettext-base/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/gettext-base.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/gettext-base.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "2cf3977e0690ff02dd5bb54aa9727512" - }, - "isConfigFile": false, - "path": "/usr/bin/envsubst" - }, - { - "digest": { - "algorithm": "md5", - "value": "65b7f91c1b8b201acee86c1492bf3221" - }, - "isConfigFile": false, - "path": "/usr/bin/gettext" - }, - { - "digest": { - "algorithm": "md5", - "value": "141821d75678d2bec4a1b14054a0c2b4" - }, - "isConfigFile": false, - "path": "/usr/bin/gettext.sh" - }, - { - "digest": { - "algorithm": "md5", - "value": "d8eeeb0f388ccce44225a4edaa70abef" - }, - "isConfigFile": false, - "path": "/usr/bin/ngettext" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8379015c0e4d1221c386a8fff0fcb9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gettext-base/ABOUT-NLS" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e5c8ed9d66deb61e613c0656f5114e1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gettext-base/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6f85cd7ffbac494a4eb00369559bda2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gettext-base/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1fc667775f1b5bb4d2e8a59736f82f34" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gettext-base/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "89d1c41ed2c8cf3a2cced0e5797ac724" - }, - "isConfigFile": false, - "path": "/usr/share/java/libintl-0.21.jar" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e788b97599d7c00f335ce6c25427682" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/gettext-base" - }, - { - "digest": { - "algorithm": "md5", - "value": "271b92d858c96c76bc815cac9020a97d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ast/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb6f4dda00ab14991ef16012d94b1cc6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/be/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "37bb3b4ab564655d25ba80dc37b1090f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "39f9ee9b0ffc12659c709bed583aaa7d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "dafb13fd043ed5f0ea6927404456317f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "eadb0cf72a43344d4ec15899cdd2d3d5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "24e429512e04c6c5f52b64d3edbdc2eb" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b78c32873836c4bcba7a228fd39748de" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f0b0fa3cfc9536113420b1f20a0166e9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "96dd7b20aa123b8896035b577f83ba72" - }, - "isConfigFile": false, - "path": "/usr/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "dfe8fbfb24ab3733d798dadcc657dc87" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2a0106d8bcbf804879afe34094bf321" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2213c348a7e3f55d70c38d714a2d5d8c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/et/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "23a2378c39aa393aec59630470ad6a10" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "09708d4b994e6fa7a59fa19ccb78a82c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b18efcc9bf12fc8dbb83d5bb89388fa0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ga/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c7cc7e6c969716c1869ef444e220f08" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c1cb4deb041a158a212077f194f415c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "95e3d3d9fd7959288f7555836728616e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "38e22753b1c4362657010c467c15db0d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d8ed72cfd78d89846e17ec6aea5f2ced" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf38a296aca2860708f16b653aba313a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2eb43de2274b52d789416364a850bd1f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0cd791790ba7fc29ffbbdd11ec861312" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c0f6707fcebeaf1883e2439305e895e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "df3b4d28edd689bfc3230d09e9994360" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nn/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "49affbc30831358f16b956e428284b4a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a575dfc7c9bd2269facb0295701d8cb9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf505d1b3ee9270c7957d0966b46e80d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e3d2ac50579a5932bdbe7227f71a095" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec113491493a417c39c80174e539a3ed" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "309c8305ec3f1c5eb9fac03bd9b35481" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "70e40e49b52ceec0282636236d6c1887" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d06062b47c67f6eb2fe688434fe9c874" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "966c77019c93d526caa6bb1dd527e9f5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d079a9bdf0dafc0bb9e1fe9c4466d691" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ddfb686efaecb43cea6bcf853256932b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff81391e69acd9f3002ca7e389899e41" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5bab76dd3f903793c50d3881bb7a424" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7b01e9b174c1c8bc900e9f4c50625b9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f9dc5c4aeaa812a7a43ed967489e8b1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7dfc89205cb8bb0361dae3376138b9d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/envsubst.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3bf4691d4d884cd65f922163657f7b84" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/gettext.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "77da4e025c9a98eb448c5c4c50fff468" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/ngettext.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dec8b6a12a856fcece6da783a5437f9f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man3/bind_textdomain_codeset.3.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0b07262e5a833ef496513046ea206fb8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man3/bindtextdomain.3.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "49cba0ff214bfd33b3449cbca915dcd7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man3/gettext.3.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b8cae34f8082a06ba777daecf0de69e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man3/ngettext.3.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b78da84897011956d514e04061a4e4b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man3/textdomain.3.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8fbb0067d3b42b80265ca55e7529c3b" - }, - "isConfigFile": false, - "path": "/usr/share/maven-repo/org/gnu/gettext/libintl/0.21/libintl-0.21.pom" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b4c58683868c04fbc5811af1e8fbae8" - }, - "isConfigFile": false, - "path": "/usr/share/maven-repo/org/gnu/gettext/libintl/debian/libintl-debian.pom" - } - ], - "installedSize": 645, - "maintainer": "Santiago Vila \u003csanvila@debian.org\u003e", - "package": "gettext-base", - "source": "gettext", - "sourceVersion": "", - "version": "0.21-12" - }, - "metadataType": "dpkg-db-entry", - "name": "gettext-base", - "purl": "pkg:deb/debian/gettext-base@0.21-12?arch=amd64\u0026upstream=gettext\u0026distro=debian-12", - "type": "deb", - "version": "0.21-12" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:gpgv:gpgv:2.2.40-1.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2bba05a28999480c", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "CC0-1.0", - "type": "declared", - "urls": [], - "value": "CC0-1.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "RFC-Reference" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "TinySCHEME" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "permissive" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/gpgv/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/gpgv.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/gpgv.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libbz2-1.0", - "libc6 (\u003e= 2.34)", - "libgcrypt20 (\u003e= 1.10.0)", - "libgpg-error0 (\u003e= 1.42)", - "zlib1g (\u003e= 1:1.1.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "10e203f4bafa865daff023eb9a7aa0b0" - }, - "isConfigFile": false, - "path": "/usr/bin/gpgv" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b9684184004bcc1c23f712e7a057733" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gpgv/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d50de62561f98a1bba547c0429f39159" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gpgv/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0f5ed1ea32f61695d73b5994cbfea2f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gpgv/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "804812f818f3adf1ce87b47311b32bf0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gpgv/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e5a0e1e3de8bc9b88282c8876cb4b98" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/gpgv.1.gz" - } - ], - "installedSize": 917, - "maintainer": "Debian GnuPG Maintainers \u003cpkg-gnupg-maint@lists.alioth.debian.org\u003e", - "package": "gpgv", - "source": "gnupg2", - "sourceVersion": "", - "version": "2.2.40-1.1" - }, - "metadataType": "dpkg-db-entry", - "name": "gpgv", - "purl": "pkg:deb/debian/gpgv@2.2.40-1.1?arch=amd64\u0026upstream=gnupg2\u0026distro=debian-12", - "type": "deb", - "version": "2.2.40-1.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:grep:grep:3.8-5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a8613391d2f5a59d", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/grep/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/grep/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/grep/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/grep/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/grep/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/grep/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/grep.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/grep.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "dpkg (\u003e= 1.15.4) | install-info" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "66c2dba5f7a4da50676c2be1250ee661" - }, - "isConfigFile": false, - "path": "/bin/egrep" - }, - { - "digest": { - "algorithm": "md5", - "value": "3572d58e12b0784accb464a3d5d5be21" - }, - "isConfigFile": false, - "path": "/bin/fgrep" - }, - { - "digest": { - "algorithm": "md5", - "value": "9044f3a43fb79a597c5e489b207fdd36" - }, - "isConfigFile": false, - "path": "/bin/grep" - }, - { - "digest": { - "algorithm": "md5", - "value": "449ab80d285c0965c814c89a8264a6a1" - }, - "isConfigFile": false, - "path": "/usr/bin/rgrep" - }, - { - "digest": { - "algorithm": "md5", - "value": "bafa6c8275ee5c1769fe794e25a44eb9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/grep/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c1fcef1234a7b9b1c52c49ef557dd6b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/grep/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f514deb524b2b7473e43757013ba7aa9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/grep/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "97586c37851e31d3dc44e6c5c19953ed" - }, - "isConfigFile": false, - "path": "/usr/share/doc/grep/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9983183ceb14295d1b89bbc2b8e2623" - }, - "isConfigFile": false, - "path": "/usr/share/doc/grep/THANKS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "06c9cd0e349945bb2acbc465c59a7a08" - }, - "isConfigFile": false, - "path": "/usr/share/doc/grep/TODO.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6fb46d0ac1e19af2a3a23963c511cf50" - }, - "isConfigFile": false, - "path": "/usr/share/doc/grep/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f79f928e2d390395a0c5d966b0cbd9a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/grep/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "df9ea9a97934e5cf5b5c891da90ec2bb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/grep/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "dace1cb7faebcc56f45901bdadca8b3b" - }, - "isConfigFile": false, - "path": "/usr/share/info/grep.info.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7289db496c3097c4a4cba6a2e602e0b3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/af/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e05c3eabb84f5825066719a450994cc" - }, - "isConfigFile": false, - "path": "/usr/share/locale/be/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "513af31ab20377d3e529d042ced6b1d6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5d942a40e6b61d3b23136b1d35d220a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6b6c164257dbdfd1c2d426f372036c4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed5c7ad55f64312ee505b9b1f1869170" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3091f59dde10abd1c1a64299fe0fa0a1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f82f9ce8a806a9d3415d1dec638eda8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ade10cfaff0bbae799de2cbd4d6b7600" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c12f92b000650b0a71c33c3e28c6fd5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb8910d1716bd9f98015e0beff2a96b2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/et/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "38d609d45094f1271a8ed44dde7c636c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ec969ca7ea61a7c8af5ee510a48cf68" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "422b0a7039bcf9f8d78d90fd792e9a2d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e90e8401f7ef15c79bb80eea081ebae4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ga/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d73ff06a4408525998dcc7289275c78d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "72f3cff22e2f3a559bc21ed92b60d714" - }, - "isConfigFile": false, - "path": "/usr/share/locale/he/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5a3a4f6194d9e8bab66956d213dc79c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "72b40e88082ac82ca6bffaf2fb3214ee" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "51db2b9717b1a3647de327900fa27e9b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2492c13871de0fc0272e92247b5a162b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e607b1c643a205ae02780ad57404fd95" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "33789a4bd18b3ae589899720792093f9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ka/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9bef51c5d70caa8989fc6f079bf0b28e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "41c0c2f02bc98ae5a4850dbe1b7eff0a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ky/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a3cd4b90210f29d570e98e93b8ee96f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lt/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d2c1c5e67930c8823b2453d5fd0fb7a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7f982da6559b9addfa2a23fa5d0a484" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "65f8cb92c9e5e141096147b0fa1273d3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pa/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6efdc8176d6c0b308ff0d738bb9987d7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f150ec68a1a2f3280e287cab15384b8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bfd8312b7ba16683c21b8b8bfe764162" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f60d7c2270558ff4adb33c25ff94955" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a11cd64b5a53d8c57aa3c18308d042dd" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0716baba5ba37cfc9e87aadbfd16ff63" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9efd20deb0febb3e0c9d5cf98fc0647f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "636f07dbf266c70d79952964ad1c39f7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f25f556d5b8169f0481baa46758a12f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "36067efe0ef75ee4190f531903f2632e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ta/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b714c725a7c78759abd83d5d2363aac" - }, - "isConfigFile": false, - "path": "/usr/share/locale/th/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4dd8abc3227f45416c8c43a3d78a84dd" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1acd2878ff4ede421f6d6019ce9caeed" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4458a87592e408e86123ecd3b6ea01ab" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8cfd85f9ecbffb14b5967ced8ebcdacd" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "52243225be37c47567d598e90f7b78a0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/grep.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2dc671967bdb5625a0191693333f05d2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/grep.1.gz" - } - ], - "installedSize": 1245, - "maintainer": "Anibal Monsalve Salazar \u003canibal@debian.org\u003e", - "package": "grep", - "preDepends": [ - "libc6 (\u003e= 2.34)", - "libpcre2-8-0 (\u003e= 10.32)" - ], - "provides": [ - "rgrep" - ], - "source": "", - "sourceVersion": "", - "version": "3.8-5" - }, - "metadataType": "dpkg-db-entry", - "name": "grep", - "purl": "pkg:deb/debian/grep@3.8-5?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "3.8-5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:gzip:gzip:1.12-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "c6ca962da553aeaa", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/gzip/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gzip/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "FSF-manpages" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gzip/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gzip/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GFDL-1.3+-no-invariant" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gzip/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gzip/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GFDL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gzip/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gzip/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/gzip/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gzip/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/gzip/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gzip/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/gzip.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/gzip.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "dpkg (\u003e= 1.15.4) | install-info" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "f1c94a9ff82904934a5269edbc8356ec" - }, - "isConfigFile": false, - "path": "/bin/gunzip" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ede9e20fdee2e757019cba41d9e9d10" - }, - "isConfigFile": false, - "path": "/bin/gzexe" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b7aad10291e9314b8c56686cbac070c" - }, - "isConfigFile": false, - "path": "/bin/gzip" - }, - { - "digest": { - "algorithm": "md5", - "value": "f1c94a9ff82904934a5269edbc8356ec" - }, - "isConfigFile": false, - "path": "/bin/uncompress" - }, - { - "digest": { - "algorithm": "md5", - "value": "061181e78f3cc1557e29194b347599e8" - }, - "isConfigFile": false, - "path": "/bin/zcat" - }, - { - "digest": { - "algorithm": "md5", - "value": "f82a5e5c1545bc920a3d3850517c9d24" - }, - "isConfigFile": false, - "path": "/bin/zcmp" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2d7159602bf4037745876e218e72c85" - }, - "isConfigFile": false, - "path": "/bin/zdiff" - }, - { - "digest": { - "algorithm": "md5", - "value": "00a56ed99986d72fd5967de74d69470c" - }, - "isConfigFile": false, - "path": "/bin/zegrep" - }, - { - "digest": { - "algorithm": "md5", - "value": "997a6cfb1a2b3f88160ffa320d29d735" - }, - "isConfigFile": false, - "path": "/bin/zfgrep" - }, - { - "digest": { - "algorithm": "md5", - "value": "5c5115c730925bc2e10460b0d6a9fd5e" - }, - "isConfigFile": false, - "path": "/bin/zforce" - }, - { - "digest": { - "algorithm": "md5", - "value": "2036a2daee5ab91af4cd3e4baa892f12" - }, - "isConfigFile": false, - "path": "/bin/zgrep" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f85b9f0dc0563a5fa881c820d9001b6" - }, - "isConfigFile": false, - "path": "/bin/zless" - }, - { - "digest": { - "algorithm": "md5", - "value": "19326a5a1e8b5715e36b18125dfd1931" - }, - "isConfigFile": false, - "path": "/bin/zmore" - }, - { - "digest": { - "algorithm": "md5", - "value": "82f9a805e027f3bb9a6e3fd7b0ba5fba" - }, - "isConfigFile": false, - "path": "/bin/znew" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6415c3d1cfe29a65d658a50a26ec21d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gzip/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d0667ee3999d7389b96fcf5ee44aa627" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gzip/README.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e7b4329fd58dfefe6dea15c51572157" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gzip/TODO" - }, - { - "digest": { - "algorithm": "md5", - "value": "afb24b831b046da6e734bf6be331c1ae" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gzip/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4c94fe2fb0958ee1490394b69590e53" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gzip/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aef1431202a7c919541f623c34fc4f1f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/gzip/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "68b2b7d60f5f5754c775ba84afbf3e6d" - }, - "isConfigFile": false, - "path": "/usr/share/info/gzip.info.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "171c50cf652e2516b92ea07e26abebc9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/gzexe.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d2a7bcc7fbb0004c888e55d38e91f5b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/gzip.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6f9e6e3a3141d815e359544992543b5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/zdiff.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7d7b5db46c9ff51e80c6ccbde54d37f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/zforce.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fea039ae5b48e08831b129560ffd4b4e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/zgrep.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "808833ed4c043b50881394dc7d46c614" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/zless.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8177ea9aa9e26c191428d8575c56d1b0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/zmore.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5146e40980535083365ed032b1d2b671" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/znew.1.gz" - } - ], - "installedSize": 252, - "maintainer": "Milan Kupcevic \u003cmilan@debian.org\u003e", - "package": "gzip", - "preDepends": [ - "libc6 (\u003e= 2.33)" - ], - "source": "", - "sourceVersion": "", - "version": "1.12-1" - }, - "metadataType": "dpkg-db-entry", - "name": "gzip", - "purl": "pkg:deb/debian/gzip@1.12-1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.12-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:hostname:hostname:3.23\\+nmu1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ade4f6873a3cf602", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/hostname/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/hostname/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/hostname/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/hostname/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/hostname.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/hostname.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "84663f46a29817d9b0641f960a551cdb" - }, - "isConfigFile": false, - "path": "/bin/hostname" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b67f29831c771772fa9f620058f7f3e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/hostname/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "38d7f0ebe02018e4d475d491012a146c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/hostname/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "62e6be6a928b4b9f2a985778fee171fd" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/hostname.1.gz" - } - ], - "installedSize": 46, - "maintainer": "Michael Meskes \u003cmeskes@debian.org\u003e", - "package": "hostname", - "preDepends": [ - "libc6 (\u003e= 2.34)" - ], - "source": "", - "sourceVersion": "", - "version": "3.23+nmu1" - }, - "metadataType": "dpkg-db-entry", - "name": "hostname", - "purl": "pkg:deb/debian/hostname@3.23+nmu1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "3.23+nmu1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:init-system-helpers:init-system-helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:init-system-helpers:init_system_helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:init_system_helpers:init-system-helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:init_system_helpers:init_system_helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:init-system:init-system-helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:init-system:init_system_helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:init_system:init-system-helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:init_system:init_system_helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:init:init-system-helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:init:init_system_helpers:1.65.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "08222e193e6de8c6", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/init-system-helpers/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/init-system-helpers/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/init-system-helpers/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/init-system-helpers/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/init-system-helpers/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/init-system-helpers/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/init-system-helpers/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/init-system-helpers/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/init-system-helpers.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/init-system-helpers.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "depends": [ - "usrmerge | usr-is-merged" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "b7de0a06b2b92f3daa66fc4330a46a65" - }, - "isConfigFile": false, - "path": "/usr/bin/deb-systemd-helper" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc6c86c8342c3abaea0283e3be10b80f" - }, - "isConfigFile": false, - "path": "/usr/bin/deb-systemd-invoke" - }, - { - "digest": { - "algorithm": "md5", - "value": "43d2ad4ef102569eaa304402f81a8131" - }, - "isConfigFile": false, - "path": "/usr/sbin/invoke-rc.d" - }, - { - "digest": { - "algorithm": "md5", - "value": "09a234ef023ca6ecd11c45ba29985688" - }, - "isConfigFile": false, - "path": "/usr/sbin/service" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7d8b9c8c0aba2003541a4c470cf567c" - }, - "isConfigFile": false, - "path": "/usr/sbin/update-rc.d" - }, - { - "digest": { - "algorithm": "md5", - "value": "c52c0f837f72458df77a99bca36cd855" - }, - "isConfigFile": false, - "path": "/usr/share/bug/init-system-helpers/control" - }, - { - "digest": { - "algorithm": "md5", - "value": "13e439f057391f73cb6b0ebf9e5f6057" - }, - "isConfigFile": false, - "path": "/usr/share/doc/init-system-helpers/README.invoke-rc.d.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "479a804b338bd3813e8e104eee21cecb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/init-system-helpers/README.policy-rc.d.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de2c456619a30ae8d3910bf51666790e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/init-system-helpers/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c4ec20aa158fa9de26ee1accf78dcaae" - }, - "isConfigFile": false, - "path": "/usr/share/doc/init-system-helpers/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e95801db3c8416a9637539216953c14" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/deb-systemd-helper.1p.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "91932aeaf3bef66a1ed0a201a6abce98" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/deb-systemd-invoke.1p.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ddeb6ad317a0df0c713f68a998574ce" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/invoke-rc.d.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "156a7b737a13eceb740914ca2516a9ce" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/service.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "828d8da6f8730c6c1110b64acdcec4de" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/update-rc.d.8.gz" - } - ], - "installedSize": 140, - "maintainer": "Debian systemd Maintainers \u003cpkg-systemd-maintainers@lists.alioth.debian.org\u003e", - "package": "init-system-helpers", - "source": "", - "sourceVersion": "", - "version": "1.65.2" - }, - "metadataType": "dpkg-db-entry", - "name": "init-system-helpers", - "purl": "pkg:deb/debian/init-system-helpers@1.65.2?arch=all\u0026distro=debian-12", - "type": "deb", - "version": "1.65.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libabsl20220623:libabsl20220623:20220623.1-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "712e0503e5279d5e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libabsl20220623/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libabsl20220623/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libabsl20220623/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libabsl20220623/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libabsl20220623:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libabsl20220623:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libgcc-s1 (\u003e= 3.0)", - "libstdc++6 (\u003e= 11)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "113d7f4068fe2878dadf6c7d3eb5541b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_bad_any_cast_impl.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "798a9c2454a4eef262f6322c98e1225c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_bad_optional_access.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "009887e6aa2c38d76cfc483c8dac2115" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_bad_variant_access.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "7792c78a97923d698960f7095f659903" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_base.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "32eb3a5ee04293b2372e0f1f117c78f5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_city.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "27e29e063860585d8e601b19486181c9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_civil_time.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "01444aeeb564860f7a3758b0be01595a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cord.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e4e903bca4def872e42c97404cec784" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cord_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0530fdc10f9d28ca4a97ee7af495fb1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cordz_functions.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e4d8373c1f179d38e9a85ad272bc74c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cordz_handle.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a5a02f6221f2e18be2f2c1a8090f1cb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cordz_info.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "901a2c2f31d25869bfdb51025b447a17" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cordz_sample_token.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "548453c33548a838cb5a33ee6203a321" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "97ab8c38329c3f87e78adaac4d17a186" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f2ef8c606545f7848b8da4d94eb44a1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_examine_stack.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "d32157f7c5d6d2428979ed75cd4fbf83" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_exponential_biased.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4ef0b0ef48e37f8bbc92f92552ec6d2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_failure_signal_handler.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "861898cbeca9117463680c6d1d55da50" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_commandlineflag.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "aeb074bb3d3d27fd9e86e25e50495f86" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_commandlineflag_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "06ec258771777d2c66a3be119e0f4acc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_config.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "294dee0ead4aa0a8d2d400a916b5fea1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "b7365b097912dc12ef89cd7df3ea84b7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_marshalling.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f49c4886335c4ec83ffe4faa606c56e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_parse.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a58143eb98c5a4349bcf18d3b1dc0df" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_private_handle_accessor.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "f70f7c6dc31ccf0876464a5a8140b964" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_program_name.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "d71786afcffe417872ad25e52d862ee6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_reflection.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "62980dd20116406a336a2862085bce49" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_usage.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "8bde77c9d0cacdde0520843cef4bcbc6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_usage_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "84670669ee4a357f5b2273d8f2cca3d7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "be3e3c61567b34034ab43cb727cda021" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_hash.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "a6eb84abdda798a7c8947a655810af20" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_hashtablez_sampler.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "df02554d3a4c07400569483699232c95" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_int128.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "d90e565acd53bc5d2b05540979b1f6c1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_leak_check.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2ff1fc2ff93d189f92e82fb64d21603" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_log_severity.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "4fdcd467eee58a8149ca2aa90c6a430c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_low_level_hash.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4a590121edd3639bc3e3c8476577b83" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "35e8e8dca0afa952e92b3f61ea315f2a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_periodic_sampler.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f5ceba55ccb6bfe15b2e9d5392f9659" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_distributions.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "559a1af40cd977e857376af63ef6e261" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_distribution_test_util.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b782b89faa6e6f35d99de25c72d3f60" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_platform.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "e2b637cf6a9631ae606f6181508cd53a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_pool_urbg.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "44c1618cccbe4d29b870c13c92c2edd5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_randen.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf6a03dd839bbd4d47baaba00640052a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_randen_hwaes.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "b45424518ae90b94d18c45beba20ecb7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_randen_hwaes_impl.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "6276233893514e2d7328225a093f63e8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_randen_slow.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "704b9ab8881002ee298581aef57318ca" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_seed_material.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "761a41944760ff37ad69c45a07050b7a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_seed_gen_exception.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "caf2dcc7e3bb6285576fac0a11972481" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_seed_sequences.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "39ed5852f47c29180c28f0ba952f1e84" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_raw_hash_set.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ca2edab4694db39b16393d3df492ba8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f9202faff60e44d5ad8f976dd9f2433" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_scoped_set_env.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c6edf621d100c62284995b23536a96b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "5c5a0962090751dd695f56d0b473e3ea" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ed0439d16ad56079b2c61c7ace5a80b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_status.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "04ad57f11e80262ff4b68679990bc71d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_statusor.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "aaeaf94c49d455434297990577d7a6c1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_str_format_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b621eba198d31bef062f78a5adbd368" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_strerror.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "5db51d94551219859f21425e259febce" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_strings.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ee1c4881f279d5c55d8561db92b6985" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "86abf73f58811a1f5a50930b014be6d4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_symbolize.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "eba355274297e845adfabc65af1a8b23" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_synchronization.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "15c9cb61a77ad0a0cbc8646df1512f97" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "5932c3ccdf419b892c8f6ec727a09fb6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_time.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ee8d0023729ea090cf0c17392d8e0db" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libabsl_time_zone.so.20220623.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "11408611ed253134ffa271fdf631986a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libabsl20220623/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9018fef0b41091ab8128c51120f859b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libabsl20220623/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "4af940e5c44a9b17b3044e248b2a209f" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libabsl20220623" - } - ], - "installedSize": 1913, - "maintainer": "Benjamin Barenblat \u003cbbaren@debian.org\u003e", - "package": "libabsl20220623", - "source": "abseil", - "sourceVersion": "", - "version": "20220623.1-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libabsl20220623", - "purl": "pkg:deb/debian/libabsl20220623@20220623.1-1?arch=amd64\u0026upstream=abseil\u0026distro=debian-12", - "type": "deb", - "version": "20220623.1-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libacl1:libacl1:2.3.1-3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "4c1c362901b4ae1d", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libacl1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libacl1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libacl1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libacl1/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libacl1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libacl1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libacl1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libacl1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libacl1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libacl1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libacl1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libacl1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "a0084b1e69220f417c974ebda32b6b08" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libacl.so.1.1.2301" - }, - { - "digest": { - "algorithm": "md5", - "value": "e1b1da07f1211a8a30132a47227b5750" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libacl1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6211576568cd8465a12652d3454bf559" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libacl1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "40822d07cf4c0fb9ab13c2bebf51d981" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libacl1/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "b3ecfc37ec288ba888bb867a258ad4f2" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libacl1" - } - ], - "installedSize": 73, - "maintainer": "Guillem Jover \u003cguillem@debian.org\u003e", - "package": "libacl1", - "source": "acl", - "sourceVersion": "", - "version": "2.3.1-3" - }, - "metadataType": "dpkg-db-entry", - "name": "libacl1", - "purl": "pkg:deb/debian/libacl1@2.3.1-3?arch=amd64\u0026upstream=acl\u0026distro=debian-12", - "type": "deb", - "version": "2.3.1-3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libaom3:libaom3:3.6.0-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "65054a12d20f3bd6", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaom3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libaom3/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaom3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libaom3/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaom3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libaom3/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaom3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libaom3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaom3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libaom3/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaom3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libaom3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain-md5" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libaom3/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libaom3/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libaom3:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libaom3:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "122077657b1bf14b1840808a76d05dd8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libaom.so.3.6.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "37fb60a5b9360d48a08e986a393968e8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libaom3/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e42a8d4e00d3bdf0d883cbcec418944" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libaom3/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca08aafe571d1cb70e3d270b39e38b0a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libaom3/copyright" - } - ], - "installedSize": 5550, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "libaom3", - "source": "aom", - "sourceVersion": "", - "version": "3.6.0-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libaom3", - "purl": "pkg:deb/debian/libaom3@3.6.0-1?arch=amd64\u0026upstream=aom\u0026distro=debian-12", - "type": "deb", - "version": "3.6.0-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libapt-pkg6.0:libapt-pkg6.0:2.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libapt-pkg6.0:libapt_pkg6.0:2.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libapt_pkg6.0:libapt-pkg6.0:2.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libapt_pkg6.0:libapt_pkg6.0:2.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libapt:libapt-pkg6.0:2.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libapt:libapt_pkg6.0:2.6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "18ed075bb8b76c7f", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libapt-pkg6.0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libapt-pkg6.0/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libapt-pkg6.0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libapt-pkg6.0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libapt-pkg6.0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libapt-pkg6.0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libapt-pkg6.0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libapt-pkg6.0/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libapt-pkg6.0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libapt-pkg6.0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libapt-pkg6.0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libapt-pkg6.0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libbz2-1.0", - "libc6 (\u003e= 2.34)", - "libgcc-s1 (\u003e= 3.0)", - "libgcrypt20 (\u003e= 1.10.0)", - "liblz4-1 (\u003e= 0.0~r127)", - "liblzma5 (\u003e= 5.1.1alpha+20120614)", - "libstdc++6 (\u003e= 11)", - "libsystemd0 (\u003e= 221)", - "libudev1 (\u003e= 183)", - "libxxhash0 (\u003e= 0.7.1)", - "libzstd1 (\u003e= 1.5.2)", - "zlib1g (\u003e= 1:1.2.2.3)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "289b8a7d00c2c476aab94c5c833d1b2d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libapt-pkg.so.6.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "9475b419a08c6b8a8b09af6185e0f34d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libapt-pkg6.0/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e90da236d1359da7b2de61f93afebe36" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libapt-pkg6.0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "48da7ec3e56cc622ce13c23e963d3e48" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libapt-pkg6.0/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc7f2b044ea2696523de5aaf781a0395" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ar/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5396bcf1d84f73b69d4efcd1b8da6df1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ast/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b69a2fc23ccd5ac79728434866eb1dad" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc6c2b1bccbfe8db6438367267059f19" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bs/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "25d4cc0062fb7d045082fd6988cb3a3b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "edac6f797fc01b1187b945121c3c91b3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8af2c696644c5b941815db61f7614a87" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cy/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef18e8980b38305ce4c94ea862bf6cab" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "05935ac535420d9e35cb35e1b55e1fbe" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2856bdf5b566ec83d8fce45932dfc6e3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/dz/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "058d39352447044464093b31acdb3af7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba43e289421ce94bdd9e08e981f8eb82" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac556053657ae7eeac3f37bda9b9a984" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6437a445211c9ca8051ca72f1c7240b2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "96ba5e2849f629279783b4cb69d8cb51" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7853a06fb5f1cfb389c4269f11e338df" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c34faa4d7a349be7690e432aba66b733" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac00da04f853fabcc7e1948bf1c14429" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e9a70eec51cbcebf80db34e581a4a70e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2a46d13bf1563d4be3995c4ede82701" - }, - "isConfigFile": false, - "path": "/usr/share/locale/km/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "aca4e18e701a925bda206feff678a3d5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd7bc6391dcc9ed1de0a06b2e4090f1a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ku/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9a222f7e61f5369fa232b28c9244392" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lt/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c457259e5d76c5b254f2472218729684" - }, - "isConfigFile": false, - "path": "/usr/share/locale/mr/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf37db1f179eced2043fda7ab1e94a30" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "32e18fd125813624969cc0113a5628fb" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ne/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fce952b1d5dd605b0a5e8d0788d86748" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "825cf2162ace1a6205fcf4053e09e63f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nn/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e369e4254506bb14951e87fe78b185e3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a4366d2290f9709cf810fba6142956c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f60f32956459f0d7be977a9f40ac06d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "baccacf75744d7a521317da21bc96637" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "dfb931ca33b89fa5e9cfc14db3e9d380" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cee290618493dad4ace073a7d59adf76" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "10dd14f3f1ada562885fc78b7325a419" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "34019b5f9606304da0bd918f9e39d36d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e90130f64c2a37942f9634ece89e2036" - }, - "isConfigFile": false, - "path": "/usr/share/locale/th/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f311cb66b0d5eada537dd99ebc9a6c9b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tl/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d6594e07c2aa2b10bd063733345f7f4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "582787dd55be9c3215df3009b805ef07" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d180de73ebb4bb30455d297ec90f7327" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ddfa709397afb7e92d463947078ac572" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/libapt-pkg6.0.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6cb392e8435d87e72f6ffb1dbd4f21b3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/libapt-pkg6.0.mo" - } - ], - "installedSize": 3297, - "maintainer": "APT Development Team \u003cdeity@lists.debian.org\u003e", - "package": "libapt-pkg6.0", - "provides": [ - "libapt-pkg (= 2.6.1)" - ], - "source": "apt", - "sourceVersion": "", - "version": "2.6.1" - }, - "metadataType": "dpkg-db-entry", - "name": "libapt-pkg6.0", - "purl": "pkg:deb/debian/libapt-pkg6.0@2.6.1?arch=amd64\u0026upstream=apt\u0026distro=debian-12", - "type": "deb", - "version": "2.6.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libattr1:libattr1:1\\:2.5.1-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "00337d6008bf0618", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libattr1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libattr1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libattr1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libattr1/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libattr1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libattr1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libattr1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libattr1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libattr1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libattr1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libattr1:amd64.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libattr1:amd64.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/libattr1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libattr1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "743ca3f83ea263f1f56ad1f63f907bdb" - }, - "isConfigFile": true, - "path": "/etc/xattr.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea6c61cf5b19334248fa2a64bd44f6e1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libattr.so.1.1.2501" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbe21906f7825bf320887705dcc19d83" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libattr1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9bc6b3d60c7a71a1a72a68301136f014" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libattr1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e0c5c8b55170890f960aad90336aaed" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libattr1/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "cd0a436e5e60208ebafe0c129cafe1c6" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libattr1" - } - ], - "installedSize": 59, - "maintainer": "Guillem Jover \u003cguillem@debian.org\u003e", - "package": "libattr1", - "source": "attr", - "sourceVersion": "", - "version": "1:2.5.1-4" - }, - "metadataType": "dpkg-db-entry", - "name": "libattr1", - "purl": "pkg:deb/debian/libattr1@1:2.5.1-4?arch=amd64\u0026upstream=attr\u0026distro=debian-12", - "type": "deb", - "version": "1:2.5.1-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libaudit-common:libaudit-common:1\\:3.0.9-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libaudit-common:libaudit_common:1\\:3.0.9-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libaudit_common:libaudit-common:1\\:3.0.9-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libaudit_common:libaudit_common:1\\:3.0.9-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libaudit:libaudit-common:1\\:3.0.9-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libaudit:libaudit_common:1\\:3.0.9-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "044869766add5220", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaudit-common/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit-common/copyright" - } - ], - "spdxExpression": "GPL-1.0-only", - "type": "declared", - "urls": [], - "value": "GPL-1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaudit-common/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit-common/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaudit-common/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit-common/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libaudit-common/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit-common/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libaudit-common.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libaudit-common.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/libaudit-common.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libaudit-common.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "cdc703f9d27f0d980271a9e95d0f18b2" - }, - "isConfigFile": true, - "path": "/etc/libaudit.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "467a24c14292ef3cbc8b8e3191635be8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libaudit-common/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1db9f2cb1fed2d200ef22125a9f82f9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libaudit-common/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8d2538192989024a48313e32161ce6a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libaudit-common/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "52e19554961e9b6031beb962d132730e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/libaudit.conf.5.gz" - } - ], - "installedSize": 22, - "maintainer": "Laurent Bigonville \u003cbigon@debian.org\u003e", - "package": "libaudit-common", - "source": "audit", - "sourceVersion": "", - "version": "1:3.0.9-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libaudit-common", - "purl": "pkg:deb/debian/libaudit-common@1:3.0.9-1?arch=all\u0026upstream=audit\u0026distro=debian-12", - "type": "deb", - "version": "1:3.0.9-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libaudit1:libaudit1:1\\:3.0.9-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2512ef9462982daa", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaudit1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit1/copyright" - } - ], - "spdxExpression": "GPL-1.0-only", - "type": "declared", - "urls": [], - "value": "GPL-1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaudit1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libaudit1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libaudit1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libaudit1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libaudit1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libaudit-common (\u003e= 1:3.0.9-1)", - "libc6 (\u003e= 2.33)", - "libcap-ng0 (\u003e= 0.7.9)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "6db481cf78d747691e5f687ee6fe83c3" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea22ba2d09acfd6ffaf212478efb7492" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libaudit1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1db9f2cb1fed2d200ef22125a9f82f9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libaudit1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8d2538192989024a48313e32161ce6a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libaudit1/copyright" - } - ], - "installedSize": 150, - "maintainer": "Laurent Bigonville \u003cbigon@debian.org\u003e", - "package": "libaudit1", - "source": "audit", - "sourceVersion": "", - "version": "1:3.0.9-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libaudit1", - "purl": "pkg:deb/debian/libaudit1@1:3.0.9-1?arch=amd64\u0026upstream=audit\u0026distro=debian-12", - "type": "deb", - "version": "1:3.0.9-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libavif15:libavif15:0.11.1-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a37f93501719e996", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libavif15/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libavif15/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libavif15/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libavif15/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libavif15/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libavif15/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libavif15/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libavif15/copyright" - } - ], - "spdxExpression": "CC0-1.0", - "type": "declared", - "urls": [], - "value": "CC0-1.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libavif15/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libavif15/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "custom-1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libavif15/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libavif15/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libavif15:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libavif15:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libaom3 (\u003e= 3.2.0)", - "libc6 (\u003e= 2.14)", - "libdav1d6 (\u003e= 0.1.0)", - "libgav1-1 (\u003e= 0.18.0)", - "librav1e0 (\u003e= 0.5.1)", - "libsvtav1enc1 (\u003e= 1.2.1+dfsg)", - "libyuv0 (\u003e= 0.0~git20221018)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "41f5444e5ed93fab5bb33c7ede6c6cf0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libavif.so.15.0.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "5fd6964318ecda73d77d5a5f56a04f78" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libavif15/LICENSE.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "40927ac0eface5d8892df74681248ac7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libavif15/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "937934078927906bae5855c476c0945a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libavif15/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "79031d9cec214958ae41913328fd4efd" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libavif15/copyright" - } - ], - "installedSize": 203, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "libavif15", - "source": "libavif", - "sourceVersion": "", - "version": "0.11.1-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libavif15", - "purl": "pkg:deb/debian/libavif15@0.11.1-1?arch=amd64\u0026upstream=libavif\u0026distro=debian-12", - "type": "deb", - "version": "0.11.1-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libblkid1:libblkid1:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "09f6bd60ae488e2d", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSLA" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libblkid1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libblkid1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libblkid1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "76286c28d81ab3dca516c9c681b6d1f8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "1eb7726bfce32e8a349322ee4c85a9a7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libblkid1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bb7fd1ae3732779966184f543b8a91e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libblkid1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "353888f385cfb82eb97a693e78f3cc9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libblkid1/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "971f3917bb9c3d6316b154d38d47b7cb" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libblkid1" - } - ], - "installedSize": 398, - "maintainer": "util-linux packagers \u003cutil-linux@packages.debian.org\u003e", - "package": "libblkid1", - "source": "util-linux", - "sourceVersion": "", - "version": "2.38.1-5+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libblkid1", - "purl": "pkg:deb/debian/libblkid1@2.38.1-5+deb12u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-12", - "type": "deb", - "version": "2.38.1-5+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libbrotli1:libbrotli1:1.0.9-2\\+b6:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "bee17957f6df430e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbrotli1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbrotli1/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libbrotli1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbrotli1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libbrotli1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libbrotli1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.29)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "bbd477bc55d0be60f23c37b770112c44" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fdc15d9a5cb1825dec3b38d8a7c85ae" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9" - }, - { - "digest": { - "algorithm": "md5", - "value": "24692ca1c3de1f485fc953491ddd6949" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.9" - }, - { - "digest": { - "algorithm": "md5", - "value": "faab68b27024eabc0b130c897cd4b916" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbrotli1/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0489ea2846f667529be6375af9262c0b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbrotli1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "88a64abee92ba0e2810574d815fa4900" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbrotli1/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "45a863a88b8a62194767671f7d666eab" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libbrotli1" - } - ], - "installedSize": 783, - "maintainer": "Tomasz Buchert \u003ctomasz@debian.org\u003e", - "package": "libbrotli1", - "source": "brotli", - "sourceVersion": "1.0.9-2", - "version": "1.0.9-2+b6" - }, - "metadataType": "dpkg-db-entry", - "name": "libbrotli1", - "purl": "pkg:deb/debian/libbrotli1@1.0.9-2+b6?arch=amd64\u0026upstream=brotli@1.0.9-2\u0026distro=debian-12", - "type": "deb", - "version": "1.0.9-2+b6" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libbsd0:libbsd0:0.11.7-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "4bd9cbfbcd17eaa3", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause-NetBSD" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-2-clause-author" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-2-clause-verbatim" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-John-Birrell" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-Regents" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-author" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-Niels-Provos" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "Beerware", - "type": "declared", - "urls": [], - "value": "Beerware" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "ISC-Original" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "libutil-David-Nugent", - "type": "declared", - "urls": [], - "value": "libutil-David-Nugent" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libbsd0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libbsd0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libbsd0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libmd0 (\u003e= 1.0.3-2)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "bda776ebda3a3d8ec4f8a959a3e2933e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libbsd.so.0.11.7" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ee05145a76642850598d34ea54f9864" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbsd0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6e43dd33b7a730754342f083ca7add9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbsd0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "72659157df85e4f094334122a24b353e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbsd0/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "49c5973f0f93e28269f634795ef84b97" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libbsd0" - } - ], - "installedSize": 202, - "maintainer": "Guillem Jover \u003cguillem@debian.org\u003e", - "package": "libbsd0", - "source": "libbsd", - "sourceVersion": "", - "version": "0.11.7-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libbsd0", - "purl": "pkg:deb/debian/libbsd0@0.11.7-2?arch=amd64\u0026upstream=libbsd\u0026distro=debian-12", - "type": "deb", - "version": "0.11.7-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libbz2-1.0:libbz2-1.0:1.0.8-5\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libbz2-1.0:libbz2_1.0:1.0.8-5\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libbz2_1.0:libbz2-1.0:1.0.8-5\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libbz2_1.0:libbz2_1.0:1.0.8-5\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libbz2:libbz2-1.0:1.0.8-5\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libbz2:libbz2_1.0:1.0.8-5\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "0e01bf0bfbc47b61", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbz2-1.0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libbz2-1.0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-variant" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libbz2-1.0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libbz2-1.0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libbz2-1.0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libbz2-1.0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libbz2-1.0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libbz2-1.0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "4a8194f9148f2c98dc955209a49a226b" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libbz2.so.1.0.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "a006fb030698028a2f35d6c1d7f0c383" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbz2-1.0/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c3092c17671b8259dd9fb754bd5f6108" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbz2-1.0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "33a2760e819e5953d9a76154176f116f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbz2-1.0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8171a9bd4b60caf0ab19b02ec8495111" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libbz2-1.0/copyright" - } - ], - "installedSize": 106, - "maintainer": "Anibal Monsalve Salazar \u003canibal@debian.org\u003e", - "package": "libbz2-1.0", - "source": "bzip2", - "sourceVersion": "1.0.8-5", - "version": "1.0.8-5+b1" - }, - "metadataType": "dpkg-db-entry", - "name": "libbz2-1.0", - "purl": "pkg:deb/debian/libbz2-1.0@1.0.8-5+b1?arch=amd64\u0026upstream=bzip2@1.0.8-5\u0026distro=debian-12", - "type": "deb", - "version": "1.0.8-5+b1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libc-bin:libc-bin:2.36-9\\+deb12u6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libc-bin:libc_bin:2.36-9\\+deb12u6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libc_bin:libc-bin:2.36-9\\+deb12u6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libc_bin:libc_bin:2.36-9\\+deb12u6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libc:libc-bin:2.36-9\\+deb12u6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libc:libc_bin:2.36-9\\+deb12u6:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "0fc6d30eb223c733", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libc-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libc-bin/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libc-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libc-bin/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libc-bin/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libc-bin/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libc-bin.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libc-bin.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/libc-bin.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libc-bin.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e\u003e 2.36)", - "libc6 (\u003c\u003c 2.37)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "4c09213317e4e3dd3c71d74404e503c5" - }, - "isConfigFile": true, - "path": "/etc/bindresvport.blacklist" - }, - { - "digest": { - "algorithm": "md5", - "value": "d6d5d6f621fb3ead2548076ce81e309c" - }, - "isConfigFile": true, - "path": "/etc/default/nss" - }, - { - "digest": { - "algorithm": "md5", - "value": "28fa76ff5a9e0566eaa1e11f1ce51f09" - }, - "isConfigFile": true, - "path": "/etc/gai.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "4317c6de8564b68d628c21efa96b37e4" - }, - "isConfigFile": true, - "path": "/etc/ld.so.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4d833fd095fb7b90e1bb4a547f16de6" - }, - "isConfigFile": true, - "path": "/etc/ld.so.conf.d/libc.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "916452b31dd56b7abb35acb30180c235" - }, - "isConfigFile": false, - "path": "/sbin/ldconfig" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f2071854bc6dfae3dd436b4195c4930" - }, - "isConfigFile": false, - "path": "/usr/bin/getconf" - }, - { - "digest": { - "algorithm": "md5", - "value": "4eb31b300612e39063dd21e31b5f904e" - }, - "isConfigFile": false, - "path": "/usr/bin/getent" - }, - { - "digest": { - "algorithm": "md5", - "value": "dbc20ffca8ee16592626c47d20ad2c25" - }, - "isConfigFile": false, - "path": "/usr/bin/iconv" - }, - { - "digest": { - "algorithm": "md5", - "value": "e753765ae0bbaddbe7a815e8c51427b1" - }, - "isConfigFile": false, - "path": "/usr/bin/ldd" - }, - { - "digest": { - "algorithm": "md5", - "value": "9febcfd565466b04b378d2432f8a204c" - }, - "isConfigFile": false, - "path": "/usr/bin/locale" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3fd6af2f8c2e87f749e69d3d791f15c" - }, - "isConfigFile": false, - "path": "/usr/bin/localedef" - }, - { - "digest": { - "algorithm": "md5", - "value": "20c7f99aaec91ae8f11835cd4624ef9a" - }, - "isConfigFile": false, - "path": "/usr/bin/pldd" - }, - { - "digest": { - "algorithm": "md5", - "value": "33084c77b6cca06d2b6176eb98798e4d" - }, - "isConfigFile": false, - "path": "/usr/bin/tzselect" - }, - { - "digest": { - "algorithm": "md5", - "value": "d659a2f004515dc83bfc78b8aa098409" - }, - "isConfigFile": false, - "path": "/usr/bin/zdump" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e8692c58483f4647db488b0005e01d1" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_ADDRESS" - }, - { - "digest": { - "algorithm": "md5", - "value": "a6a4082f562e25b34f52e1659340c7f3" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_COLLATE" - }, - { - "digest": { - "algorithm": "md5", - "value": "78d1af86f2480c11feb11b7c88b8dc19" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_CTYPE" - }, - { - "digest": { - "algorithm": "md5", - "value": "32dfbe5f23e7a06c0156866339e863d3" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_IDENTIFICATION" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3c1e6b90e6b6a2eb6119802deb76010" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_MEASUREMENT" - }, - { - "digest": { - "algorithm": "md5", - "value": "51b38968a8ee95ced726075cead11267" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f0484ef96ae1ad0dca4d21f7b6b5bf9" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_MONETARY" - }, - { - "digest": { - "algorithm": "md5", - "value": "bba91012f78b2190b2b0f0a1731e4cbe" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_NAME" - }, - { - "digest": { - "algorithm": "md5", - "value": "b5b5e4c522669b714b5a38aecd454704" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_NUMERIC" - }, - { - "digest": { - "algorithm": "md5", - "value": "5cf51ae8279119ff4c1a67b81b5a6cdf" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_PAPER" - }, - { - "digest": { - "algorithm": "md5", - "value": "0553c1e77396c436076404a9ffc751ea" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_TELEPHONE" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f81fd69f48265ab40c8f2a4936300f1" - }, - "isConfigFile": false, - "path": "/usr/lib/locale/C.utf8/LC_TIME" - }, - { - "digest": { - "algorithm": "md5", - "value": "2fc5129d3b5c7a40e686845189dc9db5" - }, - "isConfigFile": false, - "path": "/usr/sbin/iconvconfig" - }, - { - "digest": { - "algorithm": "md5", - "value": "345eef0c534414c5d9ca87013481ebe8" - }, - "isConfigFile": false, - "path": "/usr/sbin/zic" - }, - { - "digest": { - "algorithm": "md5", - "value": "048720c1973d8a02e7766bc5e6258fb9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc-bin/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "48d68260ab7331ccff4ff77677d7607d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc-bin/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d848be5c37cd71d76c5a7b9e7e28868a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc-bin/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "5e81a875064719ea46f9c300d89bd6fd" - }, - "isConfigFile": false, - "path": "/usr/share/libc-bin/nsswitch.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b4aead2d93c3b1ebeac5592a2dc5b87" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libc-bin" - }, - { - "digest": { - "algorithm": "md5", - "value": "91de6230b7ea05cbbe47fe71c658bf56" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/getconf.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8959f2ca99af5b7c5ee527fd90ed533a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tzselect.1.gz" - } - ], - "installedSize": 2039, - "maintainer": "GNU Libc Maintainers \u003cdebian-glibc@lists.debian.org\u003e", - "package": "libc-bin", - "source": "glibc", - "sourceVersion": "", - "version": "2.36-9+deb12u6" - }, - "metadataType": "dpkg-db-entry", - "name": "libc-bin", - "purl": "pkg:deb/debian/libc-bin@2.36-9+deb12u6?arch=amd64\u0026upstream=glibc\u0026distro=debian-12", - "type": "deb", - "version": "2.36-9+deb12u6" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libc6:libc6:2.36-9\\+deb12u6:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "8875eb673276ee9a", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libc6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libc6/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libc6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libc6/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libc6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libc6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libc6:amd64.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libc6:amd64.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/libc6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libc6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libgcc-s1" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "d4e7a7b88a71b5ffd9e2644e71a0cfab" - }, - "isConfigFile": true, - "path": "/etc/ld.so.conf.d/x86_64-linux-gnu.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "af0bbbf243a4ca153d990d240c26eabd" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "69e048da09d64883b4801a5e46214f71" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libBrokenLocale.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "3cdcee8346c2ac314e5bed56b6b4d25b" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libanl.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "929f84e13d57de317ef7d943c7853a8a" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libc.so.6" - }, - { - "digest": { - "algorithm": "md5", - "value": "f02bbe6259b4f9819300eb9332c800cd" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libc_malloc_debug.so.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d2d62950d8f7d8a05efb3e51fff02b7" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libdl.so.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "d625a58470bb9b6c236082d5b94b1b0e" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libm.so.6" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5942123f68625d7290ecd37f6af6e3b" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libmemusage.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ace43e415c079037d25560605360ef01" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libmvec.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "af34f5c0c38a6ba72601392e5c8ddcac" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libnsl.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "cfb4619e63caec7bbbcc681ef76b5172" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libnss_compat.so.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "ffdfb39e86ada668c23d1ced61604d23" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libnss_dns.so.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "64056c44c52e0014c1e4a0e5d0f271fd" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libnss_files.so.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff8f7c43403a6732cf01819420a8434e" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libnss_hesiod.so.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ed27e634d9daa9c667598ee9eb4740f" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libpcprofile.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9176dc28821625c0b1f142e0705ab9f2" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libpthread.so.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "e75155084707fd6123e44e1fec648906" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libresolv.so.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d525038a9f65990d6dd400ce1c98e2e" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/librt.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "21d8dd393cb7718f1b2573c5010a0313" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libthread_db.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "30007dcf780862d3d64655aae122d00c" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libutil.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "afc4af9a1e78180af8dcefa289f0f96d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ANSI_X3.110.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0524ef3a343ef3d2f444548550519b42" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ARMSCII-8.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7abcbf11e6ec48af8caf0512b257a73" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ASMO_449.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ecc3e0fb1cbbad49bfcb9b94e33d5f2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/BIG5.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "783baee0bffa17b551eed5a70a329a4b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/BIG5HKSCS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f973c954efaa3bcd10badc0eced7c20" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/BRF.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7aef5b05c10420332c4f4f7934495741" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP10007.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "da1c716ec1d16341356e49cb08a631a6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1125.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f646798cc70c4ca7bcd53e3cc7a79ad" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1250.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6eb3c58669f2c334284c03baaac4c196" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1251.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d21773950a4da719a1b5cf6ef8141da2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1252.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "61242ff9a708b722be0e2a4af914547f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1253.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "775a0d0e2562de1e5daf6bf4fc9e6aa5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1254.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "2291a9d5d3dec9a6d73323f7ecc25cdb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1255.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "be361515e8a6ddbcaafea1394d953ce6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1256.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d0c05983b30c4f28c455af262b28a7d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1257.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a912d77a402e4120dbb607dc8e09b484" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1258.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebed605a893f430d1f8fa004dbeb0ede" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP737.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8f4583a216bff8dce6b6426435cb07c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP770.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd0add7f096ded2d3f905c9ac537d1a1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP771.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b0f1d1f5e840a6f8efcb109a15b5805" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP772.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc32a9e9972047a3d1fb04aa40af2525" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP773.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba0429dc965d1aa6e433cb4ce1df7a47" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP774.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "704045342501ee5931ea602f7e7f0f04" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP775.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "64792017cfdcdeff739cf1002cf2da92" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP932.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "762ee04fd733000894db16acd6435683" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CSN_369103.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8e1fc50c19d3a050c5356d41640a145" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/CWI.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d2c1a8e3156461b500f985940f165ea" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/DEC-MCS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "2368b048ee431824d67e735359c8a3e7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE-A.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "79187b3df151008d8274395e811459b0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "49643bb89eddea2463463897636f303d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-CA-FR.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7f4124bf5013330907290da870a06316" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO-A.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "515a53e665464597437f71033eb87c1f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f85818aab29d4e93045eb5b9f0bf7c7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-A.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8da92cabc8f6cf660bf16347316e57c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-S.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f9c300ff3aae4e798cb00ee204a7860" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "87479c251609de62eb924c6f5042096f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE-A.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "50040206be473d90337e6b766ea09d1c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd8e1a8a4d7e4298040e6f8a50dd1ed7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FR.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c45fa55e95fbb9e642af9af2a19c0c76" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IS-FRISS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe88018c781da3b619c9de96a4633cfe" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IT.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "92ddded0fdc45f21fbdbaad3a94a16ab" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-PT.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "064f8eee87784486e2fb88efe1b0c201" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-UK.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "439f1435ba6470a272fac8d79cf9a8b4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-US.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f5a0bdb6c5fd4a04f284489ef8395c6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ECMA-CYRILLIC.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebbe1b94acbfeedcb65a02972ecba58e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-CN.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f512ed0f2ab1b6b71cd0363756d7954c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JISX0213.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c1d86b9ed8f2ad41382627044b9d4164" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP-MS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "88494fce72633cdd0ee3e3c13ed6284c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f76c1b4ed19dac9f77488648cd64f1f9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-KR.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "faf7f05667c93c064c2ee6b8101c58ae" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-TW.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d1fe77a4b7bae5c75d75272c5f98439c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GB18030.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "794ff736c1814b2c3c0f557484b978da" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GBBIG5.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "63e3bdde0da7619f61d57f1e0eb25bd9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GBGBK.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9f1e8714541c0bcb7e7c206df4e94be" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GBK.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b14ead57e37065b127eabe5533fe1f7f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-ACADEMY.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "70636e703e4b864be12b3eab41dd474e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-PS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "754dd7b4b871bc9a07258b58769ea82a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GOST_19768-74.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9c0d6046da21d242ffe0429235617d4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GREEK-CCITT.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "325717ab899fb9d371f969a72f0bbab5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7-OLD.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6e90993e6c2e20694b68b9603fabdb32" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "59482ca08878064b64f1693d00fbbe2e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-GREEK8.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8d2b73a83e8cbb977d98289414642e1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN8.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "82ec2733b40f24ba36869d0f33856877" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN9.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5689a2cb5304974af218508811efa80d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-THAI8.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f40c16e92cd828efa4ed56cd6d5fc263" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-TURKISH8.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "89498ae189380f6e065634e73d662cae" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM037.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce71dff71f7b2153f137e987107b8402" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM038.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c0d67586d7a2806b6844451d6831b2a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1004.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "426ba9638a135f8eb1946bbd4086e811" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a927c3defafad2ce1883bb5d95dd1c35" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008_420.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "81bee6e3bee32bcec0155137f56da380" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1025.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "bcd74e15570ee61aa1808e8203db5b14" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1026.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e48637a503c6754abcb067f21af88bd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1046.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "24355e5742f1deff042b0f0abb372f61" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1047.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "76380f3776e64f6cf841f4a607c4d815" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1097.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "faeb71f6f9f31001e86038c0d5635304" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1112.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8fb3bec011f2e5986f1ec6b1f2069c7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1122.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "54ab9bc50ea794cca6b4ade3a3fd25c7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1123.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d15b2fdd81552eed51ac867d11e5852" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1124.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b9f939ae9d970a8dfdf8faeeed80fb5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1129.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "76492a3490c4cb1cf4bf2cd2f3f05bee" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1130.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed753aaec624172641d38a8506891cee" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1132.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "46bd845028b48e6e05578849f6e3e463" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1133.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c256fa10124d2b234d50246fcd13d28d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1137.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "004bc5b945e0841006a8ee85e82faf48" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1140.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "353161dc8b07f3f507fada92213944fe" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1141.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1e78fce362bce00d40bcc38e70a8a96" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1142.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "75f1381f446639e950d15f36c9728e19" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1143.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb0cf55a7274fa85721058f55f600fee" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1144.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d8482767c189bba001a20cd230afc88" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1145.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "119672e2f0f6ec641354d30aec2c7e53" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1146.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "73c3b57751387772545a57eed1d6adff" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1147.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "679ca47f640fe91e8f13ed4acd9db676" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1148.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd4fdbbb102b2f558676ee1b7c1eab6b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1149.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0df2164e1bb22ac7bccb7182fd6b3efb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1153.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a02deae01062b1d32271cbc3b3e930b4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1154.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "10839d1b7f18d4e8b838a8e41988f951" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1155.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f33805f9c36ca21b123fcbb33c01c39" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1156.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb0b8a805ae3ad5ec1a344c8f3846e9f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1157.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "78062a181de6b0dd139ccb3c746b192d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1158.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c6b36218651a52e38cc8cdf7400849e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1160.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ccf3e402537285ffcbbca29b1d814ce5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1161.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d2abe58964447f4bd5645ada92fe6e3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1162.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9da0e55e53bd699f399d7c7fb3a92f6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1163.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a515b12fe22f808944de107b0252d57" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1164.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "049e3ee23d618f357135b508b9676883" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1166.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c2bed1d089fbe349a96db295f0db00f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1167.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "676822b09e24dd9767a7104aea1c0293" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM12712.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "bde53ea9fe9dfc7fc49deb20b324d509" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1364.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f45373d86c5a9310e341308c5254dce9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1371.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee1750d0a45d33474ac955ef6e311374" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1388.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "19a78b791e0a17a433d49c8ecb235d5a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1390.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "913df271901c2b1bfcf8f0035085c508" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1399.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f2198f139d2940c68126936013f3c24d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM16804.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "967b2fc17bc87ca69ce546e6c88ead27" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM256.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d330d349e25c77a798c44998231efeb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM273.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e604e54437ae1f299ec968220c24db8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM274.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c57ce69df235ed1d77619aabb82d1638" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM275.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b5f06e3d431ba55c1ba86900b91800a6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM277.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b92a03fcc076616575114ea65147939" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM278.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e5af0ba2f4e4e84907e044cdd46e0e2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM280.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "330fed66649dbe7e44a7bb4e5c20868b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM281.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "53b4caf7b985ebf83c65eae3e85513d0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM284.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c3b3194015ba0250ec6952b013abc16" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM285.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "8132c17aa1f0d40d6cbf981ee248489f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM290.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b67c25a8f597c9cf39ea733b47f5e792" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM297.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4ffc5a684dc690aad0156dbd5f4f8ec" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM420.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "8002a1a1e85cdf224691a7e2c1f9f367" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM423.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc880e4ba9d0861389c44c0b1ac90b3c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM424.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef032cd0066027030ade8966f7907ba4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM437.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "4555a5b00ca6a2a03c316ce287cdb5c1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4517.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "972e0aa0d17d0812c4806b6763417447" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4899.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "30294a4aac71fa1b8359a53f7482441e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4909.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "89db7cb3066e1ee4f302dbb55b3e94a4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4971.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e5ac0b666e0be646d237d6957e3385e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM500.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5698c3febec215b73e11e5c2e609844c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM5347.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f0b3e322e03aabedb2945e5c729deec" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM803.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "82e14920f2f3974617f5236935ecf662" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM850.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c64fac60ec88823cd3047838fc5e6a1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM851.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a84c3b6c3e721011c4f42a7d6b1f52df" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM852.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f3097eb522ab04e69fb2a891e7de741d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM855.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa237b1d939cc96fdd97eed2ecf1ed31" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM856.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e854d205e357ae4ea5dc0bc0b795bd7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM857.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0477455706467f81e56ab95ab9b59f0c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM858.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5811cf279d6026749ea57e40775104ee" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM860.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec2e5d1525b3d94b5b3c277154bd9f88" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM861.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b16f1fee7129fcea10a6ca70bd4acb99" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM862.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "57a01b21828614363c6516ff07730340" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM863.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5bf95ce4d636421e69dce91d01008939" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM864.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "01c45f1c14588f2f9dc0f80ebb4c788e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM865.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d8232e81bb7649805c2b18e4567bf9c7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM866.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "25791156a2cd9d2a504194e920551069" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM866NAV.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "88b10939421d19c682ef084dceac8b90" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM868.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d581fde5c5c1a5e71b36aa22b2ac271b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM869.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "101f14c15607837b9ca97fb6b4da7cfc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM870.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebe8346917e25bd2d4f4e11b1affa61f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM871.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c10c2f34dbf9d4d369928fa5da0bd1aa" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM874.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a75a15d22901b11a40e9e2bc062267e7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM875.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f54f2c0ee9b7dfd4bd3df996f00c4d96" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM880.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0cab1e23122970a5a8e4fdccae6c5f49" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM891.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5027a79ad233f88c3fba3cb90093e840" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM901.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d414a0ad29fe8c96d55d1bf2c67a8c1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM902.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "edea7d406f0074aab8f134e20b192bd0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM903.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "83a044a20eba7059e36e56c18c22b52e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM9030.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b3052fc3279b0476bc13b521792e3d1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM904.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "411b803de23765815cdb501c11f00091" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM905.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "81bdb657fa2f1d39ac515f5eb683c189" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM9066.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "3cf575c825d39d38e7bc61feecbcd5a9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM918.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7dab400b76363fb519fd8e1a1d5c60cd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM921.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b1364e239d0cc1553c4251feca694074" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM922.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9623143ca91eabf4db6c9a78a773b485" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM930.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6e9d827c65bbb425b3c86d1ea96edf7c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM932.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "54e165982a09d97de57b7a7d9e22404f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM933.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "37a3e3c922ebf0b830e8256e1ff7cdc7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM935.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d16eb1eb174b550ac1b10ee8da913f7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM937.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "818509dd7c8ae12462777194edc40520" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM939.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "37ae659097149d2cbc81e7f4b0355bc6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM943.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "50ea7fbfd720a9478648c509cdef1581" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM9448.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "15f179cd714875a9bedf612df3d5a662" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/IEC_P27-1.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "115c33597587e4238cf3476fce892766" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/INIS-8.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "aae1af16fb7b212ddac875a74fd5177b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/INIS-CYRILLIC.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca9ca31732e4635dabb0ea60509bc9ea" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/INIS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "89ac569127995d687f830bd0cc04f899" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISIRI-3342.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef61737e78aa66957e5b3c65af3b344a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN-EXT.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "99714728d668021ab02081d3a407d1fd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a7ec4599c09ab06901a81592c0078cd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP-3.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "84daf5e893153bfe97022e2da6dc7675" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6601b7f16f96fc716970959b67cb550a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-KR.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "428ecc0f83ba1fce8fb3241a524c44d1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-197.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d51a86307b52e02442c68ccb406e8657" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-209.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b91f55a349165f0ed56f26f8da35701" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO646.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5599e51f8fc3fd37bc6fddda1382ef45" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba04e05ec21c35fa8dba5a930e7eac8a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-10.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c4362f2ce458a9a30e473eb885f90bf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-11.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "016bdd356b7bac2822fcc6ba4b51f68f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-13.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d9b70c371d687fdf8eba668789631a2c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-14.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec932544b187796778089b18aea7fde8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-15.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d421b82bcbde8bf00cebea8c0acc750f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-16.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c13ccffde9130f6a2b3fe12e77f5bf82" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-2.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6fd5e992af5e12e44abbce89387a3015" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-3.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3ddd856c62d841af382c9b420a16b42" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-4.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "41bdc66c6f1360c47d73c4609ffd420a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-5.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9046e423bb25a39f422cb2b6d3063f6b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-6.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "847c48eae51cf31f65c803f6fccd2c03" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-7.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "769dbd6fc7b10631b4dfd846e3f2547c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-8.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f5c1c4b1731dd923db3a7783b4ea899" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "497bd7b39b9a4f4bb3f260cb3992956d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9E.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d6389f79b1c60c9241dd04259879730" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_10367-BOX.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "172393d8e829a07123202d98d38fd20c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_11548-1.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a44fe78c105a93ddf0dfbdf70e814938" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_2033.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "21026dfb071afcf2b67ecadae282078b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427-EXT.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "497ba89695ae353f85553cefabd8469d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "19189db2ce7efca6f102c3e42c523c2c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5428.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d08176b8c2752f396bdfee101d5aff99" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937-2.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "51e4247c19462538a551b37b37620604" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "01a22330f563f970ef2f58c69da31344" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/JOHAB.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "276dd04e54676da2b095f58d9056b0a3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI-8.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "3afd709bd5224d6b7f8593a4018fa98f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-R.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb791e88a72fccd66d85fc344b77ac0d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-RU.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "137c7eb86726b238ffb115dbd6005d22" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-T.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf4adf52f6efb51614e46eaeff36f5bf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-U.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa304fde21b32272d888ef74b1fccadd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK-1.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "48443553a0f7bb83a3e1adb758db62c0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0a05989185cb3b8fb01a5c800a62325" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-CENTRALEUROPE.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "187083d4ac83a98ee8c7f5185558b9b1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-IS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "39da29530e507a00c1ca677bf4ec327e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-SAMI.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a93395dde825a7f359e88e176623645" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-UK.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d70363bbefce4713d8d35b7e90ad7a29" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/MACINTOSH.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "4aa49d12405a127a9da47270ba5606ff" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/MIK.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6a20b31923344f01327a22ef688c9eb0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/NATS-DANO.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "3baba1ea9fc5108037a5e14eb537d0ae" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/NATS-SEFI.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a236dd6d7f9b99c690b2f036cdefe6d4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/PT154.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c855d2601ff046197471fbd2f10dd82" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/RK1048.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "66905d7fa220d2af63c3e26a89a63eeb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/SAMI-WS2.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f0b70cecee8b7c4110748140742b9c37" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/SHIFT_JISX0213.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "44e114a2b7d8e44e58f5fafa25b84926" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/SJIS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a55183ac820113dc011c1d8ecd5af6f1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/T.61.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "26ee7266f1997857e45615908fbb0cc6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/TCVN5712-1.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ad834920282dcc1306b69f4ba1fffc3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/TIS-620.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "71cab59118ad53afa0947ed4788f7dcf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/TSCII.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "de0eaaf50946dc93b918780fcb549371" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/UHC.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a724e178b16d63edf3abe6887b00f7d5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/UNICODE.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1fb17679470b709c106d4af7a3821509" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/UTF-16.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d903a1ed050e6dae9b5bd44c6a162d20" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/UTF-32.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec4423f727ea292a94f8e651777906bd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/UTF-7.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "565c3ee1c9a0aa2fb8c45131287e013d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/VISCII.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "209041f1c79eb1454025d164353a7194" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules" - }, - { - "digest": { - "algorithm": "md5", - "value": "550af4881c265bde5cd9f487adc0ed37" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f95f96ce0b169c59d2c51cfdec46eab" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.d/gconv-modules-extra.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "07221aca3a387cbf2a9bdd86a7600e22" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/libCNS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "50286a96ccf6fadf381cb757a67510eb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/libGB.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "cba088dec24b9d70d626006f8ceb6825" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/libISOIR165.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "361f1efceb7016d033fec03b020b77dd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/libJIS.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3e5f171726bfc3da85cc3fc6aad11a8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/libJISX0213.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7661b85d7bce6cdc52f7a55413480788" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/gconv/libKSC.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d4948fc370f491a86669cad3021ab50" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc6/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa1eb4461201dd1c0edcf51a145de966" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc6/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f384bc94867d6f5b3ac21c215fc88c6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc6/README.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "085c305fdce1731c5eb5684e6d3263a9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc6/README.hesiod.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "87cb528c4cace9bd570e8aadf99c5b25" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "48d68260ab7331ccff4ff77677d7607d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc6/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d848be5c37cd71d76c5a7b9e7e28868a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libc6/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f478b048f776e458647771a040a4b27" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libc6" - } - ], - "installedSize": 12986, - "maintainer": "GNU Libc Maintainers \u003cdebian-glibc@lists.debian.org\u003e", - "package": "libc6", - "source": "glibc", - "sourceVersion": "", - "version": "2.36-9+deb12u6" - }, - "metadataType": "dpkg-db-entry", - "name": "libc6", - "purl": "pkg:deb/debian/libc6@2.36-9+deb12u6?arch=amd64\u0026upstream=glibc\u0026distro=debian-12", - "type": "deb", - "version": "2.36-9+deb12u6" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libcap-ng0:libcap-ng0:0.8.3-1\\+b3:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcap-ng0:libcap_ng0:0.8.3-1\\+b3:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcap_ng0:libcap-ng0:0.8.3-1\\+b3:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcap_ng0:libcap_ng0:0.8.3-1\\+b3:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcap:libcap-ng0:0.8.3-1\\+b3:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcap:libcap_ng0:0.8.3-1\\+b3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "41101b8d69788dbe", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcap-ng0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap-ng0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcap-ng0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap-ng0/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcap-ng0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap-ng0/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcap-ng0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap-ng0/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcap-ng0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap-ng0/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libcap-ng0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap-ng0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libcap-ng0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libcap-ng0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8ccf7e73f8635c8b5155411aad670875" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "36e682e15a61c7a1761b68c687af72e7" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libdrop_ambient.so.0.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "eba32426d7087e12d5f244b5b5f4b52a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcap-ng0/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8cda23550b5d518df8b3c0ceaf1e5bcc" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcap-ng0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "481f61437b9cc72c3a4125874046628d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcap-ng0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "23cdebec4656518aad882b58d84e8c2c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcap-ng0/copyright" - } - ], - "installedSize": 65, - "maintainer": "Håvard F. Aasen \u003chavard.f.aasen@pfft.no\u003e", - "package": "libcap-ng0", - "source": "libcap-ng", - "sourceVersion": "0.8.3-1", - "version": "0.8.3-1+b3" - }, - "metadataType": "dpkg-db-entry", - "name": "libcap-ng0", - "purl": "pkg:deb/debian/libcap-ng0@0.8.3-1+b3?arch=amd64\u0026upstream=libcap-ng@0.8.3-1\u0026distro=debian-12", - "type": "deb", - "version": "0.8.3-1+b3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libcap2:libcap2:1\\:2.66-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "00973b8ba461f164", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcap2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap2/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcap2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap2/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcap2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap2/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libcap2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libcap2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libcap2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "6e5b0d3ce010decba49db19e75e2a514" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libcap.so.2.66" - }, - { - "digest": { - "algorithm": "md5", - "value": "da6dd77423d04f8847235c7e4e60077f" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libpsx.so.2.66" - }, - { - "digest": { - "algorithm": "md5", - "value": "5e5861de4b4e34edbea47a4a8d107658" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcap2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a60e96cffd7432d5fb38b3d4e6f690c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcap2/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d582de9fd11c6061f48921e73195b3c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcap2/copyright" - } - ], - "installedSize": 94, - "maintainer": "Christian Kastner \u003cckk@debian.org\u003e", - "package": "libcap2", - "source": "", - "sourceVersion": "", - "version": "1:2.66-4" - }, - "metadataType": "dpkg-db-entry", - "name": "libcap2", - "purl": "pkg:deb/debian/libcap2@1:2.66-4?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1:2.66-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libcom-err2:libcom-err2:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcom-err2:libcom_err2:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcom_err2:libcom-err2:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcom_err2:libcom_err2:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcom:libcom-err2:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libcom:libcom_err2:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "5ae134ea8c2f9dd3", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "Kazlib", - "type": "declared", - "urls": [], - "value": "Kazlib" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "spdxExpression": "Latex2e", - "type": "declared", - "urls": [], - "value": "Latex2e" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libcom-err2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libcom-err2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libcom-err2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.17)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "7e522134396e81a2cebf6dfb79d4b46a" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libcom_err.so.2.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "7afd35a4116bb1d9623ecc8ec297e7f9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcom-err2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1310ed8edd8d42af06394a2c050f9c8c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcom-err2/copyright" - } - ], - "installedSize": 54, - "maintainer": "Theodore Y. Ts'o \u003ctytso@mit.edu\u003e", - "package": "libcom-err2", - "provides": [ - "libcomerr2 (= 1.47.0-2)" - ], - "source": "e2fsprogs", - "sourceVersion": "", - "version": "1.47.0-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libcom-err2", - "purl": "pkg:deb/debian/libcom-err2@1.47.0-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-12", - "type": "deb", - "version": "1.47.0-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libcrypt1:libcrypt1:1\\:4.4.33-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "557e13a1cf1998d5", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/libcrypt1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcrypt1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libcrypt1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libcrypt1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.36)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "3e0af10f055a1bca472dd63141ed93be" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libcrypt.so.1.1.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "01bdf8dbbccca425e317b61e63b7764f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcrypt1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6a85f86f7c809f05907ee4b031db2f03" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcrypt1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8112c930acedacaa33e5d62f5721c526" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcrypt1/copyright" - } - ], - "installedSize": 233, - "maintainer": "Marco d'Itri \u003cmd@linux.it\u003e", - "package": "libcrypt1", - "source": "libxcrypt", - "sourceVersion": "", - "version": "1:4.4.33-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libcrypt1", - "purl": "pkg:deb/debian/libcrypt1@1:4.4.33-2?arch=amd64\u0026upstream=libxcrypt\u0026distro=debian-12", - "type": "deb", - "version": "1:4.4.33-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libcurl4:libcurl4:7.88.1-10\\+deb12u5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "3425ee7723f69b83", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "BSD-4-Clause-UC", - "type": "declared", - "urls": [], - "value": "BSD-4-Clause-UC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "FSFULLR", - "type": "declared", - "urls": [], - "value": "FSFULLR" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "OLDAP-2.8", - "type": "declared", - "urls": [], - "value": "OLDAP-2.8" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "spdxExpression": "curl", - "type": "declared", - "urls": [], - "value": "curl" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libcurl4/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libcurl4:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libcurl4:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libbrotli1 (\u003e= 0.6.0)", - "libc6 (\u003e= 2.34)", - "libgssapi-krb5-2 (\u003e= 1.17)", - "libidn2-0 (\u003e= 0.6)", - "libldap-2.5-0 (\u003e= 2.5.4)", - "libnghttp2-14 (\u003e= 1.50.0)", - "libpsl5 (\u003e= 0.16.0)", - "librtmp1 (\u003e= 2.3)", - "libssh2-1 (\u003e= 1.7.0)", - "libssl3 (\u003e= 3.0.0)", - "libzstd1 (\u003e= 1.5.2)", - "zlib1g (\u003e= 1:1.1.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "f77ab96de521fd73904cd6fd5d8e7d93" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libcurl.so.4.8.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "9cc1117e3db648eca660c608b7d08cc3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcurl4/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a7d15f1f7beb98774b69a1e88bc2119" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcurl4/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f9f6598312858fead4eed4d151197550" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libcurl4/copyright" - } - ], - "installedSize": 843, - "maintainer": "Alessandro Ghedini \u003cghedo@debian.org\u003e", - "package": "libcurl4", - "source": "curl", - "sourceVersion": "", - "version": "7.88.1-10+deb12u5" - }, - "metadataType": "dpkg-db-entry", - "name": "libcurl4", - "purl": "pkg:deb/debian/libcurl4@7.88.1-10+deb12u5?arch=amd64\u0026upstream=curl\u0026distro=debian-12", - "type": "deb", - "version": "7.88.1-10+deb12u5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libdav1d6:libdav1d6:1.0.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "36e8c41fd6938953", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdav1d6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libdav1d6/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdav1d6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libdav1d6/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdav1d6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libdav1d6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libdav1d6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libdav1d6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libdav1d6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libdav1d6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.32)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "3a3451793ed6d754b91c3d472a0cf5fe" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libdav1d.so.6.6.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "f1a3948f842f157658628aa6b4c08f71" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libdav1d6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b980f0df15da52513307a9383206cfc3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libdav1d6/copyright" - } - ], - "installedSize": 1572, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "libdav1d6", - "source": "dav1d", - "sourceVersion": "", - "version": "1.0.0-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libdav1d6", - "purl": "pkg:deb/debian/libdav1d6@1.0.0-2?arch=amd64\u0026upstream=dav1d\u0026distro=debian-12", - "type": "deb", - "version": "1.0.0-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libdb5.3:libdb5.3:5.3.28\\+dfsg2-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "e78c9691bc71759d", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Artistic" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-fjord" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT-old" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "MS-PL", - "type": "declared", - "urls": [], - "value": "Ms-PL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "Sleepycat", - "type": "declared", - "urls": [], - "value": "Sleepycat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "TCL-like" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - ], - "spdxExpression": "Zlib", - "type": "declared", - "urls": [], - "value": "zlib" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libdb5.3/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libdb5.3:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libdb5.3:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "315f59f4c111a4dd2ad13a6f3f98c449" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libdb-5.3.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "cca750b0f82a256b193367ac0423fa56" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libdb5.3/build_signature_amd64.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "49332150504bf1eefebefdbea0cd578f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libdb5.3/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "00aa43d3e94c4b9211e70e6c14b3d078" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libdb5.3/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "6476eb780800b7b1b04948f3d4427083" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libdb5.3" - } - ], - "installedSize": 1833, - "maintainer": "Bastian Germann \u003cbage@debian.org\u003e", - "package": "libdb5.3", - "source": "db5.3", - "sourceVersion": "", - "version": "5.3.28+dfsg2-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libdb5.3", - "purl": "pkg:deb/debian/libdb5.3@5.3.28+dfsg2-1?arch=amd64\u0026upstream=db5.3\u0026distro=debian-12", - "type": "deb", - "version": "5.3.28+dfsg2-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libde265-0:libde265-0:1.0.11-1\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libde265-0:libde265_0:1.0.11-1\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libde265_0:libde265-0:1.0.11-1\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libde265_0:libde265_0:1.0.11-1\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libde265:libde265-0:1.0.11-1\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libde265:libde265_0:1.0.11-1\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "7af4bfde7b3f1acb", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libde265-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libde265-0/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libde265-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libde265-0/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libde265-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libde265-0/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libde265-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libde265-0/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libde265-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libde265-0/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libde265-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libde265-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "other-1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libde265-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libde265-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain-1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libde265-0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libde265-0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libde265-0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libde265-0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libgcc-s1 (\u003e= 3.0)", - "libstdc++6 (\u003e= 11)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "6bec793f4e74f2240236d76b213c8ed4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libde265.so.0.1.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8fa7b4acb56ecec857ef9c51e64bb93" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libde265-0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c153aa6af0b664a80b73607537e2c36" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libde265-0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "77158a7e61fc8eeef915bd48dd7a4ee1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libde265-0/copyright" - } - ], - "installedSize": 470, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "libde265-0", - "source": "libde265", - "sourceVersion": "", - "version": "1.0.11-1+deb12u2" - }, - "metadataType": "dpkg-db-entry", - "name": "libde265-0", - "purl": "pkg:deb/debian/libde265-0@1.0.11-1+deb12u2?arch=amd64\u0026upstream=libde265\u0026distro=debian-12", - "type": "deb", - "version": "1.0.11-1+deb12u2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libdebconfclient0:libdebconfclient0:0.270:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "36285f3184fdc550", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdebconfclient0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdebconfclient0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdebconfclient0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdebconfclient0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdebconfclient0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdebconfclient0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdebconfclient0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdebconfclient0/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libdebconfclient0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdebconfclient0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libdebconfclient0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libdebconfclient0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "c81aff2be6dc5781371bcf8d35425b52" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libdebconfclient.so.0.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f261df06cf5684560299462447b972e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libdebconfclient0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef66754c371dbe56a17edbd657d71167" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libdebconfclient0/copyright" - } - ], - "installedSize": 37, - "maintainer": "Debian Install System Team \u003cdebian-boot@lists.debian.org\u003e", - "package": "libdebconfclient0", - "source": "cdebconf", - "sourceVersion": "", - "version": "0.270" - }, - "metadataType": "dpkg-db-entry", - "name": "libdebconfclient0", - "purl": "pkg:deb/debian/libdebconfclient0@0.270?arch=amd64\u0026upstream=cdebconf\u0026distro=debian-12", - "type": "deb", - "version": "0.270" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libdeflate0:libdeflate0:1.14-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "9489a70dbd1c4a4e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libdeflate0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libdeflate0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libdeflate0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libdeflate0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libdeflate0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libdeflate0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "15a6cad0d91fef0aa1c510fef101e50c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libdeflate.so.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c7a098e6ecdc1278b70aa523fd62be0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libdeflate0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8844ea61c1d53816c894e7a51e1c83f3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libdeflate0/copyright" - } - ], - "installedSize": 161, - "maintainer": "Debian Med Packaging Team \u003cdebian-med-packaging@lists.alioth.debian.org\u003e", - "package": "libdeflate0", - "source": "libdeflate", - "sourceVersion": "", - "version": "1.14-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libdeflate0", - "purl": "pkg:deb/debian/libdeflate0@1.14-1?arch=amd64\u0026upstream=libdeflate\u0026distro=debian-12", - "type": "deb", - "version": "1.14-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libedit2:libedit2:3.1-20221030-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "7fd7b88666480d11", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libedit2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libedit2/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libedit2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libedit2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libedit2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libedit2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libbsd0 (\u003e= 0.1.3)", - "libc6 (\u003e= 2.33)", - "libtinfo6 (\u003e= 6)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "ddca1ce4a7d3d873de0b962ff61ed931" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libedit.so.2.0.70" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a4ffdebcf0b55a8731be8d593063cda" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libedit2/TODO.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "81cce70182cb42258509a5a457f17aac" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libedit2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f28297ea5c235a217837c6bf538797d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libedit2/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7af8917847d961cd40ec83a79dea107" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libedit2/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd87d458ba3899e7bb3a71b9e2745681" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libedit2" - }, - { - "digest": { - "algorithm": "md5", - "value": "15d2c5c8984a8038b4d6f524a5d42ac7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/editrc.5edit.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9695a3713b04c772ce3ba4d21208692" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/editline.7edit.gz" - } - ], - "installedSize": 258, - "maintainer": "LLVM Packaging Team \u003cpkg-llvm-team@lists.alioth.debian.org\u003e", - "package": "libedit2", - "source": "libedit", - "sourceVersion": "", - "version": "3.1-20221030-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libedit2", - "purl": "pkg:deb/debian/libedit2@3.1-20221030-2?arch=amd64\u0026upstream=libedit\u0026distro=debian-12", - "type": "deb", - "version": "3.1-20221030-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libexpat1:libexpat1:2.5.0-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "647da6a471c14b1e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libexpat1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libexpat1/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libexpat1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libexpat1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libexpat1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libexpat1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.25)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "700f06de2a26deb43b60781992606b27" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libexpat.so.1.8.10" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e787be9611b07af3bce47f8d5b7a166" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libexpatw.so.1.8.10" - }, - { - "digest": { - "algorithm": "md5", - "value": "4fcc7d1effd5d9789581801bd86b27d2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libexpat1/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "3be7a072628be0c535d03e3b354e3046" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libexpat1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "934485e33f2bc655a856f0a752d2e278" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libexpat1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c1b12856c3814fdeed96d5657810cf64" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libexpat1/copyright" - } - ], - "installedSize": 387, - "maintainer": "Laszlo Boszormenyi (GCS) \u003cgcs@debian.org\u003e", - "package": "libexpat1", - "source": "expat", - "sourceVersion": "", - "version": "2.5.0-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libexpat1", - "purl": "pkg:deb/debian/libexpat1@2.5.0-1?arch=amd64\u0026upstream=expat\u0026distro=debian-12", - "type": "deb", - "version": "2.5.0-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libext2fs2:libext2fs2:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ba7d9cd5ef6527ef", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "Kazlib", - "type": "declared", - "urls": [], - "value": "Kazlib" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "spdxExpression": "Latex2e", - "type": "declared", - "urls": [], - "value": "Latex2e" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libext2fs2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libext2fs2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libext2fs2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "3e5c50890aa03934db20edab4ef35831" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libe2p.so.2.3" - }, - { - "digest": { - "algorithm": "md5", - "value": "5eb1c0b826ed0fa1782d8fe81855bacf" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libext2fs.so.2.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "c73e485baca2029fd7f89c78f63b7a4b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libext2fs2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1310ed8edd8d42af06394a2c050f9c8c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libext2fs2/copyright" - } - ], - "installedSize": 534, - "maintainer": "Theodore Y. Ts'o \u003ctytso@mit.edu\u003e", - "package": "libext2fs2", - "provides": [ - "e2fslibs (= 1.47.0-2)" - ], - "source": "e2fsprogs", - "sourceVersion": "", - "version": "1.47.0-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libext2fs2", - "purl": "pkg:deb/debian/libext2fs2@1.47.0-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-12", - "type": "deb", - "version": "1.47.0-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libffi8:libffi8:3.4.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "b2b6d2667df8c2ec", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libffi8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libffi8/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libffi8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libffi8/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libffi8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libffi8/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libffi8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libffi8/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libffi8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libffi8/copyright" - } - ], - "spdxExpression": "MPL-1.1", - "type": "declared", - "urls": [], - "value": "MPL-1.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libffi8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libffi8/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libffi8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libffi8/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libffi8/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libffi8/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libffi8:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libffi8:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "0a047016babead5cbee4887e217ff8bb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libffi.so.8.1.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "48db00ac48156f832a30af6fda2c8b27" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libffi8/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d0c28bc3b4ec40de1d83250023f3c639" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libffi8/copyright" - } - ], - "installedSize": 68, - "maintainer": "Debian GCC Maintainers \u003cdebian-gcc@lists.debian.org\u003e", - "package": "libffi8", - "provides": [ - "libffi8ubuntu1 (= 3.4.4-1)" - ], - "source": "libffi", - "sourceVersion": "", - "version": "3.4.4-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libffi8", - "purl": "pkg:deb/debian/libffi8@3.4.4-1?arch=amd64\u0026upstream=libffi\u0026distro=debian-12", - "type": "deb", - "version": "3.4.4-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libfontconfig1:libfontconfig1:2.14.1-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ea9c618e3b8ed6de", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/libfontconfig1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfontconfig1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libfontconfig1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libfontconfig1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)", - "libexpat1 (\u003e= 2.0.1)", - "libfreetype6 (\u003e= 2.9.1)", - "fontconfig-config (\u003e= 2.14.1-4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "cb103d3341906fa48156420b155195a4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "c179b478b16d7b9d700a2d78d130e0c2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libfontconfig1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ffc010f3b92c1f32a60a4edf138c7b9a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libfontconfig1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4648df9e8d6215ae7dd16ce863b16967" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libfontconfig1/copyright" - } - ], - "installedSize": 579, - "maintainer": "Debian freedesktop.org maintainers \u003cpkg-freedesktop-maintainers@lists.alioth.debian.org\u003e", - "package": "libfontconfig1", - "provides": [ - "libfontconfig" - ], - "source": "fontconfig", - "sourceVersion": "", - "version": "2.14.1-4" - }, - "metadataType": "dpkg-db-entry", - "name": "libfontconfig1", - "purl": "pkg:deb/debian/libfontconfig1@2.14.1-4?arch=amd64\u0026upstream=fontconfig\u0026distro=debian-12", - "type": "deb", - "version": "2.14.1-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libfreetype6:libfreetype6:2.12.1\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "057915e653a8e373", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "BSL-1.0", - "type": "declared", - "urls": [], - "value": "BSL-1.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "FSFAP", - "type": "declared", - "urls": [], - "value": "FSFAP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "FTL", - "type": "declared", - "urls": [], - "value": "FTL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "OpenGroup-BSD-like" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Public-Domain" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "spdxExpression": "Zlib", - "type": "declared", - "urls": [], - "value": "Zlib" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libfreetype6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libfreetype6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libfreetype6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libbrotli1 (\u003e= 0.6.0)", - "libc6 (\u003e= 2.33)", - "libpng16-16 (\u003e= 1.6.2-1)", - "zlib1g (\u003e= 1:1.1.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "2dc21a6c8eded5dc56eea20f3083b59f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.3" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d0f0fbe76a19c4993d98a0d6975fea1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libfreetype6/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "bde69a9164d025cbd47aa5b54a7a37b8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libfreetype6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "48a55eb21d4fe47c855f66b26ac7370c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libfreetype6/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "25bd4a30afaea556008d9b47ad64dd1f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libfreetype6/copyright" - } - ], - "installedSize": 890, - "maintainer": "Hugh McMaster \u003chugh.mcmaster@outlook.com\u003e", - "package": "libfreetype6", - "source": "freetype", - "sourceVersion": "", - "version": "2.12.1+dfsg-5" - }, - "metadataType": "dpkg-db-entry", - "name": "libfreetype6", - "purl": "pkg:deb/debian/libfreetype6@2.12.1+dfsg-5?arch=amd64\u0026upstream=freetype\u0026distro=debian-12", - "type": "deb", - "version": "2.12.1+dfsg-5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libgav1-1:libgav1-1:0.18.0-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgav1-1:libgav1_1:0.18.0-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgav1_1:libgav1-1:0.18.0-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgav1_1:libgav1_1:0.18.0-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgav1:libgav1-1:0.18.0-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgav1:libgav1_1:0.18.0-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "46c5e6ecb2b65323", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgav1-1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgav1-1/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgav1-1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgav1-1/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libgav1-1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgav1-1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libgav1-1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libgav1-1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libabsl20220623 (\u003e= 0~20220623.0-1)", - "libc6 (\u003e= 2.34)", - "libgcc-s1 (\u003e= 3.3.1)", - "libstdc++6 (\u003e= 12)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "6549d4b5ed37667670ec56cd065b192b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libgav1.so.1.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "144a912f81df8da49f5b918b81db276e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgav1-1/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0921e0c8e28973ad2a12a825c9c2ac2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgav1-1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cdd248b5d3adc4091ae41fc8621d040e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgav1-1/copyright" - } - ], - "installedSize": 945, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "libgav1-1", - "source": "libgav1", - "sourceVersion": "0.18.0-1", - "version": "0.18.0-1+b1" - }, - "metadataType": "dpkg-db-entry", - "name": "libgav1-1", - "purl": "pkg:deb/debian/libgav1-1@0.18.0-1+b1?arch=amd64\u0026upstream=libgav1@0.18.0-1\u0026distro=debian-12", - "type": "deb", - "version": "0.18.0-1+b1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libgcc-s1:libgcc-s1:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgcc-s1:libgcc_s1:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgcc_s1:libgcc-s1:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgcc_s1:libgcc_s1:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgcc:libgcc-s1:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgcc:libgcc_s1:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "38b424bee2a8db35", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgcc-s1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Artistic" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgcc-s1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "GFDL-1.2-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgcc-s1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgcc-s1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgcc-s1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgcc-s1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libgcc-s1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libgcc-s1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libgcc-s1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "gcc-12-base (= 12.2.0-14)", - "libc6 (\u003e= 2.35)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "5bb4432ea5df587609caa090043856ae" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libgcc_s.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "44a14dcf85ae45e233e4d47509cc2369" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libgcc-s1" - } - ], - "installedSize": 140, - "maintainer": "Debian GCC Maintainers \u003cdebian-gcc@lists.debian.org\u003e", - "package": "libgcc-s1", - "provides": [ - "libgcc1 (= 1:12.2.0-14)" - ], - "source": "gcc-12", - "sourceVersion": "", - "version": "12.2.0-14" - }, - "metadataType": "dpkg-db-entry", - "name": "libgcc-s1", - "purl": "pkg:deb/debian/libgcc-s1@12.2.0-14?arch=amd64\u0026upstream=gcc-12\u0026distro=debian-12", - "type": "deb", - "version": "12.2.0-14" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libgcrypt20:libgcrypt20:1.10.1-3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "56e66cdbccf3f7eb", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgcrypt20/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgcrypt20/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgcrypt20/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgcrypt20/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libgcrypt20/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgcrypt20/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libgcrypt20:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libgcrypt20:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libgpg-error0 (\u003e= 1.27)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "7eff1b3e7ba58cea9c47deac3ab27de5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libgcrypt.so.20.4.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "218dc71f72bcbeacfd431610f317e64d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgcrypt20/AUTHORS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f3e4f45e67fa77a8396e57416c3442a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgcrypt20/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "274e44ee8aab4ca2a2d25779a019f2f3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgcrypt20/README.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5bf617304965b816407c00a3a9d410c2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgcrypt20/THANKS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a4e0a14a15845be403ad4abdff7eb65" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgcrypt20/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee9904c925cf18f5068037850c7a69c2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgcrypt20/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd50a46485f2520930843f57697ea5cb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgcrypt20/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "4de493de6eba715dcddb7559a8e2c1bc" - }, - "isConfigFile": false, - "path": "/usr/share/libgcrypt20/clean-up-unmanaged-libraries" - } - ], - "installedSize": 1592, - "maintainer": "Debian GnuTLS Maintainers \u003cpkg-gnutls-maint@lists.alioth.debian.org\u003e", - "package": "libgcrypt20", - "source": "", - "sourceVersion": "", - "version": "1.10.1-3" - }, - "metadataType": "dpkg-db-entry", - "name": "libgcrypt20", - "purl": "pkg:deb/debian/libgcrypt20@1.10.1-3?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.10.1-3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libgd3:libgd3:2.3.3-9:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "df7d1f0196fd5968", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GAP~Makefile.in" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GAP~configure" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "GD", - "type": "declared", - "urls": [], - "value": "GD" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "HPND", - "type": "declared", - "urls": [], - "value": "HPND" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "WEBP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - ], - "spdxExpression": "Xfig", - "type": "declared", - "urls": [], - "value": "XFIG" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libgd3/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libgd3:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libgd3:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libavif15 (\u003e= 0.11.1)", - "libc6 (\u003e= 2.29)", - "libfontconfig1 (\u003e= 2.12.6)", - "libfreetype6 (\u003e= 2.2.1)", - "libheif1 (\u003e= 1.3.2)", - "libjpeg62-turbo (\u003e= 1.3.1)", - "libpng16-16 (\u003e= 1.6.2-1)", - "libtiff6 (\u003e= 4.0.3)", - "libwebp7 (\u003e= 1.2.4)", - "libxpm4" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "2a57fb75ef371c9a859f0941c340c5f5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libgd.so.3.0.11" - }, - { - "digest": { - "algorithm": "md5", - "value": "a36ad69b19cf84e21c9709a533702a11" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgd3/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e350b7feb52bcf0bd67fc917a0b78182" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgd3/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f92bc9c8dbf132b1977a8e6c46362839" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgd3/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "43a0895ba7ba88ad91e8dcea5b1520cf" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libgd3" - } - ], - "installedSize": 448, - "maintainer": "GD Team \u003cteam+gd@tracker.debian.org\u003e", - "package": "libgd3", - "source": "libgd2", - "sourceVersion": "", - "version": "2.3.3-9" - }, - "metadataType": "dpkg-db-entry", - "name": "libgd3", - "purl": "pkg:deb/debian/libgd3@2.3.3-9?arch=amd64\u0026upstream=libgd2\u0026distro=debian-12", - "type": "deb", - "version": "2.3.3-9" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libgeoip1:libgeoip1:1.6.12-10:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "5b6897fbe1a544d7", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgeoip1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgeoip1/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgeoip1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgeoip1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgeoip1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgeoip1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libgeoip1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgeoip1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libgeoip1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libgeoip1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "5aff6bef175113ce873f110d64edb48e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libGeoIP.so.1.6.12" - }, - { - "digest": { - "algorithm": "md5", - "value": "c1a5a5c9b807597fafd29495e02fe90c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgeoip1/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d8e7eb1bb7fdc7834c43896d8d2bcb1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgeoip1/README.md.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "51f184b5486a9ae58a816bdd7e1cf597" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgeoip1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d430dc443108f0ae2810ff0320de9a5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgeoip1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "830ef4b9921ca805cebeeca7ce0f1789" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgeoip1/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "abf55315926bb7c6ae086a4820c681e1" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libgeoip1" - } - ], - "installedSize": 279, - "maintainer": "Patrick Matthäi \u003cpmatthaei@debian.org\u003e", - "package": "libgeoip1", - "source": "geoip", - "sourceVersion": "", - "version": "1.6.12-10" - }, - "metadataType": "dpkg-db-entry", - "name": "libgeoip1", - "purl": "pkg:deb/debian/libgeoip1@1.6.12-10?arch=amd64\u0026upstream=geoip\u0026distro=debian-12", - "type": "deb", - "version": "1.6.12-10" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libgmp10:libgmp10:2\\:6.2.1\\+dfsg1-1.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "58578df1b5161e39", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgmp10/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgmp10/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgmp10/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgmp10/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgmp10/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgmp10/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgmp10/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgmp10/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgmp10/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgmp10/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgmp10/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgmp10/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libgmp10/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgmp10/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libgmp10:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libgmp10:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "7859e5253b7f725eb57d12bf26a80e0a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "061786ca72ba56ab851af66f5b4566b4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgmp10/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a1138ccf34db97664b235482f93a455" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgmp10/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "03b728a270d58c61a72bdd6cc4da398d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgmp10/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b83aca9c3c7f257e7b9ca756fa8a6480" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgmp10/copyright" - } - ], - "installedSize": 855, - "maintainer": "Debian Science Team \u003cdebian-science-maintainers@lists.alioth.debian.org\u003e", - "package": "libgmp10", - "source": "gmp", - "sourceVersion": "", - "version": "2:6.2.1+dfsg1-1.1" - }, - "metadataType": "dpkg-db-entry", - "name": "libgmp10", - "purl": "pkg:deb/debian/libgmp10@2:6.2.1+dfsg1-1.1?arch=amd64\u0026upstream=gmp\u0026distro=debian-12", - "type": "deb", - "version": "2:6.2.1+dfsg1-1.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libgnutls30:libgnutls30:3.7.9-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "1de6e19dee40b0ab", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "CC0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "GFDL-1.3-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPLv3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPLv2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPLv3+_or_GPLv2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "The" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libgnutls30/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libgnutls30:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libgnutls30:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libgmp10 (\u003e= 2:6.2.1+dfsg1)", - "libhogweed6 (\u003e= 3.6)", - "libidn2-0 (\u003e= 2.0.0)", - "libnettle8 (\u003e= 3.7~)", - "libp11-kit0 (\u003e= 0.23.18.1)", - "libtasn1-6 (\u003e= 4.14)", - "libunistring2 (\u003e= 0.9.7)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "5059674dd349d62ed3e542a071f9afc2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libgnutls.so.30.34.3" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e371b9ba6ad8a19131aa617f8d3f436" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgnutls30/AUTHORS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "787dbcb5ca39fc65cc813b879743c903" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgnutls30/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "59c804ec6b613c01248177d8bd6aa318" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgnutls30/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1704a4c589819746f4ed9a9020d6375a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgnutls30/README.md.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "edef2c31672f8e9ac53b1093a61e2664" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgnutls30/THANKS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "46538e2d04a64debf1fbe6c083f93686" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgnutls30/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4106c1b3228e21806c12367bee954294" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgnutls30/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "adfc1e8612bfa72485d4677930c849ec" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgnutls30/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee878136c4f447c57018df29243832ca" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd36427ff9e22f38f938a7b8f35a28ef" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e143f86f25be5895090781ba79def00" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "14a34f14bbeeea26818417ec1fb78ac1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd409f37f827c31fb47f45509dbf2f5c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4bab1d2048e9d878540e285f08b86952" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b0f278bcdea5cfed50d1a173a7a09cc2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8af8dc51f3f97ed29fc9f681c71d953e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ka/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "da9f6530a2b212570fd83d72a9382f9f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ms/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "414fcb89ff96dbedd630b202e301c436" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3932298cfe507979d57575f087a7a0e6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad9bb4bae27d6aec66d2d9a6b939f530" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c0a252d314313c987f84ab20a18423e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6ac2fa243f40421c709764595190809" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a61d70f99952ad7b6f0cb0c0f80ce1d0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "88fa30da36db2b04ef4e4a32ebe768e9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "29e51ae04287655fac62f8020bfcabf7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/gnutls30.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a24a44daa88d4509590e63f1a9a38b8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/gnutls30.mo" - } - ], - "installedSize": 3381, - "maintainer": "Debian GnuTLS Maintainers \u003cpkg-gnutls-maint@lists.alioth.debian.org\u003e", - "package": "libgnutls30", - "source": "gnutls28", - "sourceVersion": "", - "version": "3.7.9-2+deb12u2" - }, - "metadataType": "dpkg-db-entry", - "name": "libgnutls30", - "purl": "pkg:deb/debian/libgnutls30@3.7.9-2+deb12u2?arch=amd64\u0026upstream=gnutls28\u0026distro=debian-12", - "type": "deb", - "version": "3.7.9-2+deb12u2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libgpg-error0:libgpg-error0:1.46-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgpg-error0:libgpg_error0:1.46-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgpg_error0:libgpg-error0:1.46-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgpg_error0:libgpg_error0:1.46-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgpg:libgpg-error0:1.46-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgpg:libgpg_error0:1.46-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "3344e28bea60387e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgpg-error0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgpg-error0/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgpg-error0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgpg-error0/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgpg-error0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgpg-error0/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgpg-error0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgpg-error0/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgpg-error0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgpg-error0/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgpg-error0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgpg-error0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "g10-permissive" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libgpg-error0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgpg-error0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libgpg-error0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libgpg-error0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "54dd33937232116361f32eb2b204a2f7" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libgpg-error.so.0.33.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5067d861e099a9d3c756f4855b066c9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgpg-error0/README.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d304110064baa70bb29ff6f78fecc3ab" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgpg-error0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbf19d3975018d5cbdead38e32765842" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgpg-error0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c98e3091a268a49112fbf66c3029577c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgpg-error0/copyright" - } - ], - "installedSize": 192, - "maintainer": "Debian GnuPG Maintainers \u003cpkg-gnupg-maint@lists.alioth.debian.org\u003e", - "package": "libgpg-error0", - "source": "libgpg-error", - "sourceVersion": "", - "version": "1.46-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libgpg-error0", - "purl": "pkg:deb/debian/libgpg-error0@1.46-1?arch=amd64\u0026upstream=libgpg-error\u0026distro=debian-12", - "type": "deb", - "version": "1.46-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libgssapi-krb5-2:libgssapi-krb5-2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgssapi-krb5-2:libgssapi_krb5_2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgssapi_krb5_2:libgssapi-krb5-2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgssapi_krb5_2:libgssapi_krb5_2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgssapi-krb5:libgssapi-krb5-2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgssapi-krb5:libgssapi_krb5_2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgssapi_krb5:libgssapi-krb5-2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgssapi_krb5:libgssapi_krb5_2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgssapi:libgssapi-krb5-2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libgssapi:libgssapi_krb5_2:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "eb530b6c06324c23", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libgssapi-krb5-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgssapi-krb5-2/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libgssapi-krb5-2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgssapi-krb5-2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libgssapi-krb5-2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libgssapi-krb5-2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)", - "libcom-err2 (\u003e= 1.43.9)", - "libk5crypto3 (\u003e= 1.20)", - "libkrb5-3 (= 1.20.1-2+deb12u1)", - "libkrb5support0 (\u003e= 1.15~beta1)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "7ffe67bc9ca55d1ed123ac429ba6f368" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "24bd3d3ff35039a1987adb610191d5c1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgssapi-krb5-2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ccaedcaac156d04b53a8e5f5af7dcfa" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libgssapi-krb5-2/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff06c79275a2e9c2cece1bdf3d8d1b3b" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libgssapi-krb5-2" - } - ], - "installedSize": 420, - "maintainer": "Sam Hartman \u003chartmans@debian.org\u003e", - "package": "libgssapi-krb5-2", - "source": "krb5", - "sourceVersion": "", - "version": "1.20.1-2+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libgssapi-krb5-2", - "purl": "pkg:deb/debian/libgssapi-krb5-2@1.20.1-2+deb12u1?arch=amd64\u0026upstream=krb5\u0026distro=debian-12", - "type": "deb", - "version": "1.20.1-2+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libheif1:libheif1:1.15.1-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "aa5c2ac44843f56b", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libheif1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BOOST-1.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libheif1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libheif1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libheif1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libheif1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libheif1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libheif1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libheif1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libheif1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libheif1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libheif1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libaom3 (\u003e= 3.2.0)", - "libc6 (\u003e= 2.34)", - "libdav1d6 (\u003e= 0.1.0)", - "libde265-0 (\u003e= 1.0.7)", - "libgcc-s1 (\u003e= 3.0)", - "libstdc++6 (\u003e= 11)", - "libx265-199 (\u003e= 3.5)", - "zlib1g (\u003e= 1:1.1.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "cf47897dc898299a5c9d1ff61074877d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libheif.so.1.15.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "982533b28c2837d214fba1709f2bd2bc" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libheif1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "197d0ff6ba05d57492de3c074969dd6b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libheif1/copyright" - } - ], - "installedSize": 659, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "libheif1", - "source": "libheif", - "sourceVersion": "", - "version": "1.15.1-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libheif1", - "purl": "pkg:deb/debian/libheif1@1.15.1-1?arch=amd64\u0026upstream=libheif\u0026distro=debian-12", - "type": "deb", - "version": "1.15.1-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libhogweed6:libhogweed6:3.8.1-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "1bf51448294e0e43", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GAP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libhogweed6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libhogweed6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libhogweed6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libgmp10 (\u003e= 2:6.2.1+dfsg1)", - "libnettle8" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "7c2755f02c6cc4fae408d4b588ac9256" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libhogweed.so.6.6" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f56bf3499ea0ee03da72f7d577a9f39" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libhogweed6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e39e3b75abc1a0e88eb8aa23c79de9d2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libhogweed6/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6dc1c18ba52c28e390766ad16066836f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libhogweed6/copyright" - } - ], - "installedSize": 463, - "maintainer": "Magnus Holmgren \u003cholmgren@debian.org\u003e", - "package": "libhogweed6", - "source": "nettle", - "sourceVersion": "", - "version": "3.8.1-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libhogweed6", - "purl": "pkg:deb/debian/libhogweed6@3.8.1-2?arch=amd64\u0026upstream=nettle\u0026distro=debian-12", - "type": "deb", - "version": "3.8.1-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libicu72:libicu72:72.1-3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "976da01d5e9119c5", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libicu72/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libicu72/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libicu72/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libicu72/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libicu72/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libicu72/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libicu72:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libicu72:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libgcc-s1 (\u003e= 3.0)", - "libstdc++6 (\u003e= 12)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "f1b84466b683dea375f62b9d82ec991b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libicudata.so.72.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ef2601172a2fa5653e735df39e6554c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libicui18n.so.72.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "f09f175de400c1a49b0b51d9b1e0fdea" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libicuio.so.72.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "f75181cf59fe2a11493270025976e810" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libicutest.so.72.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa77e8c2224f4deff46110e171bdac80" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libicutu.so.72.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "6eb1dcd61ad95346ae2c0440f679986f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libicuuc.so.72.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "f80be8ab56800344704842052f066012" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libicu72/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "103fe2146977a9f78d50aa3df96ada1c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libicu72/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c7072050f7414e77b0aa6b696e83062" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libicu72" - } - ], - "installedSize": 36170, - "maintainer": "Laszlo Boszormenyi (GCS) \u003cgcs@debian.org\u003e", - "package": "libicu72", - "source": "icu", - "sourceVersion": "", - "version": "72.1-3" - }, - "metadataType": "dpkg-db-entry", - "name": "libicu72", - "purl": "pkg:deb/debian/libicu72@72.1-3?arch=amd64\u0026upstream=icu\u0026distro=debian-12", - "type": "deb", - "version": "72.1-3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libidn2-0:libidn2-0:2.3.3-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libidn2-0:libidn2_0:2.3.3-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libidn2_0:libidn2-0:2.3.3-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libidn2_0:libidn2_0:2.3.3-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libidn2:libidn2-0:2.3.3-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libidn2:libidn2_0:2.3.3-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "54553ec3061f963f", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libidn2-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libidn2-0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libidn2-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libidn2-0/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libidn2-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libidn2-0/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libidn2-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libidn2-0/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libidn2-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libidn2-0/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libidn2-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libidn2-0/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libidn2-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libidn2-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Unicode" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libidn2-0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libidn2-0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libidn2-0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libidn2-0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libunistring2 (\u003e= 0.9.7)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "c745ba8b8dfd28a2aa7efb3081ca5eed" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libidn2.so.0.3.8" - }, - { - "digest": { - "algorithm": "md5", - "value": "27daa6a00c27628d7285f8791268d3c3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libidn2-0/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b9f326b7044e2225636563baac642a8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libidn2-0/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "963db76749e6e8a6e597853771e8367c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libidn2-0/README.md.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9aaa914414d88c82213e89f5d9aa3f5f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libidn2-0/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "acb66a8258d2b906a1cd379514f2374d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libidn2-0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ee987093b252d2b46510b6d9b99e259" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libidn2-0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5afea15fdb99bb723ecb2c7efc4ccb90" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libidn2-0/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "93713540998096b9ba9baca9fc3cbeb0" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libidn2-0" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa3a0fb7aa164e25ba89d519563bd95d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ae1e0c02633b711fff7403442300a5f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "45fedd38fbd4fc87e88143c7e357def2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7125fc7bafbb80d4a057ee67f88ef2f0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2bc9c65a63c96612af8de492b7d2cefe" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8c65925ca60f0b836ba4777b0dbcd87" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c339188e3e9801b48a638f45e11a6532" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6fe3e799fc5319c2343fbe3c1dd0ac3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fur/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6913f03edd2d0a610f56affe8baf0115" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5bf49240b94f9b1056e7c21363650cf0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a3f58817bc46ff3cfc219a74d20b225" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e5dbd43708f69bc4c83819ea4c7da67" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "72cebe5a7263e4034fe7ff660021637a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3035aeedace50bc52605b19a04662930" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ka/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "76859c590b055333ba8fe05e9861279c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d1a02ed4b269e2d6d09bcd842a8e2da" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c938505db532fccac7bc00714e268d23" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e21c59649c6d25fbe48c01d10ef970a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "387c48945d7f1495da5f43bd1da9d4e9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2074c7d76303f3c7f33ab5863c81823" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "246b29ca2accf73b65c29496a663d764" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "373e8f1e7ff5184121a83be825e6ad47" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e30a4ea1c303e0e52eda93ddc23ce6d1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/libidn2.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "18b922a9f5c185603c0da6c549b8d6c4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/libidn2.mo" - } - ], - "installedSize": 439, - "maintainer": "Debian Libidn team \u003chelp-libidn@gnu.org\u003e", - "package": "libidn2-0", - "source": "libidn2", - "sourceVersion": "2.3.3-1", - "version": "2.3.3-1+b1" - }, - "metadataType": "dpkg-db-entry", - "name": "libidn2-0", - "purl": "pkg:deb/debian/libidn2-0@2.3.3-1+b1?arch=amd64\u0026upstream=libidn2@2.3.3-1\u0026distro=debian-12", - "type": "deb", - "version": "2.3.3-1+b1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libintl:libintl:0.21:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "java-archive-cataloger", - "id": "4def493d5f96533c", - "language": "java", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/java/libintl-0.21.jar", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/java/libintl-0.21.jar" - } - ], - "metadata": { - "digest": [ - { - "algorithm": "sha1", - "value": "1460d2aaf8dd90a68249717470bcda7415a9ef01" - } - ], - "manifest": { - "main": [ - { - "key": "Manifest-Version", - "value": "1.0" - }, - { - "key": "Created-By", - "value": "17.0.6 (Debian)" - } - ] - }, - "virtualPath": "/usr/share/java/libintl-0.21.jar" - }, - "metadataType": "java-archive", - "name": "libintl", - "purl": "pkg:maven/libintl/libintl@0.21", - "type": "java-archive", - "version": "0.21" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libjbig0:libjbig0:2.1-6.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a880b6bdf5e0cde8", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libjbig0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjbig0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libjbig0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjbig0/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libjbig0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjbig0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libjbig0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libjbig0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "d8cb171cd46a9572ab2bd34bcf1a85c9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libjbig.so.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "147c11c7caf6cee822385775ecdc7ca2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libjbig0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b1bf9b1241f380ee8410e6a41c328544" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libjbig0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a78e4d2489ff18028b35525830616f22" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libjbig0/copyright" - } - ], - "installedSize": 84, - "maintainer": "Michael van der Kolff \u003cmvanderkolff@gmail.com\u003e", - "package": "libjbig0", - "source": "jbigkit", - "sourceVersion": "", - "version": "2.1-6.1" - }, - "metadataType": "dpkg-db-entry", - "name": "libjbig0", - "purl": "pkg:deb/debian/libjbig0@2.1-6.1?arch=amd64\u0026upstream=jbigkit\u0026distro=debian-12", - "type": "deb", - "version": "2.1-6.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libjpeg62-turbo:libjpeg62-turbo:1\\:2.1.5-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libjpeg62-turbo:libjpeg62_turbo:1\\:2.1.5-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libjpeg62_turbo:libjpeg62-turbo:1\\:2.1.5-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libjpeg62_turbo:libjpeg62_turbo:1\\:2.1.5-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libjpeg62:libjpeg62-turbo:1\\:2.1.5-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libjpeg62:libjpeg62_turbo:1\\:2.1.5-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "7b51a7c2d29cb3e9", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libjpeg62-turbo/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjpeg62-turbo/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libjpeg62-turbo/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjpeg62-turbo/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-BY-LC-NE" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libjpeg62-turbo/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjpeg62-turbo/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libjpeg62-turbo/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjpeg62-turbo/copyright" - } - ], - "spdxExpression": "NTP", - "type": "declared", - "urls": [], - "value": "NTP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libjpeg62-turbo/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjpeg62-turbo/copyright" - } - ], - "spdxExpression": "Zlib", - "type": "declared", - "urls": [], - "value": "Zlib" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libjpeg62-turbo/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjpeg62-turbo/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libjpeg62-turbo:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libjpeg62-turbo:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "76a09f06d6a3c7b9f0f809e5b3257ba8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libjpeg.so.62.3.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "40efb25efd9589fce4a220034e00813c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libjpeg62-turbo/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6bdd57589c4558706bb4d920cbcccd6e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libjpeg62-turbo/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4043538cf7c867d54f119d6ea1f8d6d4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libjpeg62-turbo/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d61e4219163c5b9ecedba4d4ce63f12" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libjpeg62-turbo" - } - ], - "installedSize": 677, - "maintainer": "Ondřej Surý \u003condrej@debian.org\u003e", - "package": "libjpeg62-turbo", - "provides": [ - "libjpeg62 (= 1:2.1.5-2)" - ], - "source": "libjpeg-turbo", - "sourceVersion": "", - "version": "1:2.1.5-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libjpeg62-turbo", - "purl": "pkg:deb/debian/libjpeg62-turbo@1:2.1.5-2?arch=amd64\u0026upstream=libjpeg-turbo\u0026distro=debian-12", - "type": "deb", - "version": "1:2.1.5-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libk5crypto3:libk5crypto3:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a762d1301d128fa5", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libk5crypto3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libk5crypto3/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libk5crypto3/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libk5crypto3/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libk5crypto3:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libk5crypto3:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)", - "libkrb5support0 (\u003e= 1.20)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "c320119d0716645aea74827809df1623" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5feb77b0c8b99b4a4d1125b7b4ded76" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libk5crypto3/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ccaedcaac156d04b53a8e5f5af7dcfa" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libk5crypto3/copyright" - } - ], - "installedSize": 260, - "maintainer": "Sam Hartman \u003chartmans@debian.org\u003e", - "package": "libk5crypto3", - "source": "krb5", - "sourceVersion": "", - "version": "1.20.1-2+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libk5crypto3", - "purl": "pkg:deb/debian/libk5crypto3@1.20.1-2+deb12u1?arch=amd64\u0026upstream=krb5\u0026distro=debian-12", - "type": "deb", - "version": "1.20.1-2+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libkeyutils1:libkeyutils1:1.6.3-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "47508eca670369df", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libkeyutils1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkeyutils1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libkeyutils1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkeyutils1/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libkeyutils1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkeyutils1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libkeyutils1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkeyutils1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libkeyutils1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkeyutils1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libkeyutils1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libkeyutils1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "3246af5ec57195e9fde5767a9c62c5d8" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libkeyutils.so.1.10" - }, - { - "digest": { - "algorithm": "md5", - "value": "25c830bc881a835662e68cb8d0122115" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libkeyutils1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "68be5a296e06516a403fee118c10a3a1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libkeyutils1/copyright" - } - ], - "installedSize": 40, - "maintainer": "Christian Kastner \u003cckk@debian.org\u003e", - "package": "libkeyutils1", - "source": "keyutils", - "sourceVersion": "", - "version": "1.6.3-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libkeyutils1", - "purl": "pkg:deb/debian/libkeyutils1@1.6.3-2?arch=amd64\u0026upstream=keyutils\u0026distro=debian-12", - "type": "deb", - "version": "1.6.3-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libkrb5-3:libkrb5-3:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libkrb5-3:libkrb5_3:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libkrb5_3:libkrb5-3:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libkrb5_3:libkrb5_3:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libkrb5:libkrb5-3:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libkrb5:libkrb5_3:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "476c9c20e1e7fc90", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libkrb5-3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkrb5-3/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libkrb5-3/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkrb5-3/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libkrb5-3:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libkrb5-3:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libcom-err2 (\u003e= 1.43.9)", - "libk5crypto3 (\u003e= 1.20)", - "libkeyutils1 (\u003e= 1.5.9)", - "libkrb5support0 (= 1.20.1-2+deb12u1)", - "libssl3 (\u003e= 3.0.0)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "c7cafc847ffb91a4c121495f997224e8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/krb5/plugins/preauth/spake.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "706faf04f8b3c45e1537cc2478fa4bc7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6e59577f80eff240add64ddc8814dd8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libkrb5-3/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "26d74f9852ad48650f0692826832812c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libkrb5-3/README.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3873dead947e3b59409f8ffbcd524209" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libkrb5-3/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ccaedcaac156d04b53a8e5f5af7dcfa" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libkrb5-3/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "b249491ce885ff8013facc9cac4f3714" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libkrb5-3" - } - ], - "installedSize": 1076, - "maintainer": "Sam Hartman \u003chartmans@debian.org\u003e", - "package": "libkrb5-3", - "source": "krb5", - "sourceVersion": "", - "version": "1.20.1-2+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libkrb5-3", - "purl": "pkg:deb/debian/libkrb5-3@1.20.1-2+deb12u1?arch=amd64\u0026upstream=krb5\u0026distro=debian-12", - "type": "deb", - "version": "1.20.1-2+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libkrb5support0:libkrb5support0:1.20.1-2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "e9edcdc78a2b088b", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libkrb5support0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkrb5support0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libkrb5support0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkrb5support0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libkrb5support0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libkrb5support0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "51590352039d1c96f33b2186cbe43376" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "a6566b334abc7125ac17befb78fe02c0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libkrb5support0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ccaedcaac156d04b53a8e5f5af7dcfa" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libkrb5support0/copyright" - } - ], - "installedSize": 133, - "maintainer": "Sam Hartman \u003chartmans@debian.org\u003e", - "package": "libkrb5support0", - "source": "krb5", - "sourceVersion": "", - "version": "1.20.1-2+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libkrb5support0", - "purl": "pkg:deb/debian/libkrb5support0@1.20.1-2+deb12u1?arch=amd64\u0026upstream=krb5\u0026distro=debian-12", - "type": "deb", - "version": "1.20.1-2+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libldap-2.5-0:libldap-2.5-0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libldap-2.5-0:libldap_2.5_0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libldap_2.5_0:libldap-2.5-0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libldap_2.5_0:libldap_2.5_0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libldap-2.5:libldap-2.5-0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libldap-2.5:libldap_2.5_0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libldap_2.5:libldap-2.5-0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libldap_2.5:libldap_2.5_0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libldap:libldap-2.5-0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libldap:libldap_2.5_0:2.5.13\\+dfsg-5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ed26cdfa87149cfa", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-California" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-variant" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-California" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "Beerware", - "type": "declared", - "urls": [], - "value": "Beerware" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat-ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat-UNM" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "F5" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "FSF-unlimited" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "JCG" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT-XC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "NeoSoft-permissive" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "OpenLDAP-2.8" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "UMich" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libldap-2.5-0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libldap-2.5-0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libldap-2.5-0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libgnutls30 (\u003e= 3.7.5)", - "libsasl2-2 (\u003e= 2.1.28+dfsg)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "349d0eec992dcf513d30b01a170e8aaf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/liblber-2.5.so.0.1.8" - }, - { - "digest": { - "algorithm": "md5", - "value": "084e47a3eb94abb1bfb1fe6a364e572f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libldap-2.5.so.0.1.8" - }, - { - "digest": { - "algorithm": "md5", - "value": "542ca9165ae50bfad3f099545c392531" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libldap-2.5-0/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "86aa745da5c7d95478e4cf5c88ebf616" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libldap-2.5-0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de0cb7f0a3e71cb24baa0a8cbb60336e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libldap-2.5-0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce2362322412c200127b2678ef531af1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libldap-2.5-0/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "7fb76767a343cf169a64d51351d208ea" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libldap-2.5-0" - } - ], - "installedSize": 553, - "maintainer": "Debian OpenLDAP Maintainers \u003cpkg-openldap-devel@lists.alioth.debian.org\u003e", - "package": "libldap-2.5-0", - "source": "openldap", - "sourceVersion": "", - "version": "2.5.13+dfsg-5" - }, - "metadataType": "dpkg-db-entry", - "name": "libldap-2.5-0", - "purl": "pkg:deb/debian/libldap-2.5-0@2.5.13+dfsg-5?arch=amd64\u0026upstream=openldap\u0026distro=debian-12", - "type": "deb", - "version": "2.5.13+dfsg-5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:liblerc4:liblerc4:4.0.0\\+ds-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "869d8117117c2a40", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblerc4/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/liblerc4/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/liblerc4/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/liblerc4/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/liblerc4:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/liblerc4:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.29)", - "libgcc-s1 (\u003e= 3.0)", - "libstdc++6 (\u003e= 11)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "afa8d3b6be5c0c05bce4cf1ec78ebaf7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libLerc.so.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "30f34b5e2698bab1bc087b61fa091e2b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblerc4/NOTICE" - }, - { - "digest": { - "algorithm": "md5", - "value": "38f1c98faaf84a0402c0284a2d645c7c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblerc4/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "301b5f38b82e02a89b8f3b3f73c80718" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblerc4/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ccdd9e2dcff2ad0c4ab15ac240fba6d5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblerc4/copyright" - } - ], - "installedSize": 649, - "maintainer": "Debian GIS Project \u003cpkg-grass-devel@lists.alioth.debian.org\u003e", - "package": "liblerc4", - "source": "lerc", - "sourceVersion": "", - "version": "4.0.0+ds-2" - }, - "metadataType": "dpkg-db-entry", - "name": "liblerc4", - "purl": "pkg:deb/debian/liblerc4@4.0.0+ds-2?arch=amd64\u0026upstream=lerc\u0026distro=debian-12", - "type": "deb", - "version": "4.0.0+ds-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:liblz4-1:liblz4-1:1.9.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:liblz4-1:liblz4_1:1.9.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:liblz4_1:liblz4-1:1.9.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:liblz4_1:liblz4_1:1.9.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:liblz4:liblz4-1:1.9.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:liblz4:liblz4_1:1.9.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "89a8f82cb9aef205", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblz4-1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblz4-1/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblz4-1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblz4-1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblz4-1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblz4-1/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/liblz4-1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblz4-1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/liblz4-1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/liblz4-1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "6fcd2182ee7a61ef2ea8933dec93f6e4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f214522f17325a71b1b76d2289f746a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblz4-1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "102f9e3db18eb21c3e85960b56ee85a2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblz4-1/copyright" - } - ], - "installedSize": 169, - "maintainer": "Nobuhiro Iwamatsu \u003ciwamatsu@debian.org\u003e", - "package": "liblz4-1", - "source": "lz4", - "sourceVersion": "", - "version": "1.9.4-1" - }, - "metadataType": "dpkg-db-entry", - "name": "liblz4-1", - "purl": "pkg:deb/debian/liblz4-1@1.9.4-1?arch=amd64\u0026upstream=lz4\u0026distro=debian-12", - "type": "deb", - "version": "1.9.4-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:liblzma5:liblzma5:5.4.1-0.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "50aacee46546d54f", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Autoconf" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "PD" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "PD-debian" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "config-h" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "noderivs" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "permissive-fsf" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "permissive-nowarranty" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "probably-PD" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/liblzma5/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/liblzma5:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/liblzma5:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "3084c465fbba157a511a3f710a8bc11f" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/liblzma.so.5.4.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d64993f73e00b7d3d8ddc93103946b8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblzma5/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "4106a97defca802a178e321d7a8877fc" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblzma5/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de1753ac3433d32083c49aeab5b148d8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblzma5/THANKS" - }, - { - "digest": { - "algorithm": "md5", - "value": "d15e556d5b6e6ba02d671c20c327e6d2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblzma5/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1cc22f16f0147fef3439fb5bdebe164c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblzma5/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "40bc16f251450701bfd0a5c8f5486d86" - }, - "isConfigFile": false, - "path": "/usr/share/doc/liblzma5/copyright" - } - ], - "installedSize": 333, - "maintainer": "Jonathan Nieder \u003cjrnieder@gmail.com\u003e", - "package": "liblzma5", - "source": "xz-utils", - "sourceVersion": "", - "version": "5.4.1-0.2" - }, - "metadataType": "dpkg-db-entry", - "name": "liblzma5", - "purl": "pkg:deb/debian/liblzma5@5.4.1-0.2?arch=amd64\u0026upstream=xz-utils\u0026distro=debian-12", - "type": "deb", - "version": "5.4.1-0.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libmd0:libmd0:1.0.4-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "e0d481a26eb4a8ba", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause-NetBSD" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-Aaron-D-Gifford" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "spdxExpression": "Beerware", - "type": "declared", - "urls": [], - "value": "Beerware" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain-md4" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain-md5" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain-sha1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libmd0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libmd0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libmd0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "6dedbbb2799dd21fe5b577f97ee279b3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libmd.so.0.0.5" - }, - { - "digest": { - "algorithm": "md5", - "value": "8052eed3b07f6f1b172418fb89fc3302" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libmd0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b07eb35513dcc7c9a82f6dd490cd1430" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libmd0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0436d4fb62a71f661d6e8b7812f9e1df" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libmd0/copyright" - } - ], - "installedSize": 79, - "maintainer": "Guillem Jover \u003cguillem@debian.org\u003e", - "package": "libmd0", - "source": "libmd", - "sourceVersion": "", - "version": "1.0.4-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libmd0", - "purl": "pkg:deb/debian/libmd0@1.0.4-2?arch=amd64\u0026upstream=libmd\u0026distro=debian-12", - "type": "deb", - "version": "1.0.4-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libmount1:libmount1:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "6f953476e6e42f91", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSLA" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libmount1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libmount1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libmount1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libblkid1 (\u003e= 2.17.2)", - "libc6 (\u003e= 2.34)", - "libselinux1 (\u003e= 3.1~)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "6caca3aac990d7ba6593c9a0211d0514" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libmount.so.1.1.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b1e839ea6141ac76b7c1c0e51a26fad" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libmount1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bb7fd1ae3732779966184f543b8a91e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libmount1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "353888f385cfb82eb97a693e78f3cc9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libmount1/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "e62223379c0953ef618cf04779628297" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libmount1" - } - ], - "installedSize": 454, - "maintainer": "util-linux packagers \u003cutil-linux@packages.debian.org\u003e", - "package": "libmount1", - "source": "util-linux", - "sourceVersion": "", - "version": "2.38.1-5+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libmount1", - "purl": "pkg:deb/debian/libmount1@2.38.1-5+deb12u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-12", - "type": "deb", - "version": "2.38.1-5+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libnettle8:libnettle8:3.8.1-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "d6bdae4cd6916b9c", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GAP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libnettle8/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libnettle8:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libnettle8:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.17)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "b0df0704886c53ea4834a09adcff3415" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libnettle.so.8.6" - }, - { - "digest": { - "algorithm": "md5", - "value": "de145e756705d705987037565186d26a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnettle8/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "abff0ed9dfbabf2621a5f9f4534dbc4b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnettle8/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f56bf3499ea0ee03da72f7d577a9f39" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnettle8/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e39e3b75abc1a0e88eb8aa23c79de9d2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnettle8/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6dc1c18ba52c28e390766ad16066836f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnettle8/copyright" - } - ], - "installedSize": 520, - "maintainer": "Magnus Holmgren \u003cholmgren@debian.org\u003e", - "package": "libnettle8", - "source": "nettle", - "sourceVersion": "", - "version": "3.8.1-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libnettle8", - "purl": "pkg:deb/debian/libnettle8@3.8.1-2?arch=amd64\u0026upstream=nettle\u0026distro=debian-12", - "type": "deb", - "version": "3.8.1-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libnghttp2-14:libnghttp2-14:1.52.0-1\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libnghttp2-14:libnghttp2_14:1.52.0-1\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libnghttp2_14:libnghttp2-14:1.52.0-1\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libnghttp2_14:libnghttp2_14:1.52.0-1\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libnghttp2:libnghttp2-14:1.52.0-1\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libnghttp2:libnghttp2_14:1.52.0-1\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "24835c355ffa8f6e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnghttp2-14/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnghttp2-14/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnghttp2-14/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnghttp2-14/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnghttp2-14/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnghttp2-14/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnghttp2-14/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnghttp2-14/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnghttp2-14/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnghttp2-14/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnghttp2-14/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnghttp2-14/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "all-permissive" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libnghttp2-14/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnghttp2-14/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libnghttp2-14:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libnghttp2-14:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.17)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "fa16e6eb438fe2462376932f0a47bfa2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libnghttp2.so.14.24.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "094ef752dd3840695495af6ad5edda7d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnghttp2-14/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "6063867d5e93d8d00441230b56fb38df" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnghttp2-14/README.rst.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c6dbffc19fb2d5faefa104bacc6c077" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnghttp2-14/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "23ae560f794dfa8373989c4e0ce3c1ca" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnghttp2-14/copyright" - } - ], - "installedSize": 220, - "maintainer": "Tomasz Buchert \u003ctomasz@debian.org\u003e", - "package": "libnghttp2-14", - "source": "nghttp2", - "sourceVersion": "", - "version": "1.52.0-1+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libnghttp2-14", - "purl": "pkg:deb/debian/libnghttp2-14@1.52.0-1+deb12u1?arch=amd64\u0026upstream=nghttp2\u0026distro=debian-12", - "type": "deb", - "version": "1.52.0-1+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libnuma1:libnuma1:2.0.16-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "6ce45dad023c1399", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnuma1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnuma1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libnuma1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnuma1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libnuma1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnuma1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libnuma1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libnuma1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "f310072a1a9ecc9b339557031bedcbf0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "fde281e25ee5578be9c5c75526699cdd" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnuma1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1fe113e4a892a0ae09bc7274eb4c5740" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libnuma1/copyright" - } - ], - "installedSize": 71, - "maintainer": "Ian Wienand \u003cianw@debian.org\u003e", - "package": "libnuma1", - "source": "numactl", - "sourceVersion": "", - "version": "2.0.16-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libnuma1", - "purl": "pkg:deb/debian/libnuma1@2.0.16-1?arch=amd64\u0026upstream=numactl\u0026distro=debian-12", - "type": "deb", - "version": "2.0.16-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libp11-kit0:libp11-kit0:0.24.1-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libp11-kit0:libp11_kit0:0.24.1-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libp11_kit0:libp11-kit0:0.24.1-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libp11_kit0:libp11_kit0:0.24.1-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libp11:libp11-kit0:0.24.1-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libp11:libp11_kit0:0.24.1-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "c230fd832bac5f75", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libp11-kit0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libp11-kit0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libp11-kit0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libp11-kit0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "ISC+IBM" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libp11-kit0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libp11-kit0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libp11-kit0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "permissive-like-automake-output" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libp11-kit0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "same-as-rest-of-p11kit" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libp11-kit0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libp11-kit0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libp11-kit0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libffi8 (\u003e= 3.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8c03dbd80aaf10b870d99ce3c30560bf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "49fc7d32551ad23c833fdff6227da06f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libp11-kit0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ea3388613833d874566f1e47e93bd41" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libp11-kit0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "02ed16b57a85f6cb629707ff7d39caa0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libp11-kit0/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "161f8ec95326f47d853cb7c1ee76c7b8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libp11-kit0/examples/pkcs11.conf.example" - } - ], - "installedSize": 1408, - "maintainer": "Debian GnuTLS Maintainers \u003cpkg-gnutls-maint@lists.alioth.debian.org\u003e", - "package": "libp11-kit0", - "source": "p11-kit", - "sourceVersion": "", - "version": "0.24.1-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libp11-kit0", - "purl": "pkg:deb/debian/libp11-kit0@0.24.1-2?arch=amd64\u0026upstream=p11-kit\u0026distro=debian-12", - "type": "deb", - "version": "0.24.1-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libpam-modules:libpam-modules:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam-modules:libpam_modules:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam_modules:libpam-modules:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam_modules:libpam_modules:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam:libpam-modules:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam:libpam_modules:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "12a018034482fe97", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-tcp_wrappers" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "Beerware", - "type": "declared", - "urls": [], - "value": "Beerware" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libpam-modules:amd64.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libpam-modules:amd64.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/libpam-modules:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libpam-modules:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "dc21d0fd769d655b311d785670e5c6ae" - }, - "isConfigFile": true, - "path": "/etc/security/access.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "164da8ffb87f3074179bc60b71d0b99f" - }, - "isConfigFile": true, - "path": "/etc/security/faillock.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "f1e26e8db6f7abd2d697d7dad3422c36" - }, - "isConfigFile": true, - "path": "/etc/security/group.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "0b1967ff9042a716ce6b01cb999aa1f5" - }, - "isConfigFile": true, - "path": "/etc/security/limits.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b3796403421d66db7defc46517711bc" - }, - "isConfigFile": true, - "path": "/etc/security/namespace.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "d9e6a7c85e966427ef23a04ec6c7000f" - }, - "isConfigFile": true, - "path": "/etc/security/namespace.init" - }, - { - "digest": { - "algorithm": "md5", - "value": "89cc8702173d5cd51abc152ae9f8d6bc" - }, - "isConfigFile": true, - "path": "/etc/security/pam_env.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d82df292d497bbeaaf8ebef18cd14f1" - }, - "isConfigFile": true, - "path": "/etc/security/sepermit.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "06e05c6079e839c8833ac7c3abfde192" - }, - "isConfigFile": true, - "path": "/etc/security/time.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba98beb9e21b8d951659a71340ee7109" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_access.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "58023daf3fd7a2bc22b030227a8c1716" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_debug.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "2200af0ed7a992851ffc3fab2fc02b8e" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_deny.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f68a09b09606e0c38b182c8a65bd41af" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_echo.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a9ea4788dda46deb7d0a28b176844ff" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_env.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "e48f7afbf708cb4283a57e87d3288791" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_exec.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "4fd347f0895786afea0252bf08708a3c" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_faildelay.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "49a5234e7bffaac2688b106c3dcf948d" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_faillock.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3491869c2c3040a99e5fe1bb2309024" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_filter.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce3f6f8a418020ddaaca7b2c056ce284" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_ftp.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b6c28b2787b58175c280481a6bf597b" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_group.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "de97c339fd7dcc27a7c0e54233d74776" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_issue.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b293a97f2e02cee2d7f4f8135ef12ae2" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_keyinit.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a28fdcf787254a9241193c68bcb5181" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_lastlog.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "4cc420f4e2c84f483099db649a2b10f0" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_limits.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "30cd405cdd8d1a20bf19dabf0a61c430" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_listfile.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4de8672a2940407e973cc13a9a94505" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_localuser.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7718ddc488eb33bc9820ae0b1d2c576" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_loginuid.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "84591a5328e343f3e7f643de3754bd65" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_mail.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1bc0655f1b5b28cb1d9eec13fab282d5" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_mkhomedir.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad87799237d4b8e626b7b3d492efe401" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_motd.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc0e1ee817eef6ab1ead76bfb27fc285" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_namespace.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8dbc9c518f555f5b464528b0154da69" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_nologin.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2d0a79b33999e41475235ff61a3f3ac" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_permit.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b523e3081aafca147253aa011718a43" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_pwhistory.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "94cc047eddb97de905982a7a8b949678" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_rhosts.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7277317334f078d9ac2fe030e8c6cec9" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_rootok.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6785c258fe16c22f05f8f76ef17fc83" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_securetty.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "53ac3b43dff9fd8cc6204a0454e26fa4" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_selinux.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "88e341201c9c3fdea25dc09fefb49c31" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_sepermit.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7683e082f1c432237d7c076a5c4ccbf4" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_setquota.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d381e51ac3e1d61225075b83c33ac232" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_shells.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "6362a6a003e613405c7beac85264166b" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_stress.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c5025d25fa105a5e94377ac6c61fa38" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_succeed_if.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "02af2c6bfee03241a5c667c89db5e5c3" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_time.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0612a6f752378aee3a24b3dc07bba4e2" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_timestamp.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "b97529662926b71f4c45fd466e123bff" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_tty_audit.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c8e90d90077b5a2abf3174e42e36ae5" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_umask.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7f04b50f8a216f398021e7394d893d7d" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_unix.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f01ab45d60acc3649fbf19ce636d0deb" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_userdb.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "650cd3f22b78c8002c5e4068cd9b6ad6" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_usertype.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "7ddc9553310a0939f5274c2ec598d61d" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_warn.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2223fbc2432b4def70473b92b2b19e3" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_wheel.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "5e8be31e6ae67849afdd4c6b2ac55dfd" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/security/pam_xauth.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8215173a307fce152aa7f888b37d6a8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-modules/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fea6f34499ab2c758859749b80d4889a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-modules/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0372519249c57b4adfd338702d941309" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-modules/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b1de7fdce831c7675eae7b73440f12e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-modules/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "08b0e4ae3cf5f6be9421703df9e33dab" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-modules/examples/upperLOWER.c" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9ffbecd21c0a6ddde813684522e2e02" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libpam-modules" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8c4f34d625f00b39c68d05d5a776e1d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/access.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa7aad3a01a9fb589729775575443c9c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/faillock.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b42b791fd5f19443e3b8484b90a3b80" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/group.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e54e49b88bd61c3e3f4b12a9c07b7c8d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/limits.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbcd2abe52d5c56d0c5f55ba49a9d109" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/namespace.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "09ec7771b8a00ea13f1936b9ddf54104" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/pam_env.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1558099fe8c476dd3cb24c2a42ec7fdb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/sepermit.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "449b5f7304482f9454d07d25476327f3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/time.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac47e85a9144265b8074dfd554f638e9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/pam_env.7.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7d02c103033e961d340c5aee002032f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/pam_selinux.7.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "63dd50e1b5f0322571459091702ce741" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_access.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6606f2223276efda5821f85954e2a0b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_debug.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "31a673211a8a9dee807dd8846adbf230" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_deny.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "996b27606237aa59051b44ca65cc6fda" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_echo.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4f3e502faa78c2545f006ecc29ad128" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_exec.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "08132b2dff5a823cb78f5f97cd4468ad" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_faildelay.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41a968fd34a907bbf0bea26ebe8298b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_faillock.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c741ae5bd55ab7628260266d60747931" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_filter.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a907c76d9c50f0d8c7bcac29932af42" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_ftp.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6bae8a647ca81c0295f492ae5f7a7a6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_group.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "14591e02d41696f1b5ef7e11dda1f479" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_issue.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "84e4382dee0d7a07f483fd33f99a3416" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_keyinit.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5701afab5a84a11086d58b7b0b455fcb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "760564ac534cda838f08325da11adfed" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_limits.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec23498821a5f03c73d21fa7458269cc" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_listfile.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "354cdb407f46bb6bd7de34f96ceaed99" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_localuser.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d952a4234dd7c45ff6fe0003227d0f56" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_loginuid.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7fdab7014dfbee5afe5002efb01f893f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_mail.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c1beb36c0a354f676158d1998666ec0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_mkhomedir.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6fba362a1afb9db7853497cd8c56afb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_motd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "269f35d9c1f58ace569dd813a67b92ff" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_namespace.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4bb89ef603e93c8f7aa137c79b02e3ff" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b3eda73af83256dc7ead800d9891395" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_permit.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "75b1fdf16bd8b92c58031bb080bb3dee" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_pwhistory.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f2444bfe99ec0eeb0aa1398ad9e333eb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_rhosts.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "01056bf332afe03f4473da02d9573ff7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_rootok.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "63e8c35eae4b55b588e0743af14a1119" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_securetty.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "99e1c1bf8301fbfb5b99d2cbaa5b9ded" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_sepermit.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4688a57f11a00b1a10d7e18cad53ad76" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_setquota.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "03a49aae2a66081b70dcadbc28de2c82" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_shells.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0daa2dc55b1105ba257bd71068c972c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_stress.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9efc98c4936e55b2ddeb47a94cf30cbe" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_succeed_if.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ad70b880c23227c8404ff5320631441" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_time.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "486e4b485f805489a710ecda456666cd" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_timestamp.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "77bb27ea824000a43ecf74f03002bcbc" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_tty_audit.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "730b4fb8e4b945d1e0f731af6337e032" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_umask.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "58b8d629ec5223e14acf990d877f8e33" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_unix.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "750595db711ad60531de055b0997e58f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_userdb.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d71443d08f266e7de7b0ee21cee8ee6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_usertype.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "84822f866a434d191cb037acaedbe551" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_warn.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "88c5b55117109ab124ef90dea5f6045b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_wheel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d90ce238b34bc1c9dcff76f43769111" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_xauth.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c407275534a3fa2fb8a0944fbe40871" - }, - "isConfigFile": false, - "path": "/usr/share/pam-configs/mkhomedir" - } - ], - "installedSize": 1031, - "maintainer": "Sam Hartman \u003chartmans@debian.org\u003e", - "package": "libpam-modules", - "preDepends": [ - "libaudit1 (\u003e= 1:2.2.1)", - "libc6 (\u003e= 2.34)", - "libcrypt1 (\u003e= 1:4.3.0)", - "libdb5.3", - "libpam0g (\u003e= 1.4.1)", - "libselinux1 (\u003e= 3.1~)", - "debconf (\u003e= 0.5) | debconf-2.0", - "libpam-modules-bin (= 1.5.2-6+deb12u1)" - ], - "provides": [ - "libpam-mkhomedir", - "libpam-motd", - "libpam-umask" - ], - "source": "pam", - "sourceVersion": "", - "version": "1.5.2-6+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libpam-modules", - "purl": "pkg:deb/debian/libpam-modules@1.5.2-6+deb12u1?arch=amd64\u0026upstream=pam\u0026distro=debian-12", - "type": "deb", - "version": "1.5.2-6+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libpam-modules-bin:libpam-modules-bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam-modules-bin:libpam_modules_bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam_modules_bin:libpam-modules-bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam_modules_bin:libpam_modules_bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam-modules:libpam-modules-bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam-modules:libpam_modules_bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam_modules:libpam-modules-bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam_modules:libpam_modules_bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam:libpam-modules-bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam:libpam_modules_bin:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "46e088ca1b060624", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-tcp_wrappers" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "Beerware", - "type": "declared", - "urls": [], - "value": "Beerware" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-modules-bin/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libpam-modules-bin.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libpam-modules-bin.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libaudit1 (\u003e= 1:2.2.1)", - "libc6 (\u003e= 2.34)", - "libcrypt1 (\u003e= 1:4.3.0)", - "libpam0g (\u003e= 0.99.7.1)", - "libselinux1 (\u003e= 3.1~)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "9ea92bd01628d5e70ef86842ed10e87f" - }, - "isConfigFile": false, - "path": "/sbin/mkhomedir_helper" - }, - { - "digest": { - "algorithm": "md5", - "value": "71e2f8a1d4106b730062a656f38fe832" - }, - "isConfigFile": false, - "path": "/sbin/pam_namespace_helper" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e5581b979110d02b904fe2bbea378b2" - }, - "isConfigFile": false, - "path": "/sbin/pwhistory_helper" - }, - { - "digest": { - "algorithm": "md5", - "value": "08d0d873abd96b62dba9415a4783ec3d" - }, - "isConfigFile": false, - "path": "/sbin/unix_chkpwd" - }, - { - "digest": { - "algorithm": "md5", - "value": "225fe374d7b07767aa57d27caedcd222" - }, - "isConfigFile": false, - "path": "/sbin/unix_update" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c1af719d7c845027a45c4f9754a6259" - }, - "isConfigFile": false, - "path": "/usr/lib/systemd/system/pam_namespace.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "34a7487aceae94a8bba1423ce8577e10" - }, - "isConfigFile": false, - "path": "/usr/sbin/faillock" - }, - { - "digest": { - "algorithm": "md5", - "value": "9cfb2ce532739e71c074a5aa878b3dfe" - }, - "isConfigFile": false, - "path": "/usr/sbin/pam_timestamp_check" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8215173a307fce152aa7f888b37d6a8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-modules-bin/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed60488ed6f6a860306d5fbcb6ce8140" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-modules-bin/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0372519249c57b4adfd338702d941309" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-modules-bin/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b1de7fdce831c7675eae7b73440f12e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-modules-bin/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb930187c25af8cc0c7c6404cdbb87de" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libpam-modules-bin" - }, - { - "digest": { - "algorithm": "md5", - "value": "89dd35ff3357a18a32341a428ba7296f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/environment.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ffdf8b31bf38682f115f1d52d5edda0f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/faillock.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "49480f5da30f8459c1082c7eb453a851" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/mkhomedir_helper.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f5cac8022e9fab42d71ba3f8655ac2c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_namespace_helper.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7ce278561d410de09c82454620a47e56" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_timestamp_check.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7748041f1480109a7723705fed16b06a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pwhistory_helper.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d24fc24a9173a10530389da76588acd" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/unix_chkpwd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e73f3eaa585de794a56dd49ab1bafca9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/unix_update.8.gz" - } - ], - "installedSize": 227, - "maintainer": "Sam Hartman \u003chartmans@debian.org\u003e", - "package": "libpam-modules-bin", - "source": "pam", - "sourceVersion": "", - "version": "1.5.2-6+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libpam-modules-bin", - "purl": "pkg:deb/debian/libpam-modules-bin@1.5.2-6+deb12u1?arch=amd64\u0026upstream=pam\u0026distro=debian-12", - "type": "deb", - "version": "1.5.2-6+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libpam-runtime:libpam-runtime:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam-runtime:libpam_runtime:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam_runtime:libpam-runtime:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam_runtime:libpam_runtime:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam:libpam-runtime:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpam:libpam_runtime:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2fc0063e7584b704", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-tcp_wrappers" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "Beerware", - "type": "declared", - "urls": [], - "value": "Beerware" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libpam-runtime/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libpam-runtime.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libpam-runtime.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/libpam-runtime.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libpam-runtime.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "depends": [ - "debconf (\u003e= 0.5) | debconf-2.0", - "debconf (\u003e= 1.5.19) | cdebconf", - "libpam-modules (\u003e= 1.0.1-6)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "87fc76f18e98ee7d3848f6b81b3391e5" - }, - "isConfigFile": true, - "path": "/etc/pam.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "31aa7f2181889ffb00b87df4126d1701" - }, - "isConfigFile": true, - "path": "/etc/pam.d/other" - }, - { - "digest": { - "algorithm": "md5", - "value": "ffe79c5dc43a486d905bb8d0b8010213" - }, - "isConfigFile": false, - "path": "/usr/sbin/pam-auth-update" - }, - { - "digest": { - "algorithm": "md5", - "value": "f599dc6c03a2251b3b53ecd115d5b0e9" - }, - "isConfigFile": false, - "path": "/usr/sbin/pam_getenv" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8215173a307fce152aa7f888b37d6a8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-runtime/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d540b5b120b4416e39b565dcafe5c327" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-runtime/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0372519249c57b4adfd338702d941309" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-runtime/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b1de7fdce831c7675eae7b73440f12e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam-runtime/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "da1a09cc62e71d95d7754db4910d5418" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libpam-runtime" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fc8bfef98b506dea6c5004f72abd362" - }, - "isConfigFile": false, - "path": "/usr/share/locale/af/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d78699c2349b8a617b21fb35d0009c7b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/am/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e89561b48d4ea7826f9425f57c6e6488" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ar/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebcbab50dcab1384f0fd0afc7ca75528" - }, - "isConfigFile": false, - "path": "/usr/share/locale/as/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f071a049d662fb196ed4ad607f2c09d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/az/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0314545a410f19f96ae6d93e179e99e5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/be/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0440cd36920fe72ee55cecc2dd14e77f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e0ce4c436455a0ba8dbb0317564f725" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bn/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "67647c94b437627b34c2fc899c6e0879" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bn_IN/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "87740e032f1761a5e3647b4572913add" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bs/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b17054ac2fff412635624107dc9ff0a2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "82eb91a4c2fa07390d950d4f44ffe63a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f58b089e7b0e8b24e4fa9c8a47f80624" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cy/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "56c3783e8ec400fef2b3ea48f4e69f4d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "764f1de41e46c42c8104aed3388e4cb7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "910cac1c5714805342ef2b2d528d304b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de_CH/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6f9c493012d79846e0ee514eff16d33" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5d6026fef7b95d058713adb74bfc8d75" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "55f966363b529113544118a358616f89" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e7952770999ca5ba603d259f723c19f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/et/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "aaaa9365712a9148fc5e0c1769a4abcd" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fac4c19de37cf4febeb1c799cd05108a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fa/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "212c11ef2d540990b5a273bd791fae50" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0dd47f27b175a65047753ec0e29072b5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ed8f162a4beeb714af4d8721e233482" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ga/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b15addbf77c59210cceb65d790946aa2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e9091fa9430b9008794b6464b88b1d11" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gu/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c20958a0108c705bdf2f947f0984b1b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/he/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "21794fdd9e3f9b3d91c8a320dc2c2bb2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hi/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b133136518b49de05f41ae5421f6247" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e873fe9ed9d1850a435505f2d6abe2ac" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7427398597a61e1246a9ee71163bae3e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ia/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3366547947481dec65df4a08c4e90662" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4817afc65795fc97caa115aa74bbf1e9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/is/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "707681638f5011dfd561dde5ffef6d5c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe763f157a352884ccda517a6ad73bfd" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8c122f87eaf185b1452b4341aaa0450" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ka/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1ade71d7af2ec31ac7f384502750643" - }, - "isConfigFile": false, - "path": "/usr/share/locale/kk/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "de95c357e9de72836a7c90338e7b5346" - }, - "isConfigFile": false, - "path": "/usr/share/locale/km/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "78f783c8599d854848b19239fae0b6f4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/kn/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c549e4f812de458f11240bab151d9c5b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b8aa391f8ae453160d89f448616d0be" - }, - "isConfigFile": false, - "path": "/usr/share/locale/kw_GB/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab645586b0bd4c3e797fc66aff802c9d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ky/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e1655e2ce1ed95c6ace75bec9b5702ab" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lt/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf9b3b005d5fcf626619d5771d6a1b22" - }, - "isConfigFile": false, - "path": "/usr/share/locale/lv/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "02d887898cf0a6faca60d66b2b093ea8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/mk/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f8d931b582ca1806dc90995bfefbe05" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ml/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "791cc027bf44c171e8f7271ae1d2925a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/mn/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "434d6e6d2ef3c4f35b21e26d5f00921a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/mr/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca927b5452b91098f717c668b5c51d27" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ms/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e3f02a1af095d14c4cfcb5a15a1ac0f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/my/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "dba891476733f2eed379d08e96d252f0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "398b2f044564a01b8eb124db6bccabd9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ne/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5c8805dcb0a5bf7cd6b3e2f079f8735d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b0dae81e02a938efb819c6ba6612aff8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nn/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e2dd20cf7aa22fb7ffc796d4a8af6d2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/or/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8765f15ba52ae66dd5c281ab194e7fe5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pa/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a97c02aab496430a559e77f310bf53af" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "67fa45567efce73664e51b4297554b27" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6394406db9a15ef572b161ede2da7cdd" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7822a3608c8e06b257024ceb6349c676" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc116a9fbfb8a2ae26b4df58cfc954c1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6ae51179bfeba7cf3c806ffe3808d98" - }, - "isConfigFile": false, - "path": "/usr/share/locale/si/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "401fb99df179cc0b9d550762e8310f1e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fee898eebb60c29b07d154ff0db664b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4067c73cd0163536789c3b904f9569e5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sq/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e1d382f31edb16830df9b371a3ecfd58" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e6cb51d32ea0c9d9547111efd1db16a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr@latin/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e01b8db85649083b150771cc66ec03e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff076e1689a99037b3d7b262e333d2fb" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ta/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c11b05f1f0f71847abe42b3ce374c1f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/te/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ad452ef87eb57287ce74d7a984d525e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tg/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "92dbabb7e3dd40c39ab11e0e7434d139" - }, - "isConfigFile": false, - "path": "/usr/share/locale/th/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "41627149f93cddfd8c27df0bffe36c87" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f06ae050f0cf38d0e0bfd9230ebffed" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "410cdc7c0e3ec06a00d199ecc3a97848" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ur/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3ce48535d1e6dd275282d735f6bc448" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "91739b4afafe486a7ef7e809bf404ca6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/yo/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0921eb30f4945a5348d11028df7e580" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8d842c33e2c6b866f7c81eb17dd7e85" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_HK/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "166a80dab7cf4e731b35133792b97e12" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e93e186b8268c22a1664d3a3fdd4df07" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zu/LC_MESSAGES/Linux-PAM.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "030c06f753261bb6fef52018c71393e9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/pam.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc5f5523f62bf455426404e39226c185" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/PAM.7.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d42ed0c6efcbfd02514d832ff462b112" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam-auth-update.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe17e954b476ef855046c9ef9a19879d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pam_getenv.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca78117c7ea5c63c58c25f0491e89153" - }, - "isConfigFile": false, - "path": "/usr/share/pam-configs/unix" - }, - { - "digest": { - "algorithm": "md5", - "value": "117df385af6d411fbd1ffa97bc048f66" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-account" - }, - { - "digest": { - "algorithm": "md5", - "value": "a16cd434ecf1fd38ade67f3ce31ecdc6" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-account.md5sums" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e8989cd590e8bdeaa97c3d77320e3c4" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-auth" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e92a1187df5d09844592f3afbaf54e1" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-auth.md5sums" - }, - { - "digest": { - "algorithm": "md5", - "value": "10fc4e7208f68b132eaa6623d10d73cb" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-password" - }, - { - "digest": { - "algorithm": "md5", - "value": "894b91ed648db1b4964c1c0b1c0686c9" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-password.md5sums" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0552343f0f3a41625251b3160bf72de" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-session" - }, - { - "digest": { - "algorithm": "md5", - "value": "583579358a72f01b534a4a565454a06a" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-session-noninteractive" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e12461200b864f5337bdc2acec117a7" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-session-noninteractive.md5sums" - }, - { - "digest": { - "algorithm": "md5", - "value": "e82dff1f5fabeb74e3f3ce5235fd1821" - }, - "isConfigFile": false, - "path": "/usr/share/pam/common-session.md5sums" - } - ], - "installedSize": 876, - "maintainer": "Sam Hartman \u003chartmans@debian.org\u003e", - "package": "libpam-runtime", - "source": "pam", - "sourceVersion": "", - "version": "1.5.2-6+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libpam-runtime", - "purl": "pkg:deb/debian/libpam-runtime@1.5.2-6+deb12u1?arch=all\u0026upstream=pam\u0026distro=debian-12", - "type": "deb", - "version": "1.5.2-6+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libpam0g:libpam0g:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "9e3755175020009e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-tcp_wrappers" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "Beerware", - "type": "declared", - "urls": [], - "value": "Beerware" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libpam0g/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libpam0g:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libpam0g:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libaudit1 (\u003e= 1:2.2.1)", - "libc6 (\u003e= 2.34)", - "debconf (\u003e= 0.5) | debconf-2.0" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "90851238155e33c238398eda1fa65066" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libpam.so.0.85.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "aebdc3cd6d796f27af6c6f89fdada7a2" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "de3970f8c06d4dd24e32bd11fa0cee0c" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libpamc.so.0.82.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "d51904d08dd25120fdb49aadeff89402" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam0g/Debian-PAM-MiniPolicy.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8215173a307fce152aa7f888b37d6a8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam0g/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7d97991272ef0983e137f33ee224cd2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam0g/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce3d89b0d852f9edb5fd439931b955a8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam0g/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab72b70830c7c3f493f00a88ebf5ebf4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam0g/TODO.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ee4a3c650485dd67af86591e7330f3e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam0g/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0372519249c57b4adfd338702d941309" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam0g/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b1de7fdce831c7675eae7b73440f12e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpam0g/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "a08edec203c3cecebd3feb97c735f46b" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libpam0g" - } - ], - "installedSize": 215, - "maintainer": "Sam Hartman \u003chartmans@debian.org\u003e", - "package": "libpam0g", - "source": "pam", - "sourceVersion": "", - "version": "1.5.2-6+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libpam0g", - "purl": "pkg:deb/debian/libpam0g@1.5.2-6+deb12u1?arch=amd64\u0026upstream=pam\u0026distro=debian-12", - "type": "deb", - "version": "1.5.2-6+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libpcre2-8-0:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2-8-0:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2_8_0:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2_8_0:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2-8:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2-8:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2_8:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2_8:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ac69ca1032624423", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpcre2-8-0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpcre2-8-0/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpcre2-8-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-Cambridge" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpcre2-8-0/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpcre2-8-0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpcre2-8-0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libpcre2-8-0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libpcre2-8-0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "b86e548422155eadaf31c3b77d4738a4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.11.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbde6fa016e43367c012e30e442e8180" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpcre2-8-0/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "028326cd74df93b112dd245df87ee770" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpcre2-8-0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f957b073defd3010e8c3e073e2e81f3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpcre2-8-0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea1070671dcb630b23a0a68ab100f244" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpcre2-8-0/copyright" - } - ], - "installedSize": 685, - "maintainer": "Matthew Vernon \u003cmatthew@debian.org\u003e", - "package": "libpcre2-8-0", - "source": "pcre2", - "sourceVersion": "", - "version": "10.42-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libpcre2-8-0", - "purl": "pkg:deb/debian/libpcre2-8-0@10.42-1?arch=amd64\u0026upstream=pcre2\u0026distro=debian-12", - "type": "deb", - "version": "10.42-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libpng16-16:libpng16-16:1.6.39-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpng16-16:libpng16_16:1.6.39-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpng16_16:libpng16-16:1.6.39-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpng16_16:libpng16_16:1.6.39-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpng16:libpng16-16:1.6.39-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpng16:libpng16_16:1.6.39-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2aed653a72b7f48a", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpng16-16/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpng16-16/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpng16-16/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpng16-16/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpng16-16/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpng16-16/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-like-with-advertising-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpng16-16/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpng16-16/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpng16-16/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpng16-16/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpng16-16/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpng16-16/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpng16-16/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpng16-16/copyright" - } - ], - "spdxExpression": "Libpng", - "type": "declared", - "urls": [], - "value": "libpng" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libpng16-16/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpng16-16/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libpng16-16:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libpng16-16:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.29)", - "zlib1g (\u003e= 1:1.2.11.dfsg)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "f8b555e97bd9b5227cac1aec16cb8b27" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libpng16.so.16.39.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "f70f5d78a9e3fa01749639ad088bee65" - }, - "isConfigFile": false, - "path": "/usr/share/doc-base/libpng16-16.libpng16" - }, - { - "digest": { - "algorithm": "md5", - "value": "8708b9df859f284d7398a29ee5e13a0f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpng16-16/ANNOUNCE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d27386539b136b6287a27aaddfae86d2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpng16-16/README.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a82aa11a927fdf7473d14ccdfeb819b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpng16-16/TODO" - }, - { - "digest": { - "algorithm": "md5", - "value": "8bf280130103098443731c57f9ab7c31" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpng16-16/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ff304ff26e0bea52fdadd34fe62d7a4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpng16-16/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de71cfec7961876f15553b82957f0bd8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpng16-16/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "dbc7827e1752ec878fe021a18321e765" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpng16-16/libpng-manual.txt.gz" - } - ], - "installedSize": 416, - "maintainer": "Maintainers of libpng1.6 packages \u003clibpng1.6@packages.debian.org\u003e", - "package": "libpng16-16", - "source": "libpng1.6", - "sourceVersion": "", - "version": "1.6.39-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libpng16-16", - "purl": "pkg:deb/debian/libpng16-16@1.6.39-2?arch=amd64\u0026upstream=libpng1.6\u0026distro=debian-12", - "type": "deb", - "version": "1.6.39-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libpsl5:libpsl5:0.21.2-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "6d6e8a1c4d8f5a2b", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpsl5/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpsl5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Chromium" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpsl5/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpsl5/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libpsl5/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpsl5/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "gnulib" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libpsl5/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpsl5/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libpsl5:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libpsl5:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libidn2-0 (\u003e= 0.16)", - "libc6 (\u003e= 2.33)", - "libunistring2 (\u003e= 0.9.7)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "07751aa82d99c16480e5bf20bd625062" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libpsl.so.5.3.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "8041204006ad3d7ada31b5f31cd32539" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpsl5/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "30876c4af76afd0bf39c15a301ed6143" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpsl5/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "07685d13c2d767f3f2f019744e361c0f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libpsl5/copyright" - } - ], - "installedSize": 96, - "maintainer": "Tim Rühsen \u003ctim.ruehsen@gmx.de\u003e", - "package": "libpsl5", - "source": "libpsl", - "sourceVersion": "", - "version": "0.21.2-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libpsl5", - "purl": "pkg:deb/debian/libpsl5@0.21.2-1?arch=amd64\u0026upstream=libpsl\u0026distro=debian-12", - "type": "deb", - "version": "0.21.2-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:librav1e0:librav1e0:0.5.1-6:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "876072091aef9489", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/librav1e0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/librav1e0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/librav1e0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/librav1e0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/librav1e0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/librav1e0/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/librav1e0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/librav1e0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/librav1e0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/librav1e0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libgcc-s1 (\u003e= 4.2)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "2ea47eb0fffab8b8e8c20b97c53baec4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/librav1e.so.0.5.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "30d689a5cc40d19c5726fe910f02423c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/librav1e0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec788961abf865af06e177da04c67cc8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/librav1e0/copyright" - } - ], - "installedSize": 2664, - "maintainer": "Debian Rust Maintainers \u003cpkg-rust-maintainers@alioth-lists.debian.net\u003e", - "package": "librav1e0", - "source": "rust-rav1e", - "sourceVersion": "", - "version": "0.5.1-6" - }, - "metadataType": "dpkg-db-entry", - "name": "librav1e0", - "purl": "pkg:deb/debian/librav1e0@0.5.1-6?arch=amd64\u0026upstream=rust-rav1e\u0026distro=debian-12", - "type": "deb", - "version": "0.5.1-6" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:librtmp1:librtmp1:2.4\\+20151223.gitfa8646d.1-2\\+b2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "67e81e91a8c1dffc", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/librtmp1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/librtmp1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/librtmp1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/librtmp1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/librtmp1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/librtmp1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/librtmp1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/librtmp1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libgmp10", - "libgnutls30 (\u003e= 3.6.14)", - "libhogweed6", - "libnettle8", - "zlib1g (\u003e= 1:1.1.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "78a9ff072831a45e09036538467f311e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/librtmp.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "943374c9bbcca4b6943289fae91e52ef" - }, - "isConfigFile": false, - "path": "/usr/share/doc/librtmp1/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "45c4d31e39d345c36597f36c5d795c10" - }, - "isConfigFile": false, - "path": "/usr/share/doc/librtmp1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ac9c9e27c0441b6ed398aa1fca6fdf1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/librtmp1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "79bad274b70075d8e97c7dd7b79f841f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/librtmp1/copyright" - } - ], - "installedSize": 146, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "librtmp1", - "source": "rtmpdump", - "sourceVersion": "2.4+20151223.gitfa8646d.1-2", - "version": "2.4+20151223.gitfa8646d.1-2+b2" - }, - "metadataType": "dpkg-db-entry", - "name": "librtmp1", - "purl": "pkg:deb/debian/librtmp1@2.4+20151223.gitfa8646d.1-2+b2?arch=amd64\u0026upstream=rtmpdump@2.4+20151223.gitfa8646d.1-2\u0026distro=debian-12", - "type": "deb", - "version": "2.4+20151223.gitfa8646d.1-2+b2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libsasl2-2:libsasl2-2:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2-2:libsasl2_2:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2_2:libsasl2-2:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2_2:libsasl2_2:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2:libsasl2-2:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2:libsasl2_2:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "fcacc8c1e128f9a7", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-2.2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-JANET" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-PADL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-KTH" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "BSD-4-Clause-UC", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-UC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "FSFULLR", - "type": "declared", - "urls": [], - "value": "FSFULLR" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "IBM-as-is" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "MIT-CMU", - "type": "declared", - "urls": [], - "value": "MIT-CMU" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT-Export" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT-OpenVision" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "OpenLDAP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "OpenSSL", - "type": "declared", - "urls": [], - "value": "OpenSSL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "RSA-MD", - "type": "declared", - "urls": [], - "value": "RSA-MD" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "SSLeay" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libsasl2-2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libsasl2-2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libsasl2-modules-db (\u003e= 2.1.28+dfsg-10)", - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "cfe2fee011392f76dd22fe8efbf64dcd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25" - }, - { - "digest": { - "algorithm": "md5", - "value": "cba810b73f30ce64df6e67ece59d3459" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsasl2-2/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0fd8123421f7fe6a2be9fc77750e0d1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsasl2-2/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbcfdc030d7b698d2bc11e18617d4015" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsasl2-2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aec41a241cfda7dc512b96768f8f5436" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsasl2-2/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f9820c0bef641ef5e742b31d48befe1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/libsasl.5.gz" - } - ], - "installedSize": 167, - "maintainer": "Debian Cyrus Team \u003cteam+cyrus@tracker.debian.org\u003e", - "package": "libsasl2-2", - "source": "cyrus-sasl2", - "sourceVersion": "", - "version": "2.1.28+dfsg-10" - }, - "metadataType": "dpkg-db-entry", - "name": "libsasl2-2", - "purl": "pkg:deb/debian/libsasl2-2@2.1.28+dfsg-10?arch=amd64\u0026upstream=cyrus-sasl2\u0026distro=debian-12", - "type": "deb", - "version": "2.1.28+dfsg-10" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libsasl2-modules-db:libsasl2-modules-db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2-modules-db:libsasl2_modules_db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2_modules_db:libsasl2-modules-db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2_modules_db:libsasl2_modules_db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2-modules:libsasl2-modules-db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2-modules:libsasl2_modules_db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2_modules:libsasl2-modules-db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2_modules:libsasl2_modules_db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2:libsasl2-modules-db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsasl2:libsasl2_modules_db:2.1.28\\+dfsg-10:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "3be129b7c5479ff1", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-2.2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-JANET" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-PADL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-KTH" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "BSD-4-Clause-UC", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-UC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "FSFULLR", - "type": "declared", - "urls": [], - "value": "FSFULLR" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "IBM-as-is" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "MIT-CMU", - "type": "declared", - "urls": [], - "value": "MIT-CMU" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT-Export" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT-OpenVision" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "OpenLDAP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "OpenSSL", - "type": "declared", - "urls": [], - "value": "OpenSSL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "RSA-MD", - "type": "declared", - "urls": [], - "value": "RSA-MD" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "SSLeay" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libsasl2-modules-db/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libsasl2-modules-db:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libsasl2-modules-db:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libdb5.3" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "33b5fdfa8041e615b4a459efe623f538" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/sasl2/libsasldb.so.2.0.25" - }, - { - "digest": { - "algorithm": "md5", - "value": "cba810b73f30ce64df6e67ece59d3459" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsasl2-modules-db/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf5d405ea0c24c92989bbe408a3e5ace" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsasl2-modules-db/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aec41a241cfda7dc512b96768f8f5436" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - ], - "installedSize": 77, - "maintainer": "Debian Cyrus Team \u003cteam+cyrus@tracker.debian.org\u003e", - "package": "libsasl2-modules-db", - "source": "cyrus-sasl2", - "sourceVersion": "", - "version": "2.1.28+dfsg-10" - }, - "metadataType": "dpkg-db-entry", - "name": "libsasl2-modules-db", - "purl": "pkg:deb/debian/libsasl2-modules-db@2.1.28+dfsg-10?arch=amd64\u0026upstream=cyrus-sasl2\u0026distro=debian-12", - "type": "deb", - "version": "2.1.28+dfsg-10" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libseccomp2:libseccomp2:2.5.4-1\\+b3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a6922f8e0f890c0e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libseccomp2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libseccomp2/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libseccomp2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libseccomp2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libseccomp2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libseccomp2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "92ddfc05e6868c3d2ab8dbcfecd7ef7e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libseccomp.so.2.5.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "1bf36526666c1c7077c154a9b29a9f3f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libseccomp2/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c983c573a28510a93a7bee9545814333" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libseccomp2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a8ac01b4670a66e898fb78917402efe" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libseccomp2/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a1920ce9684ad21bee00b481ee066af" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libseccomp2/copyright" - } - ], - "installedSize": 149, - "maintainer": "Kees Cook \u003ckees@debian.org\u003e", - "package": "libseccomp2", - "source": "libseccomp", - "sourceVersion": "2.5.4-1", - "version": "2.5.4-1+b3" - }, - "metadataType": "dpkg-db-entry", - "name": "libseccomp2", - "purl": "pkg:deb/debian/libseccomp2@2.5.4-1+b3?arch=amd64\u0026upstream=libseccomp@2.5.4-1\u0026distro=debian-12", - "type": "deb", - "version": "2.5.4-1+b3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libselinux1:libselinux1:3.4-1\\+b6:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2ddd11f048a6a586", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libselinux1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libselinux1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libselinux1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libselinux1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libselinux1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libselinux1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libselinux1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libselinux1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libpcre2-8-0 (\u003e= 10.22)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "4dfcc715a92bbf6fdfbc61b812852690" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libselinux.so.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4187f52ba8370228001e9f26b2e67c0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libselinux1/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a899ad0e2ea5e9499b94103a4769fa8c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libselinux1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f85b5814483a164783defd5a682b44c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libselinux1/copyright" - } - ], - "installedSize": 199, - "maintainer": "Debian SELinux maintainers \u003cselinux-devel@lists.alioth.debian.org\u003e", - "package": "libselinux1", - "source": "libselinux", - "sourceVersion": "3.4-1", - "version": "3.4-1+b6" - }, - "metadataType": "dpkg-db-entry", - "name": "libselinux1", - "purl": "pkg:deb/debian/libselinux1@3.4-1+b6?arch=amd64\u0026upstream=libselinux@3.4-1\u0026distro=debian-12", - "type": "deb", - "version": "3.4-1+b6" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libsemanage-common:libsemanage-common:3.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsemanage-common:libsemanage_common:3.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsemanage_common:libsemanage-common:3.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsemanage_common:libsemanage_common:3.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsemanage:libsemanage-common:3.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libsemanage:libsemanage_common:3.4-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "0d5fc1290c3c97c5", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsemanage-common/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsemanage-common/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsemanage-common/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsemanage-common/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libsemanage-common/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsemanage-common/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libsemanage-common.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libsemanage-common.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/libsemanage-common.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libsemanage-common.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8e8dfac33a09c1b53ca08bf6d4201b10" - }, - "isConfigFile": true, - "path": "/etc/selinux/semanage.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "3bd77038333593a047388e2bad94bd75" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsemanage-common/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4cf7d892a26f8b8a190c4e10aebcc241" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsemanage-common/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "88dafe80a89b8d823a498df7d3a72b66" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/semanage.conf.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "09dd5a8d131cf053350528fec647a687" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man5/semanage.conf.5.gz" - } - ], - "installedSize": 37, - "maintainer": "Debian SELinux maintainers \u003cselinux-devel@lists.alioth.debian.org\u003e", - "package": "libsemanage-common", - "source": "libsemanage", - "sourceVersion": "", - "version": "3.4-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libsemanage-common", - "purl": "pkg:deb/debian/libsemanage-common@3.4-1?arch=all\u0026upstream=libsemanage\u0026distro=debian-12", - "type": "deb", - "version": "3.4-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libsemanage2:libsemanage2:3.4-1\\+b5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "77b4823c173e68f5", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsemanage2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsemanage2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsemanage2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsemanage2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libsemanage2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsemanage2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libsemanage2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libsemanage2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libsemanage-common (\u003e= 3.4-1)", - "libaudit1 (\u003e= 1:2.2.1)", - "libbz2-1.0", - "libc6 (\u003e= 2.34)", - "libselinux1 (\u003e= 3.4)", - "libsepol2 (\u003e= 3.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "2ea362321307c0161f295ab61c0f63e2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libsemanage.so.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc63278a03d71f983754ed6b34acad87" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsemanage2/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "585e743120f17cdc8dcf2269f51642f8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsemanage2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4cf7d892a26f8b8a190c4e10aebcc241" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsemanage2/copyright" - } - ], - "installedSize": 297, - "maintainer": "Debian SELinux maintainers \u003cselinux-devel@lists.alioth.debian.org\u003e", - "package": "libsemanage2", - "source": "libsemanage", - "sourceVersion": "3.4-1", - "version": "3.4-1+b5" - }, - "metadataType": "dpkg-db-entry", - "name": "libsemanage2", - "purl": "pkg:deb/debian/libsemanage2@3.4-1+b5?arch=amd64\u0026upstream=libsemanage@3.4-1\u0026distro=debian-12", - "type": "deb", - "version": "3.4-1+b5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libsepol2:libsepol2:3.4-2.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "8b37b2b8e2fce91c", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsepol2/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsepol2/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsepol2/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsepol2/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsepol2/copyright" - } - ], - "spdxExpression": "Zlib", - "type": "declared", - "urls": [], - "value": "Zlib" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libsepol2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsepol2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libsepol2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libsepol2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "626d5fbd48db52e414a6cd91a4f795df" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libsepol.so.2" - }, - { - "digest": { - "algorithm": "md5", - "value": "04bd38f6bb3233045c01ce88c31cfcf4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsepol2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "568792a9303c6249aea01a640cd4d1bb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsepol2/copyright" - } - ], - "installedSize": 775, - "maintainer": "Debian SELinux maintainers \u003cselinux-devel@lists.alioth.debian.org\u003e", - "package": "libsepol2", - "source": "libsepol", - "sourceVersion": "", - "version": "3.4-2.1" - }, - "metadataType": "dpkg-db-entry", - "name": "libsepol2", - "purl": "pkg:deb/debian/libsepol2@3.4-2.1?arch=amd64\u0026upstream=libsepol\u0026distro=debian-12", - "type": "deb", - "version": "3.4-2.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libsmartcols1:libsmartcols1:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a19481ad8109e13e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSLA" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libsmartcols1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libsmartcols1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libsmartcols1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "16bf7f62351f5a4e6d7a99efb081494e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "154d7d740596a409ac2fae8c04e143a7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsmartcols1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bb7fd1ae3732779966184f543b8a91e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsmartcols1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "353888f385cfb82eb97a693e78f3cc9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsmartcols1/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f2f795133f87309546de75b09dcc32b" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libsmartcols1" - } - ], - "installedSize": 289, - "maintainer": "util-linux packagers \u003cutil-linux@packages.debian.org\u003e", - "package": "libsmartcols1", - "source": "util-linux", - "sourceVersion": "", - "version": "2.38.1-5+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libsmartcols1", - "purl": "pkg:deb/debian/libsmartcols1@2.38.1-5+deb12u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-12", - "type": "deb", - "version": "2.38.1-5+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libss2:libss2:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2baf633bc8a84df6", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "Kazlib", - "type": "declared", - "urls": [], - "value": "Kazlib" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - ], - "spdxExpression": "Latex2e", - "type": "declared", - "urls": [], - "value": "Latex2e" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libss2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libss2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libss2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libcom-err2", - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "9c94656e568a81039594bb49196866f6" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libss.so.2.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "9066174430ad0ae7925105b24de1c1e3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libss2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1310ed8edd8d42af06394a2c050f9c8c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libss2/copyright" - } - ], - "installedSize": 70, - "maintainer": "Theodore Y. Ts'o \u003ctytso@mit.edu\u003e", - "package": "libss2", - "source": "e2fsprogs", - "sourceVersion": "", - "version": "1.47.0-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libss2", - "purl": "pkg:deb/debian/libss2@1.47.0-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-12", - "type": "deb", - "version": "1.47.0-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libssh2-1:libssh2-1:1.10.0-3\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libssh2-1:libssh2_1:1.10.0-3\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libssh2_1:libssh2-1:1.10.0-3\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libssh2_1:libssh2_1:1.10.0-3\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libssh2:libssh2-1:1.10.0-3\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libssh2:libssh2_1:1.10.0-3\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "7023b2ad941f42b0", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libssh2-1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libssh2-1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD3" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libssh2-1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libssh2-1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libssh2-1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libssh2-1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libssl3 (\u003e= 3.0.0)", - "zlib1g (\u003e= 1:1.1.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "00642b17d391ee68025cf0a1f5bbebee" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "56be16f76978852e0bea7de3bee4fddf" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libssh2-1/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff8d8081dbfdfcce43ca2b2a3944b1af" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libssh2-1/RELEASE-NOTES" - }, - { - "digest": { - "algorithm": "md5", - "value": "93bf9aafbc80a4d7a07c4d956a9ada0f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libssh2-1/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3eb5987c7c6d3fb9ab8a8b89d6aaba85" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libssh2-1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a323f911629cef5b7e94c8bf35887451" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libssh2-1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "df7579e895963d43dd486e306ae3395e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libssh2-1/copyright" - } - ], - "installedSize": 357, - "maintainer": "Nicolas Mora \u003cbabelouest@debian.org\u003e", - "package": "libssh2-1", - "source": "libssh2", - "sourceVersion": "1.10.0-3", - "version": "1.10.0-3+b1" - }, - "metadataType": "dpkg-db-entry", - "name": "libssh2-1", - "purl": "pkg:deb/debian/libssh2-1@1.10.0-3+b1?arch=amd64\u0026upstream=libssh2@1.10.0-3\u0026distro=debian-12", - "type": "deb", - "version": "1.10.0-3+b1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libssl3:libssl3:3.0.11-1\\~deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "f4f6c7a5773f97fe", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libssl3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libssl3/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libssl3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libssl3/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Artistic" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libssl3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libssl3/copyright" - } - ], - "spdxExpression": "GPL-1.0-only", - "type": "declared", - "urls": [], - "value": "GPL-1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libssl3/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libssl3/copyright" - } - ], - "spdxExpression": "GPL-1.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-1+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libssl3/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libssl3/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libssl3:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libssl3:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "5e1c96376a3a31bbdedc8c5276b1f497" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/engines-3/afalg.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f080b2f5a1de05342c8f5e62d82bf589" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/engines-3/loader_attic.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0369b0b54695f7f5fc7716b3d9dfcdd4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/engines-3/padlock.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a38e4fd5e5a8400e910ecede9481f97" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libcrypto.so.3" - }, - { - "digest": { - "algorithm": "md5", - "value": "38cb6f597bb6366ccac869af0a247bc0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libssl.so.3" - }, - { - "digest": { - "algorithm": "md5", - "value": "5df784ecb744266da5eaf7d918f41082" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/ossl-modules/legacy.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "f30b5b9a77bef3ec83776e96beecb798" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libssl3/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4045c0f497dda36117663d37ba6e8fc7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libssl3/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6264b3617e9bd0092102a2ab8db06adb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libssl3/copyright" - } - ], - "installedSize": 6010, - "maintainer": "Debian OpenSSL Team \u003cpkg-openssl-devel@alioth-lists.debian.net\u003e", - "package": "libssl3", - "source": "openssl", - "sourceVersion": "", - "version": "3.0.11-1~deb12u2" - }, - "metadataType": "dpkg-db-entry", - "name": "libssl3", - "purl": "pkg:deb/debian/libssl3@3.0.11-1~deb12u2?arch=amd64\u0026upstream=openssl\u0026distro=debian-12", - "type": "deb", - "version": "3.0.11-1~deb12u2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libstdc\\+\\+6:libstdc\\+\\+6:12.2.0-14:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "4f6f636801d1d450", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libstdc++6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Artistic" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libstdc++6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "GFDL-1.2-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libstdc++6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libstdc++6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libstdc++6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libstdc++6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libstdc++6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libstdc++6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libstdc++6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "gcc-12-base (= 12.2.0-14)", - "libc6 (\u003e= 2.36)", - "libgcc-s1 (\u003e= 4.2)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8663cdd749525ddadf29cf0592a67819" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30" - }, - { - "digest": { - "algorithm": "md5", - "value": "68b329da9893e34099c7d8ad5cb9c940" - }, - "isConfigFile": false, - "path": "/usr/share/gcc/python/libstdcxx/__init__.py" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b4aa298a5559f01a31b4252b2ca34c7" - }, - "isConfigFile": false, - "path": "/usr/share/gcc/python/libstdcxx/v6/__init__.py" - }, - { - "digest": { - "algorithm": "md5", - "value": "51dc070f3c393db97de3424daef0400e" - }, - "isConfigFile": false, - "path": "/usr/share/gcc/python/libstdcxx/v6/printers.py" - }, - { - "digest": { - "algorithm": "md5", - "value": "715a28ac117c1e22d8fa5710c31fb527" - }, - "isConfigFile": false, - "path": "/usr/share/gcc/python/libstdcxx/v6/xmethods.py" - }, - { - "digest": { - "algorithm": "md5", - "value": "cbe6b58eb0c20a3785b88204f52447c0" - }, - "isConfigFile": false, - "path": "/usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30-gdb.py" - } - ], - "installedSize": 2686, - "maintainer": "Debian GCC Maintainers \u003cdebian-gcc@lists.debian.org\u003e", - "package": "libstdc++6", - "source": "gcc-12", - "sourceVersion": "", - "version": "12.2.0-14" - }, - "metadataType": "dpkg-db-entry", - "name": "libstdc++6", - "purl": "pkg:deb/debian/libstdc++6@12.2.0-14?arch=amd64\u0026upstream=gcc-12\u0026distro=debian-12", - "type": "deb", - "version": "12.2.0-14" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libsvtav1enc1:libsvtav1enc1:1.4.1\\+dfsg-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a7f8198e50b391d8", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsvtav1enc1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsvtav1enc1/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsvtav1enc1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsvtav1enc1/copyright" - } - ], - "spdxExpression": "BSD-3-Clause-Clear", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause-Clear" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsvtav1enc1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsvtav1enc1/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsvtav1enc1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsvtav1enc1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsvtav1enc1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsvtav1enc1/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsvtav1enc1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsvtav1enc1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsvtav1enc1/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsvtav1enc1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libsvtav1enc1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsvtav1enc1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libsvtav1enc1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libsvtav1enc1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8c0969f5a215aa4578625ef12f3aa7c6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libSvtAv1Enc.so.1.4.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "f634d90dee928618e0c515e347cb6713" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsvtav1enc1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f07cedfa7c18a6ace083d3728d2007e6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsvtav1enc1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "867f85b3313ceb5f0ca335da58a8ea7c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsvtav1enc1/copyright" - } - ], - "installedSize": 6632, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "libsvtav1enc1", - "source": "svt-av1", - "sourceVersion": "", - "version": "1.4.1+dfsg-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libsvtav1enc1", - "purl": "pkg:deb/debian/libsvtav1enc1@1.4.1+dfsg-1?arch=amd64\u0026upstream=svt-av1\u0026distro=debian-12", - "type": "deb", - "version": "1.4.1+dfsg-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libsystemd0:libsystemd0:252.22-1\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "eec74e7c5122eb22", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsystemd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsystemd0/copyright" - } - ], - "spdxExpression": "CC0-1.0", - "type": "declared", - "urls": [], - "value": "CC0-1.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsystemd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsystemd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsystemd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsystemd0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsystemd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsystemd0/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsystemd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsystemd0/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsystemd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsystemd0/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libsystemd0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsystemd0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libsystemd0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsystemd0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libsystemd0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libsystemd0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libcap2 (\u003e= 1:2.10)", - "libgcrypt20 (\u003e= 1.10.0)", - "liblz4-1 (\u003e= 0.0~r122)", - "liblzma5 (\u003e= 5.1.1alpha+20120614)", - "libzstd1 (\u003e= 1.5.2)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "5f57d226bfd0f2e065e645289d61d9fd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libsystemd.so.0.35.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "6eb135b4151ac6d07c1600ef3beafcd4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsystemd0/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d0d69651359d2d9fc4f84612ca43749" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsystemd0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b16a86fb841b001b52a5c5caccf526c2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libsystemd0/copyright" - } - ], - "installedSize": 908, - "maintainer": "Debian systemd Maintainers \u003cpkg-systemd-maintainers@lists.alioth.debian.org\u003e", - "package": "libsystemd0", - "source": "systemd", - "sourceVersion": "", - "version": "252.22-1~deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libsystemd0", - "purl": "pkg:deb/debian/libsystemd0@252.22-1~deb12u1?arch=amd64\u0026upstream=systemd\u0026distro=debian-12", - "type": "deb", - "version": "252.22-1~deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libtasn1-6:libtasn1-6:4.19.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libtasn1-6:libtasn1_6:4.19.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libtasn1_6:libtasn1-6:4.19.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libtasn1_6:libtasn1_6:4.19.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libtasn1:libtasn1-6:4.19.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libtasn1:libtasn1_6:4.19.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "d4da56d1d23cc1c5", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libtasn1-6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtasn1-6/copyright" - } - ], - "spdxExpression": "GFDL-1.3-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libtasn1-6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtasn1-6/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libtasn1-6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtasn1-6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libtasn1-6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtasn1-6/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libtasn1-6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtasn1-6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libtasn1-6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libtasn1-6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "04f3573e36206fb9754cad0d4b171176" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libtasn1.so.6.6.3" - }, - { - "digest": { - "algorithm": "md5", - "value": "8aa4286eea1e272e2128ba2e2bc2f647" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtasn1-6/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "db98678a7b974bf76a30e8a326105272" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtasn1-6/README.md" - }, - { - "digest": { - "algorithm": "md5", - "value": "014331d03e85268dc7e8a07b8b944f63" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtasn1-6/THANKS" - }, - { - "digest": { - "algorithm": "md5", - "value": "49c116447a90e48ab2702caad82659b7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtasn1-6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2eb12d2c099976f1ee10d7761a2f61d0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtasn1-6/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6be74a5c1b602b9eb0c9fbffceb24194" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtasn1-6/copyright" - } - ], - "installedSize": 124, - "maintainer": "Debian GnuTLS Maintainers \u003cpkg-gnutls-maint@lists.alioth.debian.org\u003e", - "package": "libtasn1-6", - "source": "", - "sourceVersion": "", - "version": "4.19.0-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libtasn1-6", - "purl": "pkg:deb/debian/libtasn1-6@4.19.0-2?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "4.19.0-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libtiff6:libtiff6:4.5.0-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "97b324fa6c9c4d6f", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libtiff6/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libtiff6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Hylafax" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libtiff6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libtiff6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libtiff6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libtiff6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)", - "libdeflate0 (\u003e= 1.0)", - "libjbig0 (\u003e= 2.0)", - "libjpeg62-turbo (\u003e= 1.3.1)", - "liblerc4 (\u003e= 3.0)", - "liblzma5 (\u003e= 5.1.1alpha+20120614)", - "libwebp7 (\u003e= 1.2.4)", - "libzstd1 (\u003e= 1.5.2)", - "zlib1g (\u003e= 1:1.1.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "4507bb8fdd1d5b715a9dc678846cc894" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libtiff.so.6.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "2863ecb25bb0272f70196a23110a98eb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtiff6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b3245419c6224b9a811a8bdf5b4c3cf6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtiff6/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "edc048dd4e12320ac433341a72cbac77" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtiff6/copyright" - } - ], - "installedSize": 711, - "maintainer": "Laszlo Boszormenyi (GCS) \u003cgcs@debian.org\u003e", - "package": "libtiff6", - "source": "tiff", - "sourceVersion": "", - "version": "4.5.0-6+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libtiff6", - "purl": "pkg:deb/debian/libtiff6@4.5.0-6+deb12u1?arch=amd64\u0026upstream=tiff\u0026distro=debian-12", - "type": "deb", - "version": "4.5.0-6+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libtinfo6:libtinfo6:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "16ce3f9a5a6f08b5", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libtinfo6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtinfo6/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libtinfo6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtinfo6/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT/X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libtinfo6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtinfo6/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libtinfo6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtinfo6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libtinfo6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libtinfo6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "2eb6be30b651761001da1e6570b0ad60" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libtinfo.so.6.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5b8cce3b5495c31d19ea3639e43194f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libtic.so.6.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d809a99e5b97ce3f56f7db10a4bbddb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtinfo6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "72817235b2d74616e4435718d0bc8849" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtinfo6/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ff7d32947f8538e046380c0b1c959a5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libtinfo6/copyright" - } - ], - "installedSize": 541, - "maintainer": "Craig Small \u003ccsmall@debian.org\u003e", - "package": "libtinfo6", - "source": "ncurses", - "sourceVersion": "", - "version": "6.4-4" - }, - "metadataType": "dpkg-db-entry", - "name": "libtinfo6", - "purl": "pkg:deb/debian/libtinfo6@6.4-4?arch=amd64\u0026upstream=ncurses\u0026distro=debian-12", - "type": "deb", - "version": "6.4-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libudev1:libudev1:252.22-1\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "149f02d90873ce5b", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libudev1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libudev1/copyright" - } - ], - "spdxExpression": "CC0-1.0", - "type": "declared", - "urls": [], - "value": "CC0-1.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libudev1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libudev1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libudev1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libudev1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libudev1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libudev1/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libudev1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libudev1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libudev1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libudev1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libudev1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libudev1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libudev1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libudev1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libudev1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libudev1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "3419a54da73c56c6d501550952bba8fb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libudev.so.1.7.5" - }, - { - "digest": { - "algorithm": "md5", - "value": "6eb135b4151ac6d07c1600ef3beafcd4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libudev1/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b61393ac25e156bfab3a4768870303a5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libudev1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b16a86fb841b001b52a5c5caccf526c2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libudev1/copyright" - } - ], - "installedSize": 239, - "maintainer": "Debian systemd Maintainers \u003cpkg-systemd-maintainers@lists.alioth.debian.org\u003e", - "package": "libudev1", - "source": "systemd", - "sourceVersion": "", - "version": "252.22-1~deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libudev1", - "purl": "pkg:deb/debian/libudev1@252.22-1~deb12u1?arch=amd64\u0026upstream=systemd\u0026distro=debian-12", - "type": "deb", - "version": "252.22-1~deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libunistring2:libunistring2:1.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "109cccfdf0cf7b17", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "FreeSoftware" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "GFDL-1.2-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "GFDL-1.2-or-later", - "type": "declared", - "urls": [], - "value": "GFDL-1.2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libunistring2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libunistring2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libunistring2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "70c489fa182ada86ee8a291fda872af5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libunistring.so.2.2.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "f546ab520053939a62aa314ba86a6125" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libunistring2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9744af59e8ff5854e3cfe3cb11a9936" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libunistring2/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3c551ec071a38c50ec620d68919f9ca" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libunistring2/copyright" - } - ], - "installedSize": 1807, - "maintainer": "Jörg Frings-Fürst \u003cdebian@jff.email\u003e", - "package": "libunistring2", - "source": "libunistring", - "sourceVersion": "", - "version": "1.0-2" - }, - "metadataType": "dpkg-db-entry", - "name": "libunistring2", - "purl": "pkg:deb/debian/libunistring2@1.0-2?arch=amd64\u0026upstream=libunistring\u0026distro=debian-12", - "type": "deb", - "version": "1.0-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libuuid1:libuuid1:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "747a26ba1b8b92a7", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSLA" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libuuid1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libuuid1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libuuid1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.25)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "0b0293d85de9f5e52978ddc083705714" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f41349b22d048e39dd672c6d9f4037c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libuuid1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bb7fd1ae3732779966184f543b8a91e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libuuid1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "353888f385cfb82eb97a693e78f3cc9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libuuid1/copyright" - } - ], - "installedSize": 79, - "maintainer": "util-linux packagers \u003cutil-linux@packages.debian.org\u003e", - "package": "libuuid1", - "source": "util-linux", - "sourceVersion": "", - "version": "2.38.1-5+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libuuid1", - "purl": "pkg:deb/debian/libuuid1@2.38.1-5+deb12u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-12", - "type": "deb", - "version": "2.38.1-5+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libwebp7:libwebp7:1.2.4-0.2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ae9ec39ac48a90cb", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libwebp7/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libwebp7/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libwebp7/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libwebp7/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libwebp7:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libwebp7:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8980d4c0fd4c6e426af423e5e67a29b3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libwebp.so.7.1.5" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f0c9a12fa85efdb80c08b9d9a16b5ab" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libwebp7/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f910412f7a9ab3c95b8f2a40d823af98" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libwebp7/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "017b22367852dc53155f01dcee4f3a85" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libwebp7/copyright" - } - ], - "installedSize": 544, - "maintainer": "Jeff Breidenbach \u003cjab@debian.org\u003e", - "package": "libwebp7", - "source": "libwebp", - "sourceVersion": "", - "version": "1.2.4-0.2+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libwebp7", - "purl": "pkg:deb/debian/libwebp7@1.2.4-0.2+deb12u1?arch=amd64\u0026upstream=libwebp\u0026distro=debian-12", - "type": "deb", - "version": "1.2.4-0.2+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libx11-6:libx11-6:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11-6:libx11_6:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11_6:libx11-6:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11_6:libx11_6:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11:libx11-6:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11:libx11_6:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "09410d7cdee6b7a9", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/libx11-6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx11-6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libx11-6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libx11-6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libxcb1 (\u003e= 1.11.1)", - "libx11-data" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "521d5784e6d3b28878cd432a542d06e8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libX11.so.6.4.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "73935a46de4281fc0b11e9913b06aace" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx11-6/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ecd37480c6098df01494787ae4f43828" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx11-6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5150cde351b6ee8a47bf0adfa0486995" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx11-6/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6121e1d103eb0c51500be21cdd73e4b4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx11-6/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b3bf08e452bf55411aac9e4fe527e99" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libx11-6" - } - ], - "installedSize": 1562, - "maintainer": "Debian X Strike Force \u003cdebian-x@lists.debian.org\u003e", - "package": "libx11-6", - "source": "libx11", - "sourceVersion": "", - "version": "2:1.8.4-2+deb12u2" - }, - "metadataType": "dpkg-db-entry", - "name": "libx11-6", - "purl": "pkg:deb/debian/libx11-6@2:1.8.4-2+deb12u2?arch=amd64\u0026upstream=libx11\u0026distro=debian-12", - "type": "deb", - "version": "2:1.8.4-2+deb12u2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libx11-data:libx11-data:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11-data:libx11_data:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11_data:libx11-data:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11_data:libx11_data:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11:libx11-data:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx11:libx11_data:2\\:1.8.4-2\\+deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "e7a8562a18255d2a", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/libx11-data/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx11-data/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libx11-data.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libx11-data.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "6d328964331595e3f866eaeda7e9e432" - }, - "isConfigFile": false, - "path": "/usr/share/X11/XErrorDB" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/C/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc0443ffae5a06179e9063f36b533860" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/C/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "2bfc6a5fad315280aab0eb9aa438b37b" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/C/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2f05fa9378970aff465fb7fae3eecd3b" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/am_ET.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/am_ET.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/am_ET.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6fc4ad7d172c2407369b84770f779a6" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/armscii-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "115b641fffa96c677d518626257d9a83" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/armscii-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "10926d171d5be9eac0573fe33a962751" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/armscii-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b6acbb22e3af3689c164e401fd54b02" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/compose.dir" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f2168b3546c019b015b2bd9ba3986d0" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/cs_CZ.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/cs_CZ.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/cs_CZ.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "f81b57fc00d746c0d95396b414a66fd1" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/el_GR.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/el_GR.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/el_GR.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "b10ee2e6ecd3d47491234a9e247c3c09" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/en_US.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "1bb4b16be622a8898f1b898f8a047f1a" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/en_US.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "5d58e0f76fcf6d1ef850559adc1604ab" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf7c194a75b008b1b7a2ad3cee1dc171" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/fi_FI.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/fi_FI.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/fi_FI.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "eab10948a2b7f2a2902a5759fc071eae" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/georgian-academy/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "1403d19ea095b2e41e0d201655318484" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/georgian-academy/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "81b0f803c1246cb15c58d87f119bf6a2" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/georgian-academy/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "b405c4d215bb0d36c3a13fac28a0cd12" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/georgian-ps/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "4dea5b0e2297d792cbc5619d9ed4adcf" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/georgian-ps/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "352e1df900aca453fb124068b3c9b387" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/georgian-ps/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "597760986352648af9ea7fcd308c6483" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ibm-cp1133/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "12168965928725c27a9312f6509c33ca" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ibm-cp1133/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "d99addb5ed9769cf20a0adb4c4a3b1f8" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ibm-cp1133/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iscii-dev/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "842b532951d57544ef5ce81488b24f11" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iscii-dev/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ad9ae3a850236418880926cc5016dd4" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iscii-dev/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/isiri-3342/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "c80b79ce4097b08233043826f16121e8" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/isiri-3342/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "16d9b30ebc6338404478520d229b3579" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/isiri-3342/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "73b50d9a5f91b78dfbda32eac5b15597" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-1/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc0443ffae5a06179e9063f36b533860" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-1/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad89ac556a9e81f4c0f047f07d80650a" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-1/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "bca0e39d0d0267413d6a69017951c302" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-10/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad9a9dc951fd3625e3a892e2224d88b1" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-10/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "a66800cb8f991a54a9d14349c09fea27" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-10/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-11/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e087de45cae828a5aff4cb1bd4cfdf9" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-11/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac426884815774c95184617e7d8dc030" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-11/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "c47c929f3f11f5ad2c7f895facd5edf9" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-13/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "df430ba0495815fc0641fa836b4d500d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-13/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "36befa8bc7b6527cb36aa87ded8da795" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-13/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "17f51d10172b72515474f3f2350a72b5" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-14/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "d9fd9a2e5a12276f4fbaf98980bfe389" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-14/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "23b499d7e6427d3216fc37c8fdb9c99a" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-14/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "04725b1000e50e204fab796df08a9aaa" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-15/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "45ff947fcb4c1bfcce1717c8f51186a7" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-15/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "fcfc26c2d8a1d90b23de3a65e5e9b1bb" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-15/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c3977c008746807b3b6d5c063fa32f7" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-2/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "df430ba0495815fc0641fa836b4d500d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-2/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f43f2196eb52dcf271d5b67fe8d546f" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-2/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "5dcc1773087712f2a7cc6c4e5e614c4c" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-3/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "838988f2064e281a621405d7fec77b80" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-3/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "57ee75076dedff3fea2d812fafcffece" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-3/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "7651792c6499b76a2148cb6db61a5098" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-4/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "6808f1f0ed0c6e536926293154686931" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-4/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec58b6458b84502e89a567919809d545" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-4/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "56b5bee192f4e653852a2f060c604347" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-5/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "df430ba0495815fc0641fa836b4d500d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-5/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "0debf1ced38bc2ff9ebc2e63c504a644" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-5/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "f30c64337047f6ef044498aff0a98b92" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-6/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "8746730e8c5554c4c772263631c57213" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-6/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "f0c0ac58c04137325cea7670fe9a00ae" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-6/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fbb9b9032ca9cb34759d0e902b424d5" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-7/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "df430ba0495815fc0641fa836b4d500d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-7/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "136592e8685815c6b78b487e50ad020c" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-7/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "833841c98c641d470c298090daf8aff5" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8c9aa5b6e10c9614bf97df08a085ed5" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a0933005661fecb5a29b846a782a0ca" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "73be32e7f5340662af32eb3211545215" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-9/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "df430ba0495815fc0641fa836b4d500d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-9/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "d48fc0d516214976acfe6551385f03f4" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-9/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca966808c4d55461077d8f2bbc0d30a4" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-9e/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "4487cf51720d67bd5deb743510cc8466" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-9e/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "feeb5f23ce82b88ccffb2dcd2b35592e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/iso8859-9e/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d25e1edaaab332859e4b8f11cafbb256" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja.JIS/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fe34725bd8044902a7b7f13f04e33ba" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja.JIS/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "95e0f1dce0c3ba1b6d99b906f966e52a" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja.JIS/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8b6ca6fa989759c04cf653b2fddad14" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja.SJIS/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c34cf538be839c551357067cde1f2a4" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja.SJIS/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "335b8d4b4f8a07d0901d3fd03e6f54a4" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja.SJIS/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "06a8e188393b4820f37449131b33c094" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "4beb3cdc6f83cb295c301925a54ded34" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "f608aee0d2180c5588b7c7df7778ecae" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d270350313c89329062b81b2bc28475" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja_JP.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c96f4a8ba24efdb69613ce58f77ecd3" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja_JP.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d3df86eecb4c1a6de0c4f98ff063a86" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ja_JP.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d270350313c89329062b81b2bc28475" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/km_KH.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3e000bb391b52d19c410b4d2bb4470d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/km_KH.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/km_KH.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "872dd43b60210f9fc1a226f7010232ff" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ko/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "b89ca2eb37333fbbaba7c7c3a9db9cd9" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ko/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d368e4912e61b1dcc0d701d3e2b4227" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ko/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d270350313c89329062b81b2bc28475" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ko_KR.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "e87a1ac199c9faadb5a87395a0456423" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ko_KR.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b59a51e75ee855a1582080271638884" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ko_KR.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "98f8b42feada28b151bf16f1d184b15a" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/koi8-c/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "353b3f751e821a5e90b07eb7443acb58" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/koi8-c/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ffaf95d3fad9cf43c8c90e922880771" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/koi8-c/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "61ab7be6753f27287d2f5b624aa9a2ff" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/koi8-r/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "342dc18b03cc6a253f35a04deb4bd45d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/koi8-r/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b22f70028914c5d52b632576ecd2fbc" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/koi8-r/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "652102c1d9bf6464c3818db237d9383e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/koi8-u/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "f1bedc33c1475111dac3af759ea78aca" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/koi8-u/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "7da2397c025ff8c43c41cc7153fee44c" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/koi8-u/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "408f863697dfcaf4ec6a7ca1f1b2b62a" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/locale.alias" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad449c57dfa0a2f7f89db7c15dc3a32c" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/locale.dir" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/microsoft-cp1251/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "547f6f367d091769d8e75c77ac0732b5" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/microsoft-cp1251/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "02cee4210a84363bee6acefdde685a91" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/microsoft-cp1251/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/microsoft-cp1255/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "aed4431932762bd3ee06f05a14c12ff2" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/microsoft-cp1255/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "55748889c403eb4444a3972245b76bce" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/microsoft-cp1255/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/microsoft-cp1256/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b2569c4e0cf5582d0bc8352a42070da" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/microsoft-cp1256/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "672bd2fa60c6764230e006c36228d883" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/microsoft-cp1256/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "600b28492b8ed125f8c8898b87c10d67" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/mulelao-1/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "63e9400a5389c743f0efa49d1bf2327f" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/mulelao-1/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5467dd3a5783de0dc07d760d8d8fd37" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/mulelao-1/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/nokhchi-1/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba6e90cde52c3e0324aff1beec106f30" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/nokhchi-1/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "89c7e4d928079b574be03460c583b0d6" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/nokhchi-1/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "18fc662bebc1fb519ff490a96bd6a19d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/pt_BR.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "43ad17f4090019da2d25579ace4476b5" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/pt_BR.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "aba3b6c4eb25f0d814aa5d9cf1656ca4" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/pt_BR.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c4d73fd34ebf5d8be86d5e60416d5df" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/pt_PT.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a338d59441f7f750da2999ef51a9e51" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/pt_PT.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b6f324b4d3dde51901e59a50413782f" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/pt_PT.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d270350313c89329062b81b2bc28475" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ru_RU.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb5f453a0e9833123ae9e6527abdbaed" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ru_RU.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b510bbd23c9389f9816717b50dce00f" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/ru_RU.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d48454d97d834b89892219e4f94a7f80" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/sr_RS.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3e000bb391b52d19c410b4d2bb4470d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/sr_RS.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/sr_RS.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/tatar-cyr/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2350fb81ed02d64f22a6cc61d1f61ba" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/tatar-cyr/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "c000c89c6f7063fffc0f409f814f3048" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/tatar-cyr/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d270350313c89329062b81b2bc28475" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/th_TH.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "28a7d15492c8db6143d88e2a77b1bf5e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/th_TH.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "086a5c8af49bb50b4fa754ff1cb42bf6" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/th_TH.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/th_TH/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6768e8186255a62de5dd23efafcd5a2" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/th_TH/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "e758220f81461ca8e227f8fc3096aef3" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/th_TH/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d41d8cd98f00b204e9800998ecf8427e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/tscii-0/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c32b52365a1226806264026ab56d409" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/tscii-0/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a12c1b326985e7ceb8191d38137df52" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/tscii-0/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "e98d51b988718079c76343b0124a2e86" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/vi_VN.tcvn/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f406cc64fff882694be4cfcaed2c284" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/vi_VN.tcvn/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "27e04c6bfba33f20ef061e69d2f5cfc2" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/vi_VN.tcvn/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b24c36aec19b9a1ca6b0a2c11582f9d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/vi_VN.viscii/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "a812a709ede9ce7b19243755b2502008" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/vi_VN.viscii/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "fff6d43331d6a9994d15fe1859627b34" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/vi_VN.viscii/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d270350313c89329062b81b2bc28475" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbead6609c11b0d6d6df4caff6e5094a" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "525d673088793c70476ed1eaae8aef6b" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "99b920cdac02519683f626948b129292" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN.gb18030/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa0a6716daea4abc4379633114974d06" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN.gb18030/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "ead9f7638bfb5519e145b0af9f27c11a" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN.gb18030/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "036b2bbf32b3f1fa701b6a67dacbee0a" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN.gbk/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb7a32080ad5f302dcf797a866cf5756" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN.gbk/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "75238ce2f915a31467dbb551a467e460" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN.gbk/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "d68a17228c0c2a17da7189ec50ac5f6e" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "501f84ee2a649a59efece8e8319836e1" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "649bd0357b3d849e81c18b7216f90394" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_CN/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d270350313c89329062b81b2bc28475" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_HK.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9bbeff73a5449882a4df52d88f87e71" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_HK.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "820f7a463e5b9b4394f378911368d262" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_HK.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "06ef6fc47bdce1c8848a86717e789117" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_HK.big5/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "5db17a600aa66d8a5e159e51ce22cf4d" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_HK.big5/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "e17244e4c8efcd9be80a82671c9012c8" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_HK.big5/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "f2b6b1900f967bd54a6b563817044196" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_HK.big5hkscs/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "813451867b40badacadb07a4f18ee2ae" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_HK.big5hkscs/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "829601d42b62fec60e0d7cb0ed5d08c1" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_HK.big5hkscs/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d270350313c89329062b81b2bc28475" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_TW.UTF-8/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ed99c616118fcece3725d265f1faf55" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_TW.UTF-8/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5ca47a49de1ce07541dd997c6df98c6" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_TW.UTF-8/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "74d5e6627041f698f096f4436d72fc35" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_TW.big5/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "8885c6655ede4a43b78dbe69bc0209f9" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_TW.big5/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "5d7e003465f80b5ea361e659d238ae57" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_TW.big5/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "aea2125f15a1810e3918936021aa208b" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_TW/Compose" - }, - { - "digest": { - "algorithm": "md5", - "value": "6aa745531f36e329e11e3de6f20cc258" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_TW/XI18N_OBJS" - }, - { - "digest": { - "algorithm": "md5", - "value": "91eafa5b4020805eec60a87dedfb5b38" - }, - "isConfigFile": false, - "path": "/usr/share/X11/locale/zh_TW/XLC_LOCALE" - }, - { - "digest": { - "algorithm": "md5", - "value": "14aa3a86c5aa5ade8d3fff9eaea97244" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx11-data/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5150cde351b6ee8a47bf0adfa0486995" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx11-data/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6121e1d103eb0c51500be21cdd73e4b4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx11-data/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "4afad9e3200e6b0a95ce3e96fb48445d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/Compose.5.gz" - } - ], - "installedSize": 1577, - "maintainer": "Debian X Strike Force \u003cdebian-x@lists.debian.org\u003e", - "package": "libx11-data", - "source": "libx11", - "sourceVersion": "", - "version": "2:1.8.4-2+deb12u2" - }, - "metadataType": "dpkg-db-entry", - "name": "libx11-data", - "purl": "pkg:deb/debian/libx11-data@2:1.8.4-2+deb12u2?arch=all\u0026upstream=libx11\u0026distro=debian-12", - "type": "deb", - "version": "2:1.8.4-2+deb12u2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libx265-199:libx265-199:3.5-2\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx265-199:libx265_199:3.5-2\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx265_199:libx265-199:3.5-2\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx265_199:libx265_199:3.5-2\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx265:libx265-199:3.5-2\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libx265:libx265_199:3.5-2\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "e6616d6e8b142bad", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libx265-199/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx265-199/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libx265-199/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx265-199/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libx265-199/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx265-199/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libx265-199/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx265-199/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libx265-199/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx265-199/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libx265-199/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx265-199/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libx265-199/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx265-199/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libx265-199:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libx265-199:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libnuma1 (\u003e= 2.0.11)", - "libstdc++6 (\u003e= 4.1.1)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "f25db3e546c1a5272a84c563f5c9e2f1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libx265.so.199" - }, - { - "digest": { - "algorithm": "md5", - "value": "2fc1634fc0f12c64324dbca67fffe239" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx265-199/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ce1bcc80eb2e9065b3222fa18c733b0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx265-199/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "844cda75c7f448182069f41cdb56b4b8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx265-199/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2aeace853b988091adcae5b27b2a4ae3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libx265-199/copyright" - } - ], - "installedSize": 16203, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "libx265-199", - "source": "x265", - "sourceVersion": "3.5-2", - "version": "3.5-2+b1" - }, - "metadataType": "dpkg-db-entry", - "name": "libx265-199", - "purl": "pkg:deb/debian/libx265-199@3.5-2+b1?arch=amd64\u0026upstream=x265@3.5-2\u0026distro=debian-12", - "type": "deb", - "version": "3.5-2+b1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libxau6:libxau6:1\\:1.0.9-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "6bca9add7b246c04", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/libxau6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxau6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libxau6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libxau6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "1917a88ab1b833a9912435aa7461bd1c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libXau.so.6.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "bda3f8b71d243198ee8355c5cd13d2ee" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxau6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "241a09e109a40c191a1823c92d01cb42" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxau6/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "68d1360baf180902ffd5a66615982847" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxau6/copyright" - } - ], - "installedSize": 42, - "maintainer": "Debian X Strike Force \u003cdebian-x@lists.debian.org\u003e", - "package": "libxau6", - "source": "libxau", - "sourceVersion": "", - "version": "1:1.0.9-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libxau6", - "purl": "pkg:deb/debian/libxau6@1:1.0.9-1?arch=amd64\u0026upstream=libxau\u0026distro=debian-12", - "type": "deb", - "version": "1:1.0.9-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libxcb1:libxcb1:1.15-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "1a26ba66e66b3466", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/libxcb1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxcb1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libxcb1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libxcb1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libxau6 (\u003e= 1:1.0.9)", - "libxdmcp6" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8c2774d123f65d9e8fa75a3a5ab9f9e4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d3f6c5e663b4c989f34755f4e5d2fd7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxcb1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a18c03e2a4373db97932f881a8c74993" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxcb1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "618ee90893b45d0d0c19d41a3a3d2e7d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxcb1/copyright" - } - ], - "installedSize": 296, - "maintainer": "Debian X Strike Force \u003cdebian-x@lists.debian.org\u003e", - "package": "libxcb1", - "source": "libxcb", - "sourceVersion": "", - "version": "1.15-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libxcb1", - "purl": "pkg:deb/debian/libxcb1@1.15-1?arch=amd64\u0026upstream=libxcb\u0026distro=debian-12", - "type": "deb", - "version": "1.15-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libxdmcp6:libxdmcp6:1\\:1.1.2-3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "df10c96e9dc0111d", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/libxdmcp6/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxdmcp6/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libxdmcp6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libxdmcp6:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libbsd0 (\u003e= 0.2.0)", - "libc6 (\u003e= 2.4)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "c009636d1bded3301b984b4537ca564f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "5254ae45da9fa7efeec3ec9b585104c5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxdmcp6/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "85f708bf4dd2fb34376a0ff3bc85b808" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxdmcp6/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "35343781bdf52fb6ccc51e0985418707" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxdmcp6/copyright" - } - ], - "installedSize": 53, - "maintainer": "Debian X Strike Force \u003cdebian-x@lists.debian.org\u003e", - "package": "libxdmcp6", - "source": "libxdmcp", - "sourceVersion": "", - "version": "1:1.1.2-3" - }, - "metadataType": "dpkg-db-entry", - "name": "libxdmcp6", - "purl": "pkg:deb/debian/libxdmcp6@1:1.1.2-3?arch=amd64\u0026upstream=libxdmcp\u0026distro=debian-12", - "type": "deb", - "version": "1:1.1.2-3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libxml2:libxml2:2.9.14\\+dfsg-1.3\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2015aa6ec3465662", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libxml2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxml2/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libxml2/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxml2/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT-1" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libxml2/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxml2/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libxml2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libxml2:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libicu72 (\u003e= 72.1~rc-1~)", - "liblzma5 (\u003e= 5.1.1alpha+20120614)", - "zlib1g (\u003e= 1:1.2.3.3)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "9a4c50460920fbecaff385ee5eb6464f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.14" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2d496e80a9bcf6781f7425612193c2d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxml2/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "31783a993243a6acf931190d47109017" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxml2/README.md" - }, - { - "digest": { - "algorithm": "md5", - "value": "26f0f87af2b296b24ad80849a2a3d740" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxml2/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b220f561e7d61803081f2c4856578d1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxml2/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "35ac66460fc3525d9d7531986ebc1dc3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxml2/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2585ea42cb6ec3a0f95ac452f29128c" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libxml2" - } - ], - "installedSize": 1866, - "maintainer": "Debian XML/SGML Group \u003cdebian-xml-sgml-pkgs@lists.alioth.debian.org\u003e", - "package": "libxml2", - "source": "", - "sourceVersion": "", - "version": "2.9.14+dfsg-1.3~deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libxml2", - "purl": "pkg:deb/debian/libxml2@2.9.14+dfsg-1.3~deb12u1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "2.9.14+dfsg-1.3~deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libxpm4:libxpm4:1\\:3.5.12-1.1\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ae1fe690fc27e1c5", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/libxpm4/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxpm4/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libxpm4:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libxpm4:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libx11-6" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "0788faf02da09ef4744a4ece003763a2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libXpm.so.4.11.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "e7e993b80db2c730331ccb40e229f3f3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxpm4/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "33e7adc898d47a0d7d5eb5941fb014ff" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxpm4/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5be0980429ecb3f7a6e1563a8eac303" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxpm4/copyright" - } - ], - "installedSize": 111, - "maintainer": "Debian X Strike Force \u003cdebian-x@lists.debian.org\u003e", - "package": "libxpm4", - "source": "libxpm", - "sourceVersion": "", - "version": "1:3.5.12-1.1+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "libxpm4", - "purl": "pkg:deb/debian/libxpm4@1:3.5.12-1.1+deb12u1?arch=amd64\u0026upstream=libxpm\u0026distro=debian-12", - "type": "deb", - "version": "1:3.5.12-1.1+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libxslt1.1:libxslt1.1:1.1.35-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "f31b75ee6392365a", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/libxslt1.1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxslt1.1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libxslt1.1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libxslt1.1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.33)", - "libgcrypt20 (\u003e= 1.10.0)", - "libxml2 (\u003e= 2.9.0)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "de6a262a83056b0364e233228e506d3c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libexslt.so.0.8.20" - }, - { - "digest": { - "algorithm": "md5", - "value": "c70d02fc69cd6c4f8fce1d999f6017a3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libxslt.so.1.1.35" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b02669437670161c86e18fe64105301" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxslt1.1/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e8bd690c75965486826e59d46950e4a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxslt1.1/FEATURES.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1dbee2ddc8d2ca332b35c3af9e27977" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxslt1.1/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a79a3d0cb22761880ab0d27c838a014" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxslt1.1/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "d70f8f5992d96205ee260c3232318be2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxslt1.1/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "1671e62be479162b8d9a012c81bc235e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxslt1.1/TODO" - }, - { - "digest": { - "algorithm": "md5", - "value": "97f294295ce4177ab2d18760b0fff71e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxslt1.1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a50ea7ab9c05c5ba45763f7662a1ed3e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxslt1.1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3896dd4041149ce6158d2aa28d963db0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxslt1.1/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "f71e24c0633ea0098416c800d139aca1" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/libxslt1.1" - } - ], - "installedSize": 504, - "maintainer": "Debian XML/SGML Group \u003cdebian-xml-sgml-pkgs@lists.alioth.debian.org\u003e", - "package": "libxslt1.1", - "source": "libxslt", - "sourceVersion": "", - "version": "1.1.35-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libxslt1.1", - "purl": "pkg:deb/debian/libxslt1.1@1.1.35-1?arch=amd64\u0026upstream=libxslt\u0026distro=debian-12", - "type": "deb", - "version": "1.1.35-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libxxhash0:libxxhash0:0.8.1-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "80b285a817bbd8db", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libxxhash0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libxxhash0/copyright" - } - ], - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "value": "BSD-2-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libxxhash0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libxxhash0/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libxxhash0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libxxhash0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libxxhash0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libxxhash0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "74d5c2ec2a906f74f937ff4a8d65056b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libxxhash.so.0.8.1" - }, - { - "digest": { - "algorithm": "md5", - "value": "2901823ca19c4a78e117f13d4e07838e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxxhash0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc972bdea3b551276a692eb24cbebc87" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxxhash0/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b056431e3993f9e5e2a5bb4e0c85eae7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libxxhash0/copyright" - } - ], - "installedSize": 99, - "maintainer": "Josue Ortega \u003cjosue@debian.org\u003e", - "package": "libxxhash0", - "source": "xxhash", - "sourceVersion": "", - "version": "0.8.1-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libxxhash0", - "purl": "pkg:deb/debian/libxxhash0@0.8.1-1?arch=amd64\u0026upstream=xxhash\u0026distro=debian-12", - "type": "deb", - "version": "0.8.1-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libyuv0:libyuv0:0.0\\~git20230123.b2528b0-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "a7f8ea4515ac767e", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libyuv0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libyuv0/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libyuv0/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libyuv0/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libyuv0/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libyuv0/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libyuv0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/libyuv0:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libgcc-s1 (\u003e= 3.0)", - "libjpeg62-turbo (\u003e= 1.3.1)", - "libstdc++6 (\u003e= 5)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "f016f39b65138c438356f1c7fdd632de" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libyuv.so.0.0.1857" - }, - { - "digest": { - "algorithm": "md5", - "value": "747a9ad227742f95861d867e1de813d5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libyuv0/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "772d35416db181f08796991785a0c6cc" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libyuv0/copyright" - } - ], - "installedSize": 671, - "maintainer": "Debian Multimedia Maintainers \u003cdebian-multimedia@lists.debian.org\u003e", - "package": "libyuv0", - "provides": [ - "libyuv" - ], - "source": "libyuv", - "sourceVersion": "", - "version": "0.0~git20230123.b2528b0-1" - }, - "metadataType": "dpkg-db-entry", - "name": "libyuv0", - "purl": "pkg:deb/debian/libyuv0@0.0~git20230123.b2528b0-1?arch=amd64\u0026upstream=libyuv\u0026distro=debian-12", - "type": "deb", - "version": "0.0~git20230123.b2528b0-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:libzstd1:libzstd1:1.5.4\\+dfsg2-5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2d1a4631243ef86d", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/libzstd1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libzstd1/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libzstd1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libzstd1/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libzstd1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libzstd1/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/libzstd1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libzstd1/copyright" - } - ], - "spdxExpression": "Zlib", - "type": "declared", - "urls": [], - "value": "zlib" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/libzstd1/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libzstd1/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/libzstd1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/libzstd1:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8cbfb3ecf598a489c42186dfd36c05e8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3e502d79dbb717ba408b610d2929194" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libzstd1/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c3bbcb5916aab01d683efd0a69c23a7c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libzstd1/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d3978465887047b10c1761474cac3b6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/libzstd1/copyright" - } - ], - "installedSize": 785, - "maintainer": "RPM packaging team \u003cteam+pkg-rpm@tracker.debian.org\u003e", - "package": "libzstd1", - "source": "libzstd", - "sourceVersion": "", - "version": "1.5.4+dfsg2-5" - }, - "metadataType": "dpkg-db-entry", - "name": "libzstd1", - "purl": "pkg:deb/debian/libzstd1@1.5.4+dfsg2-5?arch=amd64\u0026upstream=libzstd\u0026distro=debian-12", - "type": "deb", - "version": "1.5.4+dfsg2-5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:login:login:1\\:4.13\\+dfsg1-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "95082a001564c69b", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/login/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/login/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/login/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/login/copyright" - } - ], - "spdxExpression": "GPL-1.0-only", - "type": "declared", - "urls": [], - "value": "GPL-1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/login/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/login/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/login/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/login/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/login/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/login/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/login/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/login/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/login.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/login.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/login.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/login.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "96ecc220a19a39269872df819c11a6e4" - }, - "isConfigFile": false, - "path": "/bin/login" - }, - { - "digest": { - "algorithm": "md5", - "value": "f43a7b1eb7e082f1d4e2cb8f8376e71b" - }, - "isConfigFile": true, - "path": "/etc/login.defs" - }, - { - "digest": { - "algorithm": "md5", - "value": "5afbc06eb5f71fef25170cf3c936a442" - }, - "isConfigFile": true, - "path": "/etc/pam.d/login" - }, - { - "digest": { - "algorithm": "md5", - "value": "c39ef87648ecf8b93bbc67f002be9baa" - }, - "isConfigFile": false, - "path": "/usr/bin/faillog" - }, - { - "digest": { - "algorithm": "md5", - "value": "35e6314dcc7ec7589257fc869441194a" - }, - "isConfigFile": false, - "path": "/usr/bin/lastlog" - }, - { - "digest": { - "algorithm": "md5", - "value": "cdb06c6e41b8884052009e1b1cec0690" - }, - "isConfigFile": false, - "path": "/usr/bin/newgrp" - }, - { - "digest": { - "algorithm": "md5", - "value": "627c87e47d4fd3b5a1309caf10b99d39" - }, - "isConfigFile": false, - "path": "/usr/sbin/nologin" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac3f76f2fa4d5af0fd55c8a7fb4550c7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/login/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e4343bc1c35d7b374ef4709b6e45cfb4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/login/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c4183c055e951bfe7e6a950175da696" - }, - "isConfigFile": false, - "path": "/usr/share/doc/login/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "76acb0f2c68a79b867f2ae5f3d7aac1f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/login/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b421f2c7316ef9958c2d87a76a434119" - }, - "isConfigFile": false, - "path": "/usr/share/doc/login/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "59d56da30dad09bc375fd989e769e6c7" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/login" - }, - { - "digest": { - "algorithm": "md5", - "value": "1cc1aaa693c56d89a5bb40d34002d202" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bs/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "96d7d796669454ffef363d931f69ea4f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d670c395fd0b9c8a5321d7960eed6416" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8590fa97e837e16783a1d8efdf06a772" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5d96a3abf85d98e1ca0bc41d42a90eba" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "024b32d9f0e4cc63c3ae30ef67317db1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/dz/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "459576839c7e429b027df24759629297" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8e8fea40dc86e8036ed94b55a840073" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c10d8a6b7a02431c6505df7449de1031" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c45c7d83151ad386847b09c1c8f502e2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "feeea39d001af74c3c7c1b38f05b00f0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c87d1c43a49dd167d72127c9215ac67" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "74634ddb274ba14b71ced07bbafd5a06" - }, - "isConfigFile": false, - "path": "/usr/share/locale/he/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "20374a06531f63dd260da36400920dc3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d15ddd069dbcc2463ecec72f2a8b2a18" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "76165478e3593c69f9323822085e38f8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0d1b5ee2ca8c982ad64e59e79542f80" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b000d4b605823d833fd19c150c7e69bd" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ka/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8dc30f2ea9fd49b632df754dea628a2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/kk/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f84783f7ab15cd6d25748d1ce713d5e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/km/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "26a4572d7f8cf671221dd4b99c78cab1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5a72793f536dab33c2605e8048b50e5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cbad8722ffb39c591d3d2deb8e8c0b32" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ne/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "18d9a7b06c5d15dd5b3f07ca605f07a4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5ed52d60133d4a422aa9ce525449f30" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nn/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "76c9319e562be0a016fb7d7a1346bc10" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "0114b03d02b5711629ba13511f12bfa2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "78bd8409bdaa01687b37f2b600d8939f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bdc60eafeb2a3e360bf3039fad512cf5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c3a96e0eb92324762db08f6ca09b989c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "507b0620495ac1d45d954161d0056526" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7634e9d529f5ba1d5ef6b169508f29d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sq/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8332af81966baff96f368292b51d055a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3ec6bad09d72e3972b85f319acc8d21" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tl/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8acf3607f9b9cb33f50b14b3d14ec253" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b30aeaa00b7bdae4e0288288d1650391" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "743d594cab0a362eeeb11c118aef4d0c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "720e2f5d7d69d7e374605b36de67cda5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "899c81f0eebeee30a0e4b4df4a7070d9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/shadow.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3dc0bd3c39913fcf0831dbadfd8fee96" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dab018e3b0452b0d405cb1a0eface871" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1dff03183fadffe020b48b0c5bf6c706" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b415fb43f8778a0542c390c48eac7fd1" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab16e0024164843d847e4c3554737dfa" - }, - "isConfigFile": false, - "path": "/usr/share/man/da/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc0748a2b443c684623dcffa2bfa55e6" - }, - "isConfigFile": false, - "path": "/usr/share/man/da/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "83340b012a7aa9c3dc6b684b3e19f49b" - }, - "isConfigFile": false, - "path": "/usr/share/man/da/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2cbc56567993d4b1e477f8c7f05dee7c" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "75f6671855d6111638c6659dd66a1dc1" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b3967210920aae022210debbe26373b" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "851b64997950bb9d5d8ac285f35fa9b1" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "64b96e170dbca73eae4efcd7bd9e4f74" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/login.defs.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4ab69bba01ae1eca6409758c6156546" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "564292b1b25ef3cddc4ecaed6df3394c" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb228f5d8b1cecb56ecbae165d5774ab" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6fa9bb688182805e7dd69fc1599e6859" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "55d49c3b2a2ea8ca6919bf2d5755bf75" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e03b1a6ea410472f7460e47aa17719ea" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e036bb3991862d46cad93644dbd1e587" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2f64ebe202247fe193f4abcae2ece42e" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/login.defs.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de052420147d18655ec42beb6a02a3b1" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aff4acb65d7452df2397d3e5a5b6c182" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c3ce44b91f0c03829cfec7ab2f2b9239" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ca38fa435a335697bfb710497f406e5" - }, - "isConfigFile": false, - "path": "/usr/share/man/hu/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d194c8993b60eee3a71735517ea37c3" - }, - "isConfigFile": false, - "path": "/usr/share/man/hu/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab04434778785251e189cb1e9a25622b" - }, - "isConfigFile": false, - "path": "/usr/share/man/hu/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "af3137d66656cf5acf99934caf855ede" - }, - "isConfigFile": false, - "path": "/usr/share/man/id/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8aa35e533d983bd2cd5ca675af5e42f" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cdfd9dfeb48567356356a41d6b8c4e3e" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dfde005db94c9a38c0323b7e3785985d" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "78aaa8c213f6788a1a3263e0d83fb9d6" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7ff3a0471e7958a22255e17e81b82ca7" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man5/login.defs.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "550e6f76f102a5429ed4409a88cc0be0" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "744a019d9cb18ed88b8ead63fad084d4" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a80e7e21157f9d279006f138c6bf71e8" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "95c51c5551c94c3eea7382c456d8c2af" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "68dc9a910500890a0c8e147b03225f97" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d58312974f1c5b5600f5a82ed8fcfd9f" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "00490117533cea5b97a1c651deb4d037" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man5/login.defs.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "73ecc988396be77f338ceec98e03725f" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cecf83e25d93f09cfb4dd33457526029" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f83045ff2d0c47f32ab3a0d18bc026d0" - }, - "isConfigFile": false, - "path": "/usr/share/man/ko/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eda64759ff7d941f6c93d6688cf81fd1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "11af67b32134668bb88c8b93b29cd7d0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b26699f1e00e812db2a12a4059387050" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "edd33d659d4c8f65fb36a0e2c14095ce" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b5d92d80d35eb3fd24678942747930f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/login.defs.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "be32c5fcae85870c82311196fde33574" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb273733d5a93971690c927bc14523c5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a970ca3d849c81874a6b67e96c653bf2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ecf77ee43dea3e2de9e6c5c96ce7eec0" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "82d107df4ddb7d5c2da1e106ab62dad8" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4aee50fd4f4e1f02ae2ae17431727542" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e54974e2717265fc921ecc004009a261" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "00c7b0a17b0ad23caa5e816b220be39c" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7edb0f84800c54f5c626a1a941c73a4" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c694e47bb2e7e84fc5468ad17425694" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e866b9b757176e2f1ca75bab520c33c6" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ac5ed32c21bea986869cd6f2ac27b4f" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "11cc44ccd011cab89339016a1f929a72" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man5/login.defs.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "420752f7fe9bbc329222882f92eaa030" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "657a55369ff27ee71964525dba569f33" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "212096d34764129a5ca9c42b14224d62" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "74a4c5a17f3e1644db1d0ea96b96d147" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b333a8d690d2699c0f0f3c4de3b02f27" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc3b102254e607c5c01a308de21a0613" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "200bf2371e74de11b556139f5b22c09a" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a304fee24825a17f2a6e8ede282843b" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d8ca7c8f5d6c095bdeac6d1a9c0fc0d" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b33af6a61fe7344e8514c2e74199dee2" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "972075b51815b889522d21f319befbc4" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bbfaa71c2ebf08f9fa5315e1d2a66099" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3815920c263f5e55abd0c3e22781d076" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "73e80a34581aed756b8703dc660b2c0e" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca73f6c2506a806df231a981ae8905fe" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man5/login.defs.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "05d80a452debdf9d67db0fdbe0c1e4be" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7f493e1be4045619d01a6f3559c6b6d4" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a6572f4c515fc7775f5deb96e30c7f9" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "786c778a388fd5de5fa78ad553c2c2f5" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man1/login.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9cd76827825bdfde4346f72b6b1b11d1" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man1/newgrp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "43de0dd10b7d9384f008abb6823bb8bd" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man1/sg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "346a1d6640d300d88ad08880ca26a92d" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man5/faillog.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b68731380b7f0a1de38b896ce8641c36" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man5/login.defs.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "202097a77b2490355cd91a29845fb9c8" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/faillog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b72a4d0c283631c1d777cb05defc5f24" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/lastlog.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d3481b69a6f5a5e7e5721e91725b947" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/nologin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ee0cef586821b40e08c07c2e8df0af4" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man1/newgrp.1.gz" - } - ], - "installedSize": 2551, - "maintainer": "Shadow package maintainers \u003cpkg-shadow-devel@lists.alioth.debian.org\u003e", - "package": "login", - "preDepends": [ - "libaudit1 (\u003e= 1:2.2.1)", - "libc6 (\u003e= 2.34)", - "libcrypt1 (\u003e= 1:4.1.0)", - "libpam0g (\u003e= 0.99.7.1)", - "libpam-runtime", - "libpam-modules" - ], - "source": "shadow", - "sourceVersion": "1:4.13+dfsg1-1", - "version": "1:4.13+dfsg1-1+b1" - }, - "metadataType": "dpkg-db-entry", - "name": "login", - "purl": "pkg:deb/debian/login@1:4.13+dfsg1-1+b1?arch=amd64\u0026upstream=shadow@1:4.13+dfsg1-1\u0026distro=debian-12", - "type": "deb", - "version": "1:4.13+dfsg1-1+b1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:logsave:logsave:1.47.0-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "5fbda5347c254f6a", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "Kazlib", - "type": "declared", - "urls": [], - "value": "Kazlib" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - ], - "spdxExpression": "Latex2e", - "type": "declared", - "urls": [], - "value": "Latex2e" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/logsave/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/logsave.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/logsave.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "cbcac5fbee73e91a7c765bf75e4769ed" - }, - "isConfigFile": false, - "path": "/sbin/logsave" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a7febbcfbecaa5f4659d97a4ef90470" - }, - "isConfigFile": false, - "path": "/usr/share/doc/logsave/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1310ed8edd8d42af06394a2c050f9c8c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/logsave/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "9bce00b2f861028e0ef2cea1e6ff6d95" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/logsave.8.gz" - } - ], - "installedSize": 49, - "maintainer": "Theodore Y. Ts'o \u003ctytso@mit.edu\u003e", - "package": "logsave", - "source": "e2fsprogs", - "sourceVersion": "", - "version": "1.47.0-2" - }, - "metadataType": "dpkg-db-entry", - "name": "logsave", - "purl": "pkg:deb/debian/logsave@1.47.0-2?arch=amd64\u0026upstream=e2fsprogs\u0026distro=debian-12", - "type": "deb", - "version": "1.47.0-2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:mawk:mawk:1.3.4.20200120-3.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ab8cb640bde51524", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/mawk/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mawk/copyright" - } - ], - "spdxExpression": "CC-BY-3.0", - "type": "declared", - "urls": [], - "value": "CC-BY-3.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mawk/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mawk/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mawk/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mawk/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/mawk/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mawk/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/mawk.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/mawk.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.29)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "1c32072670f4b5da0e78cdd610f1f09b" - }, - "isConfigFile": false, - "path": "/usr/bin/mawk" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f141143c36933d1212238a986f7a3b6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/ACKNOWLEDGMENT" - }, - { - "digest": { - "algorithm": "md5", - "value": "beda9507694b46ec3e775ec048fca0ff" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "8663e4c709f95d432306a085c9c8acaf" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "03fd3e3bde333d9e4e74eca16c542164" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "011eb8c22864408cf4d3ee25723a2965" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc119ca517f2c5469eac3bd700ec9f48" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/ct_length.awk" - }, - { - "digest": { - "algorithm": "md5", - "value": "60f32158c4e91149fbea1555cfa84d90" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/decl.awk" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5cd81d4d56dcb96d08a3b636221489a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/deps.awk" - }, - { - "digest": { - "algorithm": "md5", - "value": "24a21d4b4163562c9ed993c254d7fa39" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/eatc.awk" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c30333217f6c3261d55ee5875dc0a6c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/gdecl.awk" - }, - { - "digest": { - "algorithm": "md5", - "value": "b49a1ad9d99bf64db1eb3b0fad028ea8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/hcal" - }, - { - "digest": { - "algorithm": "md5", - "value": "d27acaced201bb42222486bd76a4c37e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/hical" - }, - { - "digest": { - "algorithm": "md5", - "value": "0dcd1737b5d65dcc948d431e45a476c1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/nocomment.awk" - }, - { - "digest": { - "algorithm": "md5", - "value": "844ba747af7f318c98fe601236722525" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/primes.awk" - }, - { - "digest": { - "algorithm": "md5", - "value": "32b7e764592bcfed4b1a4d94d0e464f1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mawk/examples/qsort.awk" - }, - { - "digest": { - "algorithm": "md5", - "value": "21eb35e9c646bca55dfac23827c588fb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/mawk.1.gz" - } - ], - "installedSize": 263, - "maintainer": "Boyuan Yang \u003cbyang@debian.org\u003e", - "package": "mawk", - "provides": [ - "awk" - ], - "source": "", - "sourceVersion": "", - "version": "1.3.4.20200120-3.1" - }, - "metadataType": "dpkg-db-entry", - "name": "mawk", - "purl": "pkg:deb/debian/mawk@1.3.4.20200120-3.1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.3.4.20200120-3.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:mount:mount:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "762a6d2f42dbb84d", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSLA" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/mount/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/mount.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/mount.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "d818c5bd9668bb87a7c36f9f65dc9eb8" - }, - "isConfigFile": false, - "path": "/bin/mount" - }, - { - "digest": { - "algorithm": "md5", - "value": "1107411fdd40713e0f19aa94a0691e82" - }, - "isConfigFile": false, - "path": "/bin/umount" - }, - { - "digest": { - "algorithm": "md5", - "value": "889de58fad832400061318a37e9f892f" - }, - "isConfigFile": false, - "path": "/sbin/losetup" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d262516557cad3d353492b58f238101" - }, - "isConfigFile": false, - "path": "/sbin/swapoff" - }, - { - "digest": { - "algorithm": "md5", - "value": "1deedb7bd04c1229dca8a6e7365bf21d" - }, - "isConfigFile": false, - "path": "/sbin/swapon" - }, - { - "digest": { - "algorithm": "md5", - "value": "f723e3dec8b50f553cda9e1f26b5696c" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/losetup" - }, - { - "digest": { - "algorithm": "md5", - "value": "75e8aa4a4091b18c0638176f4c428841" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/mount" - }, - { - "digest": { - "algorithm": "md5", - "value": "30690e8195997100bdbd13f85837ecde" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/swapoff" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba248c7b614e27bde0cfaa0d4366a000" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/swapon" - }, - { - "digest": { - "algorithm": "md5", - "value": "e143728b1d2129ac4c7e4f8d19ef9cfc" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/umount" - }, - { - "digest": { - "algorithm": "md5", - "value": "7dd27602c3779fee145d311b124e32dd" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mount/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bb7fd1ae3732779966184f543b8a91e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mount/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "353888f385cfb82eb97a693e78f3cc9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mount/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "13be744623247f4f2d5fd1ecc7be3d84" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mount/examples/filesystems" - }, - { - "digest": { - "algorithm": "md5", - "value": "249eb88bfe44caea382802b0f827dfc2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mount/examples/fstab" - }, - { - "digest": { - "algorithm": "md5", - "value": "74795f232bfb794a00a8292447e505ea" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mount/examples/mount.fstab" - }, - { - "digest": { - "algorithm": "md5", - "value": "a57b70b42bf92daae75a130e14c60bc9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/mount/mount.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "8821ada54aa01f5750e691459bd1b7ea" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/mount" - }, - { - "digest": { - "algorithm": "md5", - "value": "d18b84bd815844ab0afb703eda338fe6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/fstab.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "10fdb50bf5fb0de91e8bcc9d082151d2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/losetup.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de2f02d0e6605d67b6f36248700b1b87" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/mount.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d9dce1358145a68e72ed554e0a35261" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/swapon.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d6d1568731b1f4d38e23dddda55678f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/umount.8.gz" - } - ], - "installedSize": 393, - "maintainer": "util-linux packagers \u003cutil-linux@packages.debian.org\u003e", - "package": "mount", - "preDepends": [ - "libblkid1 (\u003e= 2.17.2)", - "libc6 (\u003e= 2.34)", - "libmount1 (\u003e= 2.38)", - "libselinux1 (\u003e= 3.1~)", - "libsmartcols1 (\u003e= 2.33)" - ], - "source": "util-linux", - "sourceVersion": "", - "version": "2.38.1-5+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "mount", - "purl": "pkg:deb/debian/mount@2.38.1-5+deb12u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-12", - "type": "deb", - "version": "2.38.1-5+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:ncurses-base:ncurses-base:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses-base:ncurses_base:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses_base:ncurses-base:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses_base:ncurses_base:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses:ncurses-base:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses:ncurses_base:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "8c0c5df11623bec9", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/ncurses-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-base/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/ncurses-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT/X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/ncurses-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-base/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/ncurses-base/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-base/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/ncurses-base.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/ncurses-base.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/ncurses-base.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/ncurses-base.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "45b6df19fb5e21f55717482fa7a30171" - }, - "isConfigFile": true, - "path": "/etc/terminfo/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "0cf656c105ff2a636e1268608731ebe9" - }, - "isConfigFile": false, - "path": "/lib/terminfo/E/Eterm" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e43e61b0e4fba70d63b5b6d3dce2a7c" - }, - "isConfigFile": false, - "path": "/lib/terminfo/a/ansi" - }, - { - "digest": { - "algorithm": "md5", - "value": "a446b9abe10d999c3f65c4e1aa079059" - }, - "isConfigFile": false, - "path": "/lib/terminfo/c/cons25" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e1fa378b0d8a5aaf95738b3f47dfbd0" - }, - "isConfigFile": false, - "path": "/lib/terminfo/c/cons25-debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "962c85df3fb97b9555d271163e584f41" - }, - "isConfigFile": false, - "path": "/lib/terminfo/c/cygwin" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca3b114f0727da81a9b957b553a9915d" - }, - "isConfigFile": false, - "path": "/lib/terminfo/d/dumb" - }, - { - "digest": { - "algorithm": "md5", - "value": "f0c8478195a775ff6a9aa29b7f808c4d" - }, - "isConfigFile": false, - "path": "/lib/terminfo/h/hurd" - }, - { - "digest": { - "algorithm": "md5", - "value": "46ba8283b9049e9264cfd368550d140f" - }, - "isConfigFile": false, - "path": "/lib/terminfo/l/linux" - }, - { - "digest": { - "algorithm": "md5", - "value": "4525a57ea8297db1778cb72f4a19e0c2" - }, - "isConfigFile": false, - "path": "/lib/terminfo/m/mach" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd0ca1baff8aa9034a68b00b3bc090c6" - }, - "isConfigFile": false, - "path": "/lib/terminfo/m/mach-bold" - }, - { - "digest": { - "algorithm": "md5", - "value": "24f1e2e6793e274ac3f064fc83a05468" - }, - "isConfigFile": false, - "path": "/lib/terminfo/m/mach-color" - }, - { - "digest": { - "algorithm": "md5", - "value": "141f1b49cc1f3f1912f0e18076bb2c28" - }, - "isConfigFile": false, - "path": "/lib/terminfo/m/mach-gnu" - }, - { - "digest": { - "algorithm": "md5", - "value": "b0b60c7e9793275c4458348ec4343606" - }, - "isConfigFile": false, - "path": "/lib/terminfo/m/mach-gnu-color" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1a451f1c2570b4b8919ed8ea9282792" - }, - "isConfigFile": false, - "path": "/lib/terminfo/p/pcansi" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc49c31389f060fe90c477ba5d145271" - }, - "isConfigFile": false, - "path": "/lib/terminfo/r/rxvt" - }, - { - "digest": { - "algorithm": "md5", - "value": "2f6238bca760f50c7aafdaf85bf2dcfb" - }, - "isConfigFile": false, - "path": "/lib/terminfo/r/rxvt-basic" - }, - { - "digest": { - "algorithm": "md5", - "value": "a68ebfd0af7e34f2898c9835987ccdfc" - }, - "isConfigFile": false, - "path": "/lib/terminfo/r/rxvt-unicode" - }, - { - "digest": { - "algorithm": "md5", - "value": "6aaf94b35deb8e03970a346abec0cbf8" - }, - "isConfigFile": false, - "path": "/lib/terminfo/r/rxvt-unicode-256color" - }, - { - "digest": { - "algorithm": "md5", - "value": "26782aef2c68a519d71cd09df4f38d68" - }, - "isConfigFile": false, - "path": "/lib/terminfo/s/screen" - }, - { - "digest": { - "algorithm": "md5", - "value": "eaffe585178ec5b5639e9034df19190f" - }, - "isConfigFile": false, - "path": "/lib/terminfo/s/screen-256color" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c1bdac70c3d495031a6a1c6069b3d27" - }, - "isConfigFile": false, - "path": "/lib/terminfo/s/screen-256color-bce" - }, - { - "digest": { - "algorithm": "md5", - "value": "8996119356f59a6c2b4ef3358e3889c1" - }, - "isConfigFile": false, - "path": "/lib/terminfo/s/screen-bce" - }, - { - "digest": { - "algorithm": "md5", - "value": "19f7c53d7125ed46f180fbb62cbb6a03" - }, - "isConfigFile": false, - "path": "/lib/terminfo/s/screen-s" - }, - { - "digest": { - "algorithm": "md5", - "value": "e23dca32cb0eff51ae99f435a004a251" - }, - "isConfigFile": false, - "path": "/lib/terminfo/s/screen-w" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ac76315b8bc6395650b501ad41586da" - }, - "isConfigFile": false, - "path": "/lib/terminfo/s/screen.xterm-256color" - }, - { - "digest": { - "algorithm": "md5", - "value": "430390b5b3a52aef2cf94d6f7a6aa000" - }, - "isConfigFile": false, - "path": "/lib/terminfo/s/sun" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed00a4b191a13201b4cbac8a0324c001" - }, - "isConfigFile": false, - "path": "/lib/terminfo/t/tmux" - }, - { - "digest": { - "algorithm": "md5", - "value": "a03b41a03850b54c3f3db7de42a4476f" - }, - "isConfigFile": false, - "path": "/lib/terminfo/t/tmux-256color" - }, - { - "digest": { - "algorithm": "md5", - "value": "df9446f7fd9c4fdb33d411ae92710c27" - }, - "isConfigFile": false, - "path": "/lib/terminfo/v/vt100" - }, - { - "digest": { - "algorithm": "md5", - "value": "3083e2d71619d482b4b6abbb005c0355" - }, - "isConfigFile": false, - "path": "/lib/terminfo/v/vt102" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0fe59d705ba2adc5d930dfeb0a489ba" - }, - "isConfigFile": false, - "path": "/lib/terminfo/v/vt220" - }, - { - "digest": { - "algorithm": "md5", - "value": "cead4a9d4527b35b3fe8860bcbbbd19b" - }, - "isConfigFile": false, - "path": "/lib/terminfo/v/vt52" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbb970323e77c4200ae32bb2d5de06cc" - }, - "isConfigFile": false, - "path": "/lib/terminfo/w/wsvt25" - }, - { - "digest": { - "algorithm": "md5", - "value": "06d6cf8d37220d1ac4bcf80460cff50e" - }, - "isConfigFile": false, - "path": "/lib/terminfo/w/wsvt25m" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbe611ffc559259b01ac142a80ab03d9" - }, - "isConfigFile": false, - "path": "/lib/terminfo/x/xterm" - }, - { - "digest": { - "algorithm": "md5", - "value": "faaa5048b306eb866e1ebc81fb1dd00c" - }, - "isConfigFile": false, - "path": "/lib/terminfo/x/xterm-256color" - }, - { - "digest": { - "algorithm": "md5", - "value": "60cf779afa539204a8fae90e07f57689" - }, - "isConfigFile": false, - "path": "/lib/terminfo/x/xterm-color" - }, - { - "digest": { - "algorithm": "md5", - "value": "d62887921329328900a50dbddf32e184" - }, - "isConfigFile": false, - "path": "/lib/terminfo/x/xterm-mono" - }, - { - "digest": { - "algorithm": "md5", - "value": "ddc200c30ecff55f71dd3c19d5375006" - }, - "isConfigFile": false, - "path": "/lib/terminfo/x/xterm-r5" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b88ffea0ba02455c2467d730ca57407" - }, - "isConfigFile": false, - "path": "/lib/terminfo/x/xterm-r6" - }, - { - "digest": { - "algorithm": "md5", - "value": "8706efd765ed53ccbf33ae198d54b293" - }, - "isConfigFile": false, - "path": "/lib/terminfo/x/xterm-vt220" - }, - { - "digest": { - "algorithm": "md5", - "value": "94d6414f04d7208738e9d1815d321992" - }, - "isConfigFile": false, - "path": "/lib/terminfo/x/xterm-xfree86" - }, - { - "digest": { - "algorithm": "md5", - "value": "4bdf342194c8b3dcf47416c4d8aa6fe9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ncurses-base/FAQ" - }, - { - "digest": { - "algorithm": "md5", - "value": "7493372c830eef9ed0a64ae64131d144" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ncurses-base/TODO.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "574c5c99156af41bbc161eff2c956485" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ncurses-base/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "72817235b2d74616e4435718d0bc8849" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ncurses-base/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ff7d32947f8538e046380c0b1c959a5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ncurses-base/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "9cf5c92ba0c81e6d6f69098449ea2e98" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/ncurses-base" - }, - { - "digest": { - "algorithm": "md5", - "value": "0633f2811ab9958deef70a4ceb124d2e" - }, - "isConfigFile": false, - "path": "/usr/share/tabset/std" - }, - { - "digest": { - "algorithm": "md5", - "value": "75738443f4560dabbbb5781a43b6076f" - }, - "isConfigFile": false, - "path": "/usr/share/tabset/stdcrt" - }, - { - "digest": { - "algorithm": "md5", - "value": "932387cdf8429aba6dd9c6567022829a" - }, - "isConfigFile": false, - "path": "/usr/share/tabset/vt100" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd329c87dc8cfd0191c9e9b4c891460b" - }, - "isConfigFile": false, - "path": "/usr/share/tabset/vt300" - } - ], - "installedSize": 379, - "maintainer": "Craig Small \u003ccsmall@debian.org\u003e", - "package": "ncurses-base", - "provides": [ - "ncurses-runtime" - ], - "source": "ncurses", - "sourceVersion": "", - "version": "6.4-4" - }, - "metadataType": "dpkg-db-entry", - "name": "ncurses-base", - "purl": "pkg:deb/debian/ncurses-base@6.4-4?arch=all\u0026upstream=ncurses\u0026distro=debian-12", - "type": "deb", - "version": "6.4-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:ncurses-bin:ncurses-bin:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses-bin:ncurses_bin:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses_bin:ncurses-bin:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses_bin:ncurses_bin:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses:ncurses-bin:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:ncurses:ncurses_bin:6.4-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ddeb6215c71a51d7", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/ncurses-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-bin/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/ncurses-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-bin/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "MIT/X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/ncurses-bin/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-bin/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/ncurses-bin/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-bin/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/ncurses-bin.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/ncurses-bin.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8fa39e32f759e00d774e4e9cce0f0d89" - }, - "isConfigFile": false, - "path": "/usr/bin/clear" - }, - { - "digest": { - "algorithm": "md5", - "value": "73de2914983d2d6d3f411ba931557af7" - }, - "isConfigFile": false, - "path": "/usr/bin/infocmp" - }, - { - "digest": { - "algorithm": "md5", - "value": "bb2e0ad400941e42f57dbd48f470d3bf" - }, - "isConfigFile": false, - "path": "/usr/bin/tabs" - }, - { - "digest": { - "algorithm": "md5", - "value": "633418b8af629cd022c17f538cfd616d" - }, - "isConfigFile": false, - "path": "/usr/bin/tic" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c184458a2a4bef4f73556515dcc3dcd" - }, - "isConfigFile": false, - "path": "/usr/bin/toe" - }, - { - "digest": { - "algorithm": "md5", - "value": "4fbeac6e9ce58d9e4272366dd505da72" - }, - "isConfigFile": false, - "path": "/usr/bin/tput" - }, - { - "digest": { - "algorithm": "md5", - "value": "e733195a5fc8b2609da2df4467363859" - }, - "isConfigFile": false, - "path": "/usr/bin/tset" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f49f505b8444d8f87e857cdf927b0ab" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ncurses-bin/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "72817235b2d74616e4435718d0bc8849" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ncurses-bin/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ff7d32947f8538e046380c0b1c959a5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/ncurses-bin/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "60271071723b2735017f95b1eab1c915" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/captoinfo.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ab85bec4c641cd7417349e2739e8983" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/clear.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3196743c1445c0cce2d2a820fa44b76b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/infocmp.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d8f0f3338524a0e1f7895f74cc746aaa" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/infotocap.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "81566f3d29dd1e78dbf66950778b8dd3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tabs.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ea81cd8f673907f1fac8562aae9fff6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tic.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7745c9478b2491d8b1795086fec5619" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/toe.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b1d8fae7dda26a000528c22270c8296" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tput.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "49b2526a66e9ef9570c21927c640a820" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tset.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "348597a6e515ba89fff87aedb45b5e69" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/scr_dump.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8ce0efe21e07b246fcd60ab0d55de09" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/term.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7606e65afeb70108ff8d65144da7055a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/terminfo.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1640cb4e2084f828ff0b158e6d12bb41" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/user_caps.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b146f86f7d0dfb5b73a2fb204cda5400" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/term.7.gz" - } - ], - "installedSize": 636, - "maintainer": "Craig Small \u003ccsmall@debian.org\u003e", - "package": "ncurses-bin", - "preDepends": [ - "libc6 (\u003e= 2.34)", - "libtinfo6 (\u003e= 6.3)" - ], - "source": "ncurses", - "sourceVersion": "", - "version": "6.4-4" - }, - "metadataType": "dpkg-db-entry", - "name": "ncurses-bin", - "purl": "pkg:deb/debian/ncurses-bin@6.4-4?arch=amd64\u0026upstream=ncurses\u0026distro=debian-12", - "type": "deb", - "version": "6.4-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:nginx:nginx:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "ddf817162edbd918", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/nginx/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/nginx.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/nginx.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/nginx.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/nginx.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libcrypt1 (\u003e= 1:4.1.0)", - "libpcre2-8-0 (\u003e= 10.22)", - "libssl3 (\u003e= 3.0.0)", - "zlib1g (\u003e= 1:1.1.4)", - "lsb-base (\u003e= 3.0-6)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "e2b1ae0f31c6d03d3305ef526b0ba3b5" - }, - "isConfigFile": true, - "path": "/etc/default/nginx" - }, - { - "digest": { - "algorithm": "md5", - "value": "719f6f9981039a05a64c201a4b1db19f" - }, - "isConfigFile": true, - "path": "/etc/default/nginx-debug" - }, - { - "digest": { - "algorithm": "md5", - "value": "7224be660d7c280a775bd6eca2547df4" - }, - "isConfigFile": true, - "path": "/etc/init.d/nginx" - }, - { - "digest": { - "algorithm": "md5", - "value": "57e8f64b4f464fc13701c6b22240ac10" - }, - "isConfigFile": true, - "path": "/etc/init.d/nginx-debug" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4da44b03e39926b999329061770362b" - }, - "isConfigFile": true, - "path": "/etc/logrotate.d/nginx" - }, - { - "digest": { - "algorithm": "md5", - "value": "25c02145e4a2e1d2bc6da5d585cddd32" - }, - "isConfigFile": true, - "path": "/etc/nginx/conf.d/default.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "4729c30112ca3071f4650479707993ad" - }, - "isConfigFile": true, - "path": "/etc/nginx/fastcgi_params" - }, - { - "digest": { - "algorithm": "md5", - "value": "754582375e90b09edaa6d3dbd657b3cf" - }, - "isConfigFile": true, - "path": "/etc/nginx/mime.types" - }, - { - "digest": { - "algorithm": "md5", - "value": "756e7eaae19e95b5f49ce81e73b10512" - }, - "isConfigFile": true, - "path": "/etc/nginx/nginx.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "df8c71e25e0356ffc539742f08fddfff" - }, - "isConfigFile": true, - "path": "/etc/nginx/scgi_params" - }, - { - "digest": { - "algorithm": "md5", - "value": "88ac833ee8ea60904a8b3063fde791de" - }, - "isConfigFile": true, - "path": "/etc/nginx/uwsgi_params" - }, - { - "digest": { - "algorithm": "md5", - "value": "15d554677c017d8a9cfc73eedc79b248" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/nginx-debug.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea88f6477ae799e3a32a4dcc296cc3bb" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/nginx.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "04f81139b457e3e7b7a750838f6711eb" - }, - "isConfigFile": false, - "path": "/usr/sbin/nginx" - }, - { - "digest": { - "algorithm": "md5", - "value": "48428e452c0fb8a759c5efcb558c152e" - }, - "isConfigFile": false, - "path": "/usr/sbin/nginx-debug" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5f015a2e27114a070c9463c07561be4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx/CHANGES.ru.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6a35d7240f0011220c3ae328e9e0d5ec" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d8d248b9f3935064cd1b7f8c5b9a607" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b26f7c51a4fd632d7b9b1a280cf9aed7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "928c8b677713b532d386034283a8ff17" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe27277515202de625c33654cdbbeae2" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/nginx" - }, - { - "digest": { - "algorithm": "md5", - "value": "97c64f50aa2c9a966ce45777536eeca6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/nginx.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a719a793405561b1a13e6cb1f403d88" - }, - "isConfigFile": false, - "path": "/usr/share/nginx/html/50x.html" - }, - { - "digest": { - "algorithm": "md5", - "value": "7df3d7cf3358af3f470ac7229387ef94" - }, - "isConfigFile": false, - "path": "/usr/share/nginx/html/index.html" - } - ], - "installedSize": 3431, - "maintainer": "NGINX Packaging \u003cnginx-packaging@f5.com\u003e", - "package": "nginx", - "provides": [ - "httpd", - "nginx", - "nginx-r1.25.5" - ], - "source": "", - "sourceVersion": "", - "version": "1.25.5-1~bookworm" - }, - "metadataType": "dpkg-db-entry", - "name": "nginx", - "purl": "pkg:deb/debian/nginx@1.25.5-1~bookworm?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.25.5-1~bookworm" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:nginx-module-geoip:nginx-module-geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module-geoip:nginx_module_geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_geoip:nginx-module-geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_geoip:nginx_module_geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module:nginx-module-geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module:nginx_module_geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module:nginx-module-geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module:nginx_module_geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx:nginx-module-geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx:nginx_module_geoip:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "60b0ce00d0cff0e2", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/nginx-module-geoip/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx-module-geoip/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/nginx-module-geoip.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/nginx-module-geoip.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libgeoip1 (\u003e= 1.6.12)", - "nginx-r1.25.5" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "9bba83a8744736806fd95d391143e2b3" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_http_geoip_module-debug.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8ef6711e5ab6b452f788558c58eab39" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_http_geoip_module.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "29f2faee1164e8327aa3a141ff835fad" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_stream_geoip_module-debug.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "9728d0a19e9102718882da2d961e1f84" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_stream_geoip_module.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b4f09a51f797eef45e392350f0b716d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-geoip/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b26f7c51a4fd632d7b9b1a280cf9aed7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-geoip/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "928c8b677713b532d386034283a8ff17" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-geoip/copyright" - } - ], - "installedSize": 162, - "maintainer": "NGINX Packaging \u003cnginx-packaging@f5.com\u003e", - "package": "nginx-module-geoip", - "provides": [ - "nginx-module-geoip-r1.25.5" - ], - "source": "", - "sourceVersion": "", - "version": "1.25.5-1~bookworm" - }, - "metadataType": "dpkg-db-entry", - "name": "nginx-module-geoip", - "purl": "pkg:deb/debian/nginx-module-geoip@1.25.5-1~bookworm?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.25.5-1~bookworm" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:nginx-module-image-filter:nginx-module-image-filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module-image-filter:nginx_module_image_filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_image_filter:nginx-module-image-filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_image_filter:nginx_module_image_filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module-image:nginx-module-image-filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module-image:nginx_module_image_filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_image:nginx-module-image-filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_image:nginx_module_image_filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module:nginx-module-image-filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module:nginx_module_image_filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module:nginx-module-image-filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module:nginx_module_image_filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx:nginx-module-image-filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx:nginx_module_image_filter:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2ea91c16a6907faf", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/nginx-module-image-filter/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx-module-image-filter/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/nginx-module-image-filter.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/nginx-module-image-filter.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libgd3 (\u003e= 2.1.0~alpha~)", - "nginx-r1.25.5" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "eb9a7db137f0a48656400b39aebcc8a6" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_http_image_filter_module-debug.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0006485e44835a25a3a08996be5d413e" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_http_image_filter_module.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "227a13897bd4178d0ef73c969a1c3317" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-image-filter/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b26f7c51a4fd632d7b9b1a280cf9aed7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-image-filter/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "928c8b677713b532d386034283a8ff17" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-image-filter/copyright" - } - ], - "installedSize": 136, - "maintainer": "NGINX Packaging \u003cnginx-packaging@f5.com\u003e", - "package": "nginx-module-image-filter", - "provides": [ - "nginx-module-image-filter-r1.25.5" - ], - "source": "", - "sourceVersion": "", - "version": "1.25.5-1~bookworm" - }, - "metadataType": "dpkg-db-entry", - "name": "nginx-module-image-filter", - "purl": "pkg:deb/debian/nginx-module-image-filter@1.25.5-1~bookworm?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.25.5-1~bookworm" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:nginx-module-njs:nginx-module-njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module-njs:nginx_module_njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_njs:nginx-module-njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_njs:nginx_module_njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module:nginx-module-njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module:nginx_module_njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module:nginx-module-njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module:nginx_module_njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx:nginx-module-njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx:nginx_module_njs:1.25.5\\+0.8.4-2\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "9e4d199232d82890", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/nginx-module-njs/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx-module-njs/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/nginx-module-njs.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/nginx-module-njs.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.35)", - "libedit2 (\u003e= 3.1-20130611-0)", - "libpcre2-8-0 (\u003e= 10.32)", - "libssl3 (\u003e= 3.0.0)", - "libxml2 (\u003e= 2.7.4)", - "zlib1g (\u003e= 1:1.1.4)", - "nginx-r1.25.5" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "8a695cb5883f69daa767ab6d571565a0" - }, - "isConfigFile": false, - "path": "/usr/bin/njs" - }, - { - "digest": { - "algorithm": "md5", - "value": "adefbc1b5e5171b061679a1dbfdac1c5" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_http_js_module-debug.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d0f05a29c1d43d9937797b41edaabd95" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_http_js_module.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "4419242cd157b02ecfcc9b4cf1af354f" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_stream_js_module-debug.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "84d632e6f659192d3a5c9a2f15c9087c" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_stream_js_module.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "890a454fa633b17b0a009451bd19a4d0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-njs/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "53bdd91c78794f7b77e6bcb51d638626" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-njs/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c725020a1f6ea7fff1179957e118891c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-njs/copyright" - } - ], - "installedSize": 5579, - "maintainer": "NGINX Packaging \u003cnginx-packaging@f5.com\u003e", - "package": "nginx-module-njs", - "provides": [ - "nginx-module-njs-r1.25.5" - ], - "source": "", - "sourceVersion": "", - "version": "1.25.5+0.8.4-2~bookworm" - }, - "metadataType": "dpkg-db-entry", - "name": "nginx-module-njs", - "purl": "pkg:deb/debian/nginx-module-njs@1.25.5+0.8.4-2~bookworm?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.25.5+0.8.4-2~bookworm" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:nginx-module-xslt:nginx-module-xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module-xslt:nginx_module_xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_xslt:nginx-module-xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module_xslt:nginx_module_xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module:nginx-module-xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx-module:nginx_module_xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module:nginx-module-xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx_module:nginx_module_xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx:nginx-module-xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:nginx:nginx_module_xslt:1.25.5-1\\~bookworm:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "6ce105ae25df46bf", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/share/doc/nginx-module-xslt/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx-module-xslt/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/nginx-module-xslt.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/nginx-module-xslt.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)", - "libxml2 (\u003e= 2.7.4)", - "libxslt1.1 (\u003e= 1.1.25)", - "nginx-r1.25.5" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "4c7f29c5c15fcfe504791c4e9ac1ee9c" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_http_xslt_filter_module-debug.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7ac721e2fd75c62529f0c00eb830bd9" - }, - "isConfigFile": false, - "path": "/usr/lib/nginx/modules/ngx_http_xslt_filter_module.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "a41df33f623f2242432e904703c23ee6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-xslt/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b26f7c51a4fd632d7b9b1a280cf9aed7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-xslt/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "928c8b677713b532d386034283a8ff17" - }, - "isConfigFile": false, - "path": "/usr/share/doc/nginx-module-xslt/copyright" - } - ], - "installedSize": 128, - "maintainer": "NGINX Packaging \u003cnginx-packaging@f5.com\u003e", - "package": "nginx-module-xslt", - "provides": [ - "nginx-module-xslt-r1.25.5" - ], - "source": "", - "sourceVersion": "", - "version": "1.25.5-1~bookworm" - }, - "metadataType": "dpkg-db-entry", - "name": "nginx-module-xslt", - "purl": "pkg:deb/debian/nginx-module-xslt@1.25.5-1~bookworm?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.25.5-1~bookworm" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:openssl:openssl:3.0.11-1\\~deb12u2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "0919462d0d876880", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/openssl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/openssl/copyright" - } - ], - "spdxExpression": "Apache-2.0", - "type": "declared", - "urls": [], - "value": "Apache-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/openssl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/openssl/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Artistic" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/openssl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/openssl/copyright" - } - ], - "spdxExpression": "GPL-1.0-only", - "type": "declared", - "urls": [], - "value": "GPL-1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/openssl/copyright", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/openssl/copyright" - } - ], - "spdxExpression": "GPL-1.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-1+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/openssl/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/openssl/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/openssl.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/openssl.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/openssl.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/info/openssl.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)", - "libssl3 (\u003e= 3.0.9)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "fe1993ec22f6b8a46cb9706acd8fc68f" - }, - "isConfigFile": true, - "path": "/etc/ssl/openssl.cnf" - }, - { - "digest": { - "algorithm": "md5", - "value": "26d95f36e62abb5c50ae88e7e3ebedd4" - }, - "isConfigFile": false, - "path": "/usr/bin/c_rehash" - }, - { - "digest": { - "algorithm": "md5", - "value": "c75c3020490b4e547f9f15fd1a08f6fd" - }, - "isConfigFile": false, - "path": "/usr/bin/openssl" - }, - { - "digest": { - "algorithm": "md5", - "value": "73c9853e48f9d388cca1e2355ef5cde5" - }, - "isConfigFile": false, - "path": "/usr/lib/ssl/misc/CA.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7a3a657ff1ef32c9b92c1e28ff209b5" - }, - "isConfigFile": false, - "path": "/usr/lib/ssl/misc/tsget.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2dcc604a4e6237e8ce44038400733580" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/FAQ.md" - }, - { - "digest": { - "algorithm": "md5", - "value": "facc78c8a52ef3c3fdcd74a147abc611" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/HOWTO/certificates.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3536a51362f8847d789ef737e409cc1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/HOWTO/keys.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "e9bba0f22af6c7fa96a5901e46646625" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe99746123ef46c03d582539d3764454" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/NEWS.md.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f4ee56119ee9a939507719bf4ae7c0d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/README-ENGINES.md.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "393e5b180c24924a7a795d722273df3c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "a55026dc790fb47b881f3913bc88d60b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/README.md.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2f3c8587f54a1bd34a1ea62f103b537d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/README.optimization" - }, - { - "digest": { - "algorithm": "md5", - "value": "b3f8a557959c7a1268e4e2a2ff40f950" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4045c0f497dda36117663d37ba6e8fc7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6264b3617e9bd0092102a2ab8db06adb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d8e042110319a50e409e5d457755c4f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/openssl/fingerprints.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "53597829a54ca69c6e803649039214bc" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/openssl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef905481bb44a6d931fc01e25e52925b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/CA.pl.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c81155da707851aaae5531390ed2a61b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-asn1parse.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b44e9e7698731660663d1ede825776b0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-ca.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "885a75b2b24bb5b472bc6df1d48ba174" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-ciphers.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc042b5dd1877e889fae7ab42b2efb2e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-cmds.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a22f293b195c8848d49c086003d51ba8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-cmp.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "181f51112493c2ad7ed9bc69bbde65e0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-cms.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8bfcb5dcaa5eab4ac7d4d58f3654b899" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-crl.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7861559f170d08fdb7379776d3f2145a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-crl2pkcs7.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f5b65cee46b829000118dff6a8ee19c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-dgst.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4511bbdff6172a177acc1a0a5d1930f0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-dhparam.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2bf76954a5882549dd56425646c75e44" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-dsa.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "87f4966fc3344de235780e59ccd8b590" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-dsaparam.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "adbc6e5f21b1014951842dc84c57fc67" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-ec.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba2e21bba5a93e2872869de9b8484960" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-ecparam.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e43071fe5a1cba40584a107186f76d4" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-enc.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "05ecdc19a43e7dd1d0fa60741d598a02" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-engine.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "45ba88a78baaa448b66af116fd3d9a63" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-errstr.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "78addc5aba51477fcec7b598170de9a9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-fipsinstall.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea2d640bbbb16d34b68a95158f8d1f19" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-format-options.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f02989b0ffdce376679bb8ae80eac2b3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-gendsa.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "80ff1c8b14ff6925b1877a27429d9bd3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-genpkey.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "485388f9c2a23e62c01e2544b37e1828" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-genrsa.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d724bffb9c2c137b886bb4e026e7c86" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-info.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e54a15d5a9a96fc1c7e3fb033bfcb0a2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-kdf.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "833a84a3e2dcf26005d44a7bee34bd91" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-list.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9f17f02435c0d1aaae1b4b141dfb295" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-mac.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "61313960c54997a5653eae3c7a861fd2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-namedisplay-options.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f5786b71d41d4534f43d11e80040e80" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-nseq.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f17a1a0cd7e5d9329daef1883dcceab2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-ocsp.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "93c497133002620e24d5e8b293b61dd6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-passphrase-options.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7effa2ac847a6ddc99578c99e5c7619" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-passwd.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3aa5605f2145fe70eb928831a2a6468e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-pkcs12.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd8a38f8587a7b4f85d5323432fe5f43" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-pkcs7.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "95bc3f5358d177e707a60b81e67c1974" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-pkcs8.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c681bb58caecaa4124655e562ec6194a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-pkey.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "afb684153a3c7f0de278da59b6ef9f78" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-pkeyparam.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f34afd9af44e8f1fb770674b24a8134c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-pkeyutl.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c026b7584dac5d798db328f598fe044" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-prime.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8873e7c48bac6d9d01606928af946eba" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-rand.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "21adafc4cd85f35bcd094fd4dd2b809f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-rehash.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d49bd0cd9f181c7a618877fc800a94d1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-req.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5b19bd88085c9ff1f48587bebf4cf48" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-rsa.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "131a5e4db6b844130c7f0217d710af06" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-rsautl.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7167e05fc1ccbc4dee39e7c28193d0a0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-s_client.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d45c2acaf23603e08942bf29fddb331a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-s_server.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e1eae86e52eb810c4e1f6d9f35a230e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-s_time.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7610020391aa0d1e53249b4f5781d33f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-sess_id.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "465776ccf10c78fdeb0412461d5fae95" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-smime.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0aff6ce723ec8d4bd46c91d63c6578bb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-speed.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8305b0a5189d9516efbee4bb98504699" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-spkac.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c84d31f8533bd109995762ba8dcd262f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-srp.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d5a7f80aeb735aa3bf3b18bd8e4d8dd" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-storeutl.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ef748b232c672aafe3bb71bdd623627" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-ts.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6831a45709253cbcd6911f77443f25be" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-verification-options.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c48f5bbb3378c1953713d0e0486e6dc2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-verify.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "495129512b06ac0b578d65fc375bdc5b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-version.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb98dd9a18cf329a16b0aedc6de595df" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl-x509.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "47446ea556dc8665126105c4037e1fbf" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/openssl.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "071e86f91c60753c682bcd1433a347bc" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tsget.1ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "67f8fa27e4896440e3284f617010f35d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/config.5ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e17f8423c2aa2fcb2a76f8440df01df9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/fips_config.5ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bb2d5d0223b89e41c52045d0ed1b37ef" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/x509v3_config.5ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3caede9b1937621d326a99d6d290e82f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_ASYM_CIPHER-RSA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac277f1db85ade43695c3ed62c8cdeb6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_ASYM_CIPHER-SM2.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a548b5a475255f83110dcf959586a61" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-AES.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8a8ee0ca8839cd2ce347e27ff5af48d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-ARIA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "57694381f470377e9f8ca5d9f793c736" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-BLOWFISH.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a4a1c04e0dc0ad130268cef5979719d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-CAMELLIA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "56abd3dc11e5cd8153295f395772c055" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-CAST.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0440e8dcf2ebb7ad1d7fc9d8dc28781e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-CHACHA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d829e4f26160f3ed806bcb4269422ce3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-DES.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd5af2d8fe491bf3b999861dc107156b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-IDEA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "484bd9d376ff3f881ea6a76ba321917f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-NULL.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e9b8ea41dcec60df42e4f501e42f922" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-RC2.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f15770b96b4e4ead8448198de9a157e8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-RC4.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "290f0ca0c450a67c28c2e3e8122b6bee" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-RC5.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad043e79ccf257437b4e2152d6b87d39" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-SEED.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab3a337db803a48901d8ce2f3ee2fc65" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_CIPHER-SM4.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a34dd59571937453519852e29b99ac7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-HKDF.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4f86b9f4eaa13cc9ecc47732390555a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-KB.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2f1e7b74fad6c8d28d0d74669faa472" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-KRB5KDF.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5754f550e29596378993f838a45107b3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-PBKDF1.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aab67fbeeeff96036f4ad0bad98a752e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-PBKDF2.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cbbe1b83e8b6b2d1d4c875311e9f3aa2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-PKCS12KDF.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "91ad0d870baacfc15b1c488161deb328" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-SCRYPT.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "666a6f8da0b4cbf3ebb11f25221961ef" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-SS.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "19b9eb29b4e8168cecfd4becfc74688b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-SSHKDF.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "78224c5ebc1af6f861a164a075836dd6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-TLS13_KDF.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de94e7cae014e039d1c48be1c9661bb8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-TLS1_PRF.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "79981b120ad40608319745c90c18fbc5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-X942-ASN1.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "295acafd334d3cd82cca129bb285d9c0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-X942-CONCAT.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ba8ef3e246f754a3d44cd3091d506b4" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KDF-X963.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c44bbb185e21ac316e9268736d73911" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KEM-RSA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ecee6f98278131e232dc545f96f3371b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KEYEXCH-DH.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e67061b5c23df74bdbb0d37e39332c4e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KEYEXCH-ECDH.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4bf643edfd0050dc6479acbe7ac3a79" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_KEYEXCH-X25519.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a273e255b2ced44243c5390ca43ee59" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MAC-BLAKE2.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2dcf1c8c44c4ea8611db71b9adfce1f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MAC-CMAC.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "28ac658c7377c3494ac6faa97f9cac04" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MAC-GMAC.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b64dd86fbf3d546e21b98143e456ccb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MAC-HMAC.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f96a8fbf2439bea8e9843ea10cb0c01" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MAC-KMAC.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc8de2cadf162680eb692e6ab31d9765" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MAC-Poly1305.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "95e1b554fde53ab54230c95b98666fe5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MAC-Siphash.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac9fcac39cdf6dad658cf584636a5316" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-BLAKE2.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eed064bf47263134928731ae86667199" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-MD2.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "75a002017f43436204ad365fb6284ef3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-MD4.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6bbd6155db4c05103e6ad2aa2bf6cc0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-MD5-SHA1.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "655b3d525dbc52d3e3c71128495535f0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-MD5.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dcf684c1fe565392eed4ae26f57a707a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-MDC2.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a2bc37492efedbbd3ca1b1a20d28e65e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-NULL.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6bb9b0572928bf8b4a153c29d47eff62" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-RIPEMD160.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c61093de64d10c4130d0ca6c20af1c77" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-SHA1.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "37e8c0b3a93e7d7868be330d0cb03f35" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-SHA2.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "79bf833be84c6ea157bbd5acb2092c42" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-SHA3.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "99d556f9c75111141b65964be9073057" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-SHAKE.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b7ed7a15da2a2aff0ff01cc387642067" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-SM3.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d93d4960e45a1ec830ddccbfd475b542" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-WHIRLPOOL.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d72ad5b8d54d4540a01419f8154a333e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_MD-common.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5f97c74d77578a03b6af2b876035816" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_PKEY-DH.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca9cb2e24dc1ff9b2eff1d977b409c9e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_PKEY-DSA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c6d5bb6ddbc708ab0f545c947355df9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_PKEY-EC.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5191a6c777f97478f62966280e33862b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_PKEY-FFC.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d2ca06105739099132808152017c062" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_PKEY-HMAC.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8c372b2dcc5b62bb5eecd1524403654" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_PKEY-RSA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1a93e6a47526f87c8be274f2c106bdb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_PKEY-SM2.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a8f710f7780210691829b2b322a03e7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_PKEY-X25519.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "38e6a17b3d9aca816d2302f785e828a5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_RAND-CTR-DRBG.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "533ae4cc191f095c3044f5e5d1903d2c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_RAND-HASH-DRBG.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "52e07d948420944ec8c2565fdcbae3b8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_RAND-HMAC-DRBG.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a35d1d03e3c834d4a81dd66a96596f6c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_RAND-SEED-SRC.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c11fcd6a1751faf5673a6033084d04ba" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_RAND-TEST-RAND.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b92c0f813d9e5036ed243e96dd045593" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_RAND.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4be73c13a2c375cc3a858bbbca89f8a4" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_SIGNATURE-DSA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "92e177d1d8e3c920a0e8282e6210eb4b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_SIGNATURE-ECDSA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9a30abd35684369724cd21f6289045d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_SIGNATURE-ED25519.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e596e45499a5a778def80774b7c6fd5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_SIGNATURE-HMAC.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "57e5aedf72cbec8ac14dacdf7bb0df52" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/EVP_SIGNATURE-RSA.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec64cd2f7d7c3116ea1387e37539d4b0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/OSSL_PROVIDER-FIPS.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "84d7ffb55971c49924b591b54abb215a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/OSSL_PROVIDER-base.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b67891f8aca43b0950218edae128a269" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/OSSL_PROVIDER-default.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5eb3069bd06e0a441a367e948ede41cb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/OSSL_PROVIDER-legacy.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0b986efa53108fb2826da313881ea0b7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/OSSL_PROVIDER-null.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "049cb4c29d7581dde81955830388deba" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/RAND.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6ca027f6da3c380f78b05e531b1c0d1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/RSA-PSS.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "85e8db4c0e056b2c18ca40d7d3c63e3e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/X25519.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0354912cfaa47ebece0e2ed0ce6f6f58" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/bio.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6c52e14e3c8b097fa870f9afe00958b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/crypto.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0496dc6b1d53e1930c5466eb44952a81" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/ct.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c41bf50ef5140558d3eee54af9822172" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/des_modes.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "534f180eff929636d21d65a38a630dad" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/evp.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee7e218844917ce54a6b61663a383781" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/fips_module.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0891ae6baaa39d9ee08bbfbce30aafee" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/life_cycle-cipher.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a16dd1ef488ff9cc2e15464f40dd321" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/life_cycle-digest.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cfc6bc0e6553da76ee6a8d90bfa705b8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/life_cycle-kdf.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dfda0cf3fe81f307806aac87112c2e87" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/life_cycle-mac.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "407a1a904ab8b4ce7f50dc84d13a23be" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/life_cycle-pkey.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c78fe12c9a9a4abddd0c3029c0ef238" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/life_cycle-rand.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e68679cc7d1fc727b831c94d15b09ec6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/migration_guide.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f355e62c0c746d6068677567040984cb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/openssl-core.h.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ad4773556ee7c5009c016afe1c1f1f9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/openssl-core_dispatch.h.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce17e3c5277f1f3095556808ff7b6b8b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/openssl-core_names.h.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7a25de05332677ea0dfde8f1b0e1c84" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/openssl-env.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5809b5dd6774e1aaf1923865c0dcf8c2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/openssl-glossary.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "07735e2074849202545ef875119d4402" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/openssl-threads.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "542882fa42671b69d096673f54f68aca" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/openssl_user_macros.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f97a1dfedcc003b8915a449e90bca00e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/ossl_store-file.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "19086eb0c45c1c82cc2ac36734dc94a2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/ossl_store.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e628a328af2555dda632d93f5247ad55" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/passphrase-encoding.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb1439efed21591d57ac0cf6310f3eae" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/property.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "445601e6ce4176f00af0f2cf8e774bff" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-asym_cipher.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c53603a7c3434903871a201e5f0407ea" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-base.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8aba1e82d82484206a9f5de34c2b74a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-cipher.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e1d8160a51859b4a3c3bf9d7dbf65e2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-decoder.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "679178ef4599ce09b0554baebff23c5d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-digest.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eca92862a4e89f939fa8eb0fc8f43603" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-encoder.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b1e36131def70e2bf25c110f36da5fef" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-kdf.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "98efd858bd63bd91293d40e93b4ae6d9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-kem.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "40b622422484e9be692df08c4a5d17ec" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-keyexch.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "76430679e9e27724f21e0ca58ccdba32" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-keymgmt.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6289d5dd8d0eb6cadfaa34492071672a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-mac.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "73251631047c402a53818d689c5a3169" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-object.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fda64791aec0cb543d0031b6e96b2151" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-rand.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "46b1fce11a4ad391210581998f2bace8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-signature.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb04e165e0911bd172377e6cec129806" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider-storemgmt.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d28c779496f3596744341bdb34b5ad9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/provider.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "95aa37704cebf5c8af25b26005eb13b6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/proxy-certificates.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2982e2e7db5290b2a15037874b5a7563" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/ssl.7ssl.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a622cdcd74f879737be15a38f2b0b9c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man7/x509.7ssl.gz" - } - ], - "installedSize": 2291, - "maintainer": "Debian OpenSSL Team \u003cpkg-openssl-devel@alioth-lists.debian.net\u003e", - "package": "openssl", - "source": "", - "sourceVersion": "", - "version": "3.0.11-1~deb12u2" - }, - "metadataType": "dpkg-db-entry", - "name": "openssl", - "purl": "pkg:deb/debian/openssl@3.0.11-1~deb12u2?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "3.0.11-1~deb12u2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:passwd:passwd:1\\:4.13\\+dfsg1-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "25b93d8479d03922", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/passwd/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/passwd/copyright" - } - ], - "spdxExpression": "GPL-1.0-only", - "type": "declared", - "urls": [], - "value": "GPL-1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/passwd/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/passwd/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/passwd/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/passwd/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/passwd/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/passwd.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/passwd.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/passwd.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/passwd.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libaudit1 (\u003e= 1:2.2.1)", - "libc6 (\u003e= 2.36)", - "libcrypt1 (\u003e= 1:4.1.0)", - "libpam0g (\u003e= 0.99.7.1)", - "libselinux1 (\u003e= 3.1~)", - "libsemanage2 (\u003e= 2.0.32)", - "libpam-modules" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "e03965d134c26725cbc51a57969da6c9" - }, - "isConfigFile": true, - "path": "/etc/default/useradd" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d466e00a348ba426130664d795e8afa" - }, - "isConfigFile": true, - "path": "/etc/pam.d/chfn" - }, - { - "digest": { - "algorithm": "md5", - "value": "9900720564cb4ee98b7da29e2d183cb2" - }, - "isConfigFile": true, - "path": "/etc/pam.d/chpasswd" - }, - { - "digest": { - "algorithm": "md5", - "value": "a6e9b589e90009334ffd030d819290a6" - }, - "isConfigFile": true, - "path": "/etc/pam.d/chsh" - }, - { - "digest": { - "algorithm": "md5", - "value": "1454e29bfa9f2a10836563e76936cea5" - }, - "isConfigFile": true, - "path": "/etc/pam.d/newusers" - }, - { - "digest": { - "algorithm": "md5", - "value": "eaf2ad85b5ccd06cceb19a3e75f40c63" - }, - "isConfigFile": true, - "path": "/etc/pam.d/passwd" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f8be4e3d176984b35707535e5cacdeb" - }, - "isConfigFile": false, - "path": "/sbin/shadowconfig" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec5f3c45b4aeb65f98a7ec2cdefb6ac2" - }, - "isConfigFile": false, - "path": "/usr/bin/chage" - }, - { - "digest": { - "algorithm": "md5", - "value": "39d26877651ea21f48e30673ab69adec" - }, - "isConfigFile": false, - "path": "/usr/bin/chfn" - }, - { - "digest": { - "algorithm": "md5", - "value": "a118268759f8e409bb986c32cc6e642a" - }, - "isConfigFile": false, - "path": "/usr/bin/chsh" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f2100d5afa02fe233d59cd395c696b9" - }, - "isConfigFile": false, - "path": "/usr/bin/expiry" - }, - { - "digest": { - "algorithm": "md5", - "value": "6845cd9c39b8db20a0c08414a7953819" - }, - "isConfigFile": false, - "path": "/usr/bin/gpasswd" - }, - { - "digest": { - "algorithm": "md5", - "value": "77d8b4bf54dba9d77333be091c519435" - }, - "isConfigFile": false, - "path": "/usr/bin/passwd" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd813ae6329b77cb59bac8961e613bf0" - }, - "isConfigFile": false, - "path": "/usr/lib/tmpfiles.d/passwd.conf" - }, - { - "digest": { - "algorithm": "md5", - "value": "59d09267e825d5c644905725b70e49ce" - }, - "isConfigFile": false, - "path": "/usr/sbin/chgpasswd" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f3ad18148e962ef9ea09c38ffcd336c" - }, - "isConfigFile": false, - "path": "/usr/sbin/chpasswd" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f46816961e6b1867efbe6c36e8e6aa8" - }, - "isConfigFile": false, - "path": "/usr/sbin/cppw" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9485e3cecccb8c89ec854ae12460bc0" - }, - "isConfigFile": false, - "path": "/usr/sbin/groupadd" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf6f65a3c64eb276c029e1b942fc2e56" - }, - "isConfigFile": false, - "path": "/usr/sbin/groupdel" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a798eb2355b9c7eb6e4ae13c0137555" - }, - "isConfigFile": false, - "path": "/usr/sbin/groupmems" - }, - { - "digest": { - "algorithm": "md5", - "value": "128d78553c0af876e63b177e2e7269d6" - }, - "isConfigFile": false, - "path": "/usr/sbin/groupmod" - }, - { - "digest": { - "algorithm": "md5", - "value": "35ce100cdce3d04fc5c70620fb4c5fa9" - }, - "isConfigFile": false, - "path": "/usr/sbin/grpck" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5adbe0473b0e250f6c9ce461b52d614" - }, - "isConfigFile": false, - "path": "/usr/sbin/grpconv" - }, - { - "digest": { - "algorithm": "md5", - "value": "79fa792abbacd99df5dc9cc1d8d66bdd" - }, - "isConfigFile": false, - "path": "/usr/sbin/grpunconv" - }, - { - "digest": { - "algorithm": "md5", - "value": "60c5fe403095d9bd0ff8dad5e2a99fa2" - }, - "isConfigFile": false, - "path": "/usr/sbin/newusers" - }, - { - "digest": { - "algorithm": "md5", - "value": "83f41d49b0666f2940ad7da217ca8095" - }, - "isConfigFile": false, - "path": "/usr/sbin/pwck" - }, - { - "digest": { - "algorithm": "md5", - "value": "29b0c834348c9bec6bfdeb8197d3b22d" - }, - "isConfigFile": false, - "path": "/usr/sbin/pwconv" - }, - { - "digest": { - "algorithm": "md5", - "value": "62406f406d842a9abddc0694303c2a6e" - }, - "isConfigFile": false, - "path": "/usr/sbin/pwunconv" - }, - { - "digest": { - "algorithm": "md5", - "value": "6bc7d2db18a2ee79984a10d608e2aa8d" - }, - "isConfigFile": false, - "path": "/usr/sbin/useradd" - }, - { - "digest": { - "algorithm": "md5", - "value": "6124a5adad5d65cc033678ead26ad2f1" - }, - "isConfigFile": false, - "path": "/usr/sbin/userdel" - }, - { - "digest": { - "algorithm": "md5", - "value": "79b65b3c8115734dbb4b45faefd3adad" - }, - "isConfigFile": false, - "path": "/usr/sbin/usermod" - }, - { - "digest": { - "algorithm": "md5", - "value": "a28a4dac67b29c8523e8b777ac41c14c" - }, - "isConfigFile": false, - "path": "/usr/sbin/vipw" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac3f76f2fa4d5af0fd55c8a7fb4550c7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/passwd/NEWS.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "217e2a968603dbdd1bfe81051076f132" - }, - "isConfigFile": false, - "path": "/usr/share/doc/passwd/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "02916812cbd2183a26d75b8645bea7b7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/passwd/TODO.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "e4343bc1c35d7b374ef4709b6e45cfb4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/passwd/changelog.Debian.amd64.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c9bd2c5e71cada5c4ce66160e91ec74" - }, - "isConfigFile": false, - "path": "/usr/share/doc/passwd/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "76acb0f2c68a79b867f2ae5f3d7aac1f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/passwd/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b421f2c7316ef9958c2d87a76a434119" - }, - "isConfigFile": false, - "path": "/usr/share/doc/passwd/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "42b6b6d065ae2c959e885fcfa47a9887" - }, - "isConfigFile": false, - "path": "/usr/share/doc/passwd/examples/passwd.expire.cron" - }, - { - "digest": { - "algorithm": "md5", - "value": "7941e9f86fe7a6bb1a88f1f3e7279d75" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/passwd" - }, - { - "digest": { - "algorithm": "md5", - "value": "32f282e077a7b6be3ae89e7de510e221" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "06dcfb2131a2bf6faaea7c3fa96c9686" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "af948c95629a44c155adf8b04206fb35" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7ddfd4899afd2ca81e849b7bd39947a6" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc5d5f7c82ec707c4d1fd4f4b07dfe7b" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc64fb093ab0ca6bb3cf0f757398bdf2" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb7bf5ef0bfffa1c638509bc4702e1e2" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "86e218f9995d85ab2679fb8ea0a7e71f" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "622261037661c45f3b7ae00e7ee91d8e" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b417d08e085b5f8976e8506d9f2b0a1f" - }, - "isConfigFile": false, - "path": "/usr/share/man/cs/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "33d34c2d159abc15eb25e11d219149f3" - }, - "isConfigFile": false, - "path": "/usr/share/man/da/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "306698b3ef130e29068b6a516c037095" - }, - "isConfigFile": false, - "path": "/usr/share/man/da/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "57520bfa17e3949a09bc87b454b57d12" - }, - "isConfigFile": false, - "path": "/usr/share/man/da/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d08cfd85664c867c33241dd7193e9558" - }, - "isConfigFile": false, - "path": "/usr/share/man/da/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "634fbd3670624118df654bfc2bb02abf" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "942ca7cca286a41c172ca7ce70879245" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "240eb983993014d49f77ae1313c973b4" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ecb519f84672cd9edb3c65bd4ba51e9c" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7aee9a83d85ce5a06737fbec1d456238" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aeb08ff216c81689c4f2c72120e996d5" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2085566cd876414f97c4762dab1e5dbe" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bb72d2030920ae3781f874cfc86e6f30" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cd4601284d0dc413b05f9fbf06c902dd" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1cde30677a86bd9b1a8c48c19e68e62b" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/chgpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8619ab3a2b0cc395e8d9714c11ab8538" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/chpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b3eed4bd13adf246dc4c167d2734c69c" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef90fbb4dee1a8d23dc41926ebcace64" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a63d65872ef9c196faa3627f0e30b6b0" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/groupmems.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "14e9fd52994f62ceea93b48e652ae98f" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a63c02cd47bfb595986b0f7ba1365dfb" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "32fdc312279f1a833fbf8b8ef09ff12f" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/newusers.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "07b622bf59e78fc144306211a25c09ff" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/pwck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "288d82b72c42cea8124b4fae8a8465d0" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/pwconv.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a86b41a57d50c95e533edcd6fe75cd83" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c84d7b20adce396ca85be1a4b894f0a4" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "67464e2ae57476c4866f3cd13ccffaec" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d6dedaec6e02773b7d8f49d5d507b91" - }, - "isConfigFile": false, - "path": "/usr/share/man/de/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cdd7f1e7de0c99b3ab83c6eeb5141f7c" - }, - "isConfigFile": false, - "path": "/usr/share/man/fi/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d97c554084e4ece8ff23fcea2f8d9e3" - }, - "isConfigFile": false, - "path": "/usr/share/man/fi/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "765669d9486e5253ca0ca8ba28791b6a" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf81f1d8a47a97f770a5633ec684f041" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "36db902f0dc7d9bc9cd8fb4afd06d417" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e129993e0a86ded2f5ff56ce37c12a3a" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c9e9ef3df2b9daf3fa8d3a28fa7a53e" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "981b229e4995ce7b53cccb53b87f318a" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "75f7810357545f3af5603d0c1d6e826a" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a273b379c51dbb0a99528c62482a2aeb" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "73077cda08a1595d09a34fdd4d9b6742" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "82fa40d5a06ffd240c253fe0af6a8379" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/subgid.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5bdd17437c9fa590302759f58c4f1cb" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man5/subuid.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7e03a53b183f7024e2647de185d2d3d" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/chgpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a07ffcfd64c1eaee5df69a459fb6fe6" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/chpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d320e2e1d7411383e7f8b9effcd9fbd9" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "27396ea2e6062ec800c0df05940a081d" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c60141ec5c5d0a1234bdf9825d1112d" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/groupmems.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "023122ad1a1ff3ddd0f516b34f8d03fa" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d47e6eb5122f00ce676718c8fe7b2e4" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "56ababd2d1576474d434dcc11b9ff89f" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/newusers.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b092e2022dbaeeed9357bc382aa87008" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/pwck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "401d0c5fa6aed7923e231c979e05166f" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/pwconv.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d2d75827464bbdf72f484109e7ff188" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a0f6e9b78db44b98e867217a1592380" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "46c09dae7f5d129a0c43cd8bd4861175" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b14147887539d7819f18e54caa2802a" - }, - "isConfigFile": false, - "path": "/usr/share/man/fr/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cd9577f2fa319ef721658da34ca2229d" - }, - "isConfigFile": false, - "path": "/usr/share/man/hu/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc09760fcf15c4f9aa4d71ba271dd158" - }, - "isConfigFile": false, - "path": "/usr/share/man/hu/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3659573dc5712e91b49d83dba10e828b" - }, - "isConfigFile": false, - "path": "/usr/share/man/hu/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef1cf0a6ce799417645ddbabb7b74801" - }, - "isConfigFile": false, - "path": "/usr/share/man/hu/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "130b2d425143d1cfd5f1a596812a26a0" - }, - "isConfigFile": false, - "path": "/usr/share/man/id/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d4ee7afb32b617247f1da0f57257f5c" - }, - "isConfigFile": false, - "path": "/usr/share/man/id/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a60a40f7cc34321391b66af3d9c32859" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dcd5318d8c418363347fcc1d03301b55" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "34364d8c258d6740002f53b7a8aa4a92" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f1c6b55401e22537c3004e1fe70b3ee7" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1cec3b77fcfc3c5ababacc7a6c35ec7" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "75fc8389e47a11f2a9a41fb377cae89a" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebafda77783f22a73db6c68e782a09fc" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7376a5443f195add09757c8dfdb91f59" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d7d3facf3c985704cc6a1ba933cada5" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a8b6e802f14c4a316a318e61ef9f872" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/chgpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a85b390d0f0a105c6c7c94b9b1f5c42" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/chpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6a5d0f24f4d7206f057a0499134fc4ae" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe8c3c19a00622847b73f3507137f803" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d390f10e538e849aad9f1e9d1e90ac84" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/groupmems.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3d76237915e3d607a5a928ff492e236" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dbf09f2c946a721c50ef6f7e7f394b91" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb5124a9445f7ccf21872f694ef99e11" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/newusers.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d651f66a9e508cf030b67a57b2782142" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/pwck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f62021c20426b5c4d6b77bd04141751" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/pwconv.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "11bb043330e520bbcd21e6bb71acd505" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e9a6646a2de8d3ded74a841c41d1ba7d" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f21f3f31d10c2b6503fb29e3b87cd42c" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "df1cd92a6ae4d7d1cc2170faf397cbba" - }, - "isConfigFile": false, - "path": "/usr/share/man/it/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "45b880408d37fce5b19b037a961fc43b" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6acb65b591cdbbaebbd38adee6bfb094" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "837d25ecc72d24c6c873c9befd6e9a49" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "472359d8d14861e36962108d9bd8a09f" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d5900b4d7744acccd25f9236e13eb31" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b710a8e94b39e14003c9136c1b17a764" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a66d6ec9256812d21b1516b16b52115" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "28e4a9b0f5dae166aa69485fee46687f" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "97bbd349c936092d3e258105d17fb488" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/chpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "828c0b21f9294e6d24149f4f2b7239af" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7cf8d0a53eabee05d0415d11cbf77b33" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "714f84f5083bb5f336b3233e1b894117" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "41b6d757bfa7da2df6857b14c2c1f9b4" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2616c9ce3abc19050aee6239219e2f74" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/newusers.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "039e3645601e82d946efc039762ecb5f" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/pwck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f86dfb5e2e4e79511a13d58c1d3f15f6" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/pwconv.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8b5e68fa9ba2929d3c8f5343e5b44ae" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5db7e21ff97d5cfc2762aeefc06bfe8" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f59ac26225899fd9ca4048b300d8be7" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d1cc08014e0a78d3eaca83a177d4b344" - }, - "isConfigFile": false, - "path": "/usr/share/man/ja/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba9e918a0d165cc3be4240be8feec4a1" - }, - "isConfigFile": false, - "path": "/usr/share/man/ko/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e2397bd1fff79c64caa7ee856b3828ed" - }, - "isConfigFile": false, - "path": "/usr/share/man/ko/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "14ef2fe516039c1dd91dc214569e504a" - }, - "isConfigFile": false, - "path": "/usr/share/man/ko/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a15eda23f100c2da01d29cd5319600f3" - }, - "isConfigFile": false, - "path": "/usr/share/man/ko/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9793507e97a7c610e97a520369805bed" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ec16bf7f3499cf9164239a185e71a97" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7fac345049102aed80033504c4e5984b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c8b2e76355a99f7bbff22cc9461f4ec" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6227d8f0d1876a5052ba9e3da43b7f81" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5d967da42b1fc349ab18fb1a330f9169" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a7ca8e7bbca2b9f9e6bf084c4b6e6cf" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d0637a4aa80e363fb8b646fb630257b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f9d9baefa02ac06290631ba0d1c331c1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1110989122184a65f815875b9547084d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/subgid.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "65a2e7f3e72d07f2617ceb73ece63539" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/subuid.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b76de5ecef552b0f5b5e39ad52f25d2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/chgpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "265c965f7337768deb76db779c348648" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/chpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2add2075b2a5787359502639c5afeddf" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/cppw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2f7b4cf40993c57bf81eea108bfc9173" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e99235ba58cb7f0792636fbc45f33d3a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f7f04e5a174204c28eee088a780162e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/groupmems.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d09244744fd32531bfc4ef5f7aa508c9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c0bf5a3bb526eed6efad149f1284761" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "62b73fae893f8537cfc555f799a9a5f3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/newusers.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "484bce86e53b5745d71c69d062e85468" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pwck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6ad9c239d91492e04ccffa1094f2f29" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pwconv.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e07c384dee27f9a382a7a4a557ea97d8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7baa32d99271afa437e949e50f991bf" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3870a36fe8ee00a62205da3994209661" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "01d79b5443b76029869d942fe8d1cd87" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d6e053dd852b41b9b00839083336756" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab584dcae4c287bb72a6f9e83bb69338" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9587e4a29e9a97cd9e65e264a59550d8" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec9c47b6a775f4e6bbfa381ad22832bf" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa06f4b2efc876ac1b2936a3f5986711" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "11a23b4af678d213c2777c8a78775e67" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/groupmems.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc02d4b63425f93ffe1f9b64d83b6a0d" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c3128338e8ecb29702649f8cc6bb7e7" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "94713b611cd87ff9200fe6c632a22c4f" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ff13054a1661ee2fc383ebce6d5f058" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5112926fba91aaa7b526368f817ba1ed" - }, - "isConfigFile": false, - "path": "/usr/share/man/pl/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5fccd5124a7b11e036642e1c996c1f6" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt_BR/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed2dbc12df8c8e24574b08e705ae38fb" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt_BR/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e7ac9ee5d0dabbd42f0f05a42fbeb864" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt_BR/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f0a0c618a38733263ab1ee62b8cf7b90" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt_BR/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "31d9d92e0fddbde0f4b8b4a4e3e36a0a" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt_BR/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "53d7820c9890a8d4df44b075428b16ce" - }, - "isConfigFile": false, - "path": "/usr/share/man/pt_BR/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1355888f94e6a9867e8f86afc881acad" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ec9f5674959a14971a59dd5bc617fb4" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a7526fe6c1639de8eb577d7ea4fced9" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca382dafc4797d7958ee91229368bc41" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "07ac4e7eadec9e55cec7207711b2bcb4" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "df660edc49658b966dd84838c1b1f1a1" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b93128498a6a2963ea398ac71119cbe5" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7f9f6a8dddc735baa61bd8f595da7ded" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb510b9343045eb9aaaf8b0f2ff5e914" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "287edecc1c91a1518115ed64cbc55058" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/chgpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3fa2005b31e68d8c423f4d1168d18ac" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/chpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b799a228b4cb58be39629b03bdf7a946" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b7bab6dde7bcd475d1ea773e19bbeaab" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "70c55b8a949bf6c445a440282f6f3fb7" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/groupmems.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "998404043d4967abda441f4fc3f2f2ad" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9dfd1b97cd960aaee16755571c74d63f" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "77c7d7a15528b4c858c146ca14d44f7a" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/newusers.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ccf33813f4c13f75b359418258ffbcd" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/pwck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "019782c566ce40f723ceae0b78b31d52" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/pwconv.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5528ce23aa3a7da7294d794af6769e6" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e9a1b2866d9c180f5f957d18a3c822b" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c0b53d07aa3bef8e22441e3843f06ec" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b46d0f9de78f875c3f2034cbfa9f39aa" - }, - "isConfigFile": false, - "path": "/usr/share/man/ru/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9fc712bbabf90fde2d115a4f4ca2260a" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "34703d239e7ac136de968e41eaf4e794" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5aacb4884e8c24bfdd4c0c9b5025d906" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0b935efea69603cc13ad7cc67ee42b1" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "365fee4faf3b09ed1015ea58ec96814c" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7e59befb6d6af51bb6c52a6355efef9" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "32b606892497dd25e88e12531c13ffd7" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6dca9024da8e7cc26a2afbc5b2992883" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "427a91c2156d02e8b163a00f3f0870b4" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/groupmems.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a27e9e77cc34169fd71892516dad855" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4ffddc6a89058ba9be523e50734aefb" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ccc79683c74714caa050271a5fa2376" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/pwck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b2662bd4f89f7da4a100a87ff0d4448" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d657c6387d49c9445fdc69bd64fdb56" - }, - "isConfigFile": false, - "path": "/usr/share/man/sv/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "db5b0e9acd62b9867ab71abc240a671b" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "092b6d994a843c2f53c5b416116c02d2" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8230102e7eadc46bd59683ecdfa4950" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2428e897e4bbb8a248d4bccececd480f" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b0bf0ca13494b6a05fd818d7acb5a50" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c1120d1e238cbe8af71454cad431abe2" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8971051cfe5cb3d5ae022466114974b3" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "80130b9dab895851c19d8162dc11bbf7" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ea0c9eff706063a3f56cf1184827e7a" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f007966653fde5e170135e8014f6218" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb51a6be272c85ea04a22300d86bc32a" - }, - "isConfigFile": false, - "path": "/usr/share/man/tr/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5bb21fb2222dad4116bfe2d1f1026bc2" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c86432bc9e87a274dfd32aa7d71714b" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "07c30738d49deede573526ef353d775b" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b816cf6106ff5d817e1bda887ab0a860" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d63a6dd770ec46798a2f935a89655028" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e1a0fb0cfef609acfbbebe2dde395b2b" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4f93e732c8211904c2891b0429ab302" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "882359a454c2547a3d28468ad72c9fcb" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "159cef686c3ecacdfdb44723f5d1aeaa" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0088d8ff5e2a22682a9f23813803f1d" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/chgpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e9c3c29dc491b59a571a73e4e7cb4f44" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/chpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a944cebb311e8a8bfd55499663364571" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5d23cdd47c96e1bd626e2f59babb7af" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0f09ae73fb908625ee0b834c190f5bc" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/groupmems.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a72c27302e6dfde75e389f3936250155" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b35108b11f95a97410b7bf551e831641" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "748d7bf1d187ea58b538493cdac31b65" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/newusers.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "30fe33ee7f073161c2a0cf80b0a2d918" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/pwck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2252b0a50ff88a8f9b817a5b1585bf7" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/pwconv.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8ae4e19879f59cf7585633e1a3443d9" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce322c468a940399165b0594dea898ab" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c61c75c4e1b97e20b4ced99c78df5423" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9540b32241cd72702027c7feb7d6eef" - }, - "isConfigFile": false, - "path": "/usr/share/man/uk/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b34042fb0919af0be8d4d453daf85c6d" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man1/chage.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ee8ad9ffe9c0bb99f8af72741d58b7c" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8230100e63311775f1a5283959321d13" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf8b5a6ecb2b9c82243aed6c211ff9ae" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man1/expiry.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5550770446437201519fd872c955849d" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man1/gpasswd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "20e8ac004ad1e4278962bd6c24c13ecf" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man1/passwd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "68a102858e2ea3b7401c9be3c3e3aa2c" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man5/gshadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d1a84dfa0b5db9cf2f934f20c3343d7" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "27eb25c02b416aa7c0a9dc0d5bce3c40" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man5/shadow.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc2c5a31329c81bea924ca51e1071784" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/chgpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e238ef7051b6be2ea2373cd8a62be890" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/chpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "af08b026ce0c498698d90730d3842520" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "918f1ae58cdf9f9e3fc75ad08f6c19b5" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f07d1ef369814ee3d0b3e795915b1e6" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/groupmems.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "11362910853b018865dd92efef6835a0" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "59a2cd3686bbb5f5f5f47e223faba511" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/grpck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "16d8c776c3bfd53e21344d3017d0a25c" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/newusers.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f969b139f4166149d2cb7f51e6c7feb" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/pwck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d6cb6d744591e9379576fdd2d31f0a59" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/pwconv.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0ddbf29f2b83e6bdfb1fe834981ffe4" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4c5916599cf3da0cd95d033dd79a5ca" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb08bf0194abbf43e099668b1fc04a21" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/usermod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7a9495eeda809af79b9c0fc6e16a567" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_CN/man8/vipw.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "71d394a444e1bae52ccd1c792f8c2621" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man1/chfn.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f82136c3c46150671bec51ac9abc73cd" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man1/chsh.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b60e3cfec664af17c84a480a69baea7" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man5/passwd.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "319ba0e21723fe95449dc2438e3e99d4" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man8/chpasswd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b46ea9382a5033d7df9455078d0a483a" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man8/groupadd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bd97c379d4d95974b2ad6345dca423b" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man8/groupdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8395accf3ef680940c289e5b094f407" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man8/groupmod.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "04517ca2cb6a5791b2fffeacbdaaff3a" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man8/useradd.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2efacf471eed788ce8e970a037824bde" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man8/userdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e2afaad95d754384a370c781e82493d7" - }, - "isConfigFile": false, - "path": "/usr/share/man/zh_TW/man8/usermod.8.gz" - } - ], - "installedSize": 2832, - "maintainer": "Shadow package maintainers \u003cpkg-shadow-devel@lists.alioth.debian.org\u003e", - "package": "passwd", - "source": "shadow", - "sourceVersion": "1:4.13+dfsg1-1", - "version": "1:4.13+dfsg1-1+b1" - }, - "metadataType": "dpkg-db-entry", - "name": "passwd", - "purl": "pkg:deb/debian/passwd@1:4.13+dfsg1-1+b1?arch=amd64\u0026upstream=shadow@1:4.13+dfsg1-1\u0026distro=debian-12", - "type": "deb", - "version": "1:4.13+dfsg1-1+b1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:perl-base:perl-base:5.36.0-7\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:perl-base:perl_base:5.36.0-7\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:perl_base:perl-base:5.36.0-7\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:perl_base:perl_base:5.36.0-7\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:perl:perl-base:5.36.0-7\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:perl:perl_base:5.36.0-7\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "e7c6c7e67b78f445", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Artistic" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "Artistic-2.0", - "type": "declared", - "urls": [], - "value": "Artistic-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Artistic-dist" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-GENERIC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-3-clause-with-weird-numbering" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-POWERDOG" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BZIP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "DONT-CHANGE-THE-GPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Expat" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "GPL-1.0-only", - "type": "declared", - "urls": [], - "value": "GPL-1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "GPL-1.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GPL-3+-WITH-BISON-EXCEPTION" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "HSIEH-BSD" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "HSIEH-DERIVATIVE" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "REGCOMP" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "REGCOMP," - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "RRA-KEEP-THIS-NOTICE" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "SDBM-PUBLIC-DOMAIN" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "TEXT-TABS" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "Unicode" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - ], - "spdxExpression": "Zlib", - "type": "declared", - "urls": [], - "value": "ZLIB" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/perl-base/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/perl-base.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/perl-base.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "03b0ca53cd9a2b82c671b53cba5d8cd9" - }, - "isConfigFile": false, - "path": "/usr/bin/perl" - }, - { - "digest": { - "algorithm": "md5", - "value": "03b0ca53cd9a2b82c671b53cba5d8cd9" - }, - "isConfigFile": false, - "path": "/usr/bin/perl5.36.0" - }, - { - "digest": { - "algorithm": "md5", - "value": "78ae6d88b5349819d4ae17230677575d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/AutoLoader.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ae704e4ad448f7785e589411ba82103" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Carp.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "72e2bc4169d7cff91916ccfb20699362" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "2118e4ded5c672c9c8b8b9c878161918" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Config.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "43c2fc0c6c7fcce361baeebca99732de" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Config_git.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f0231f202806d02af5ba038131db531d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Config_heavy.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "951aab069766ba144aa002f32a166530" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Cwd.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ca8c5ec8ad89fb1b55816ecc34f1dc8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "259a062cc795f4697c4476e801bbd51e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Errno.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0db753f1dc1abee44f73525663fb964" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "12199a552defae346f8524e2c5434bbd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe317b6e54b15dd7e809112aafa8ccab" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "604b238b6d94ffb4c5e8b61312ee080e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0c909e1b03f0dd3e3d151643fc0c5fc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d473e79024fc4e4aa9940b6ca34fec5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "3596ab3e12a817ff0bacf1e52ab225df" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b754c80e7ada1ddb9776e0dbf77aaedc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b29d98338e001881d02e0659b5c87fd5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b908fef4f113c2e74660490734566faf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "1488c5a69b15aed29dc228a97ae802e5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "25546038bd14a7406f1e4dd9f59bcabd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Hash/Util.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "843b592dc0e2e747d140fc763411f8ff" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "022295e518f36eb9c8a0d1377c8c292a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/File.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e775fa5a65484dbfcd306d33661b1bf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "507b61ce5c2a1c81efcbe1e7e7843d1b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Pipe.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d8a0b0c68bfac38c0f68b7de568faa2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d629bd17ac7e99518d7dc10b58e1bea" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Select.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "07234af9ee57c7f3b202531dc0c4d427" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c72219f9d8c7b386102423d2ed22487" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/INET.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "92ba1169d7649e8fd99ec0523984c961" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/IP.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "65debc7daea2a650ef85fcb810fb42c2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/UNIX.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd9f266b9e35426da0e50d0d189a5760" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open2.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4f60fed0f81ef6ad2f4fea9cfb321f5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "f441eb615f26a542a97912b32d1099a3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/List/Util.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "d819466eebd3de3337b3a7a60cc77ebc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/POSIX.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "0af21ef758f58ec0b808c317e83d89c9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "d71a55c7cae110f38d85ea2c9147014e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "19a7a54b311b253f26c0b0256e31ecc8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Socket.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9cff8a2c27d2d6581fd10f711e38e58" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Symbol.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "e545714d5dc7de093d16b4d38193cc17" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Text/ParseWords.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b89a6a2f68913fc0780b42ca80b37c0a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Tabs.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "a97acb30597e9ae99659733da05fae2e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Wrap.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "3aa6ceedd80611771127e351795293ec" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8c3e80a42278bf51fa69e84f4df0e41" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "5c374192d72452daf491d15d0e1959c0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/attributes.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "d09c4b6c97eb7958257eea888b625f5f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f0f68b315b6b2371ec53238e1be8a35" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e5beb4fb4b46b9d5c1299da5550f022" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c76bd5056f70d30c28a3d8f90b3863f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Hash/Util/Util.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "43b1256404225405ddedbf6b3fc5d60a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8c076532e3b6aecd128a7bef1f83f39" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "420683c3a5f9889ac7f55dbf2e03fbc0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "67b7a47bc8bcca88ffa3a6514d0f9d52" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Socket/Socket.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "4dda115d27534e8fe5c2642b94f641fb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/attributes/attributes.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "cad9d70722417f77bed3e093973885a5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/re/re.so" - }, - { - "digest": { - "algorithm": "md5", - "value": "0484a8f8936a422af0f8b6f94ddcd269" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/base.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "257a47097726e9ddf8c61aee8bb2e070" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/builtin.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb17a12d48439ae678ea588aca339233" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/bytes.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "50d2926265097ad82558258a95ff0dd8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/bytes_heavy.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5668acebd8d30aa263d57519c360cbc3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/constant.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "58364a3ab3c48d454af1406af2b4b3bc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/feature.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "05f46b50eeb55f1387551c69c7c37662" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/fields.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac4305fa41b2b537d4e426f5f56c5bfb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/integer.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ff70a0a442b7d5e23e5ea0a22498f6d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/lib.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a221808fcd219d2479e22d0c2fb5dd9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/locale.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "f52d8e265bfffdf2130efec83ac586fe" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/overload.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "eae881bf623745585b70c107ced98f69" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/overloading.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "167856b625a767f24dc9b11a4735fae8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/parent.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "d357909ef791eb1e75e4f94179362fbf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/re.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "34f9bcec87a66b508fd3d5c3b170a9eb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/strict.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "584f0779d97ba3764924986d8e552e9f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Age.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "41d425b3e13f9fb9898d8858a4001510" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7349eca4810f720ea9f956ce010a41d6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bmg.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "22227cac0d3862cb8cc1324c5691be62" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpb.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e57f624886703a8b3aa490d33c89f5be" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpt.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a2e7856e33c99717136897024c4dfda8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Cf.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "09d4cf21cdcb2c5a05673f524522a677" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Ea.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "babfd5a67f9710c4bae4b5d1f22238e4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/EqUIdeo.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d27a47cf93d0475eba536488c6bec0c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/GCB.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e7bc30fd8c7edce998a22c4a55debe9a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Gc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "902f5f49a15f3f6f4127878bcb55379f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Hst.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b876a8361802da50a1660309b32f9f58" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Identif2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "52019801aab3e5b36c76223e6ada6c0d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Identifi.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e1d27e4f33cfaba27d1423e9d46821f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InPC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4a87b2685d5f5e65e32aef2f790dd2e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InSC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2152b37d4867001234f850aa52da873d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Isc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9354ed3c373b18de886a570b08491eba" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jg.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "910f9e3af0f9c076e0f1435cf2970749" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jt.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e3776d35c3fd66f9b9c494e6561df6b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lb.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8f12aa8781f94082edd35f6743a06fd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "72f1006197910accbb13a750606f842e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFCQC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "14834c63a5be6f6fc64e81a5ac1834a2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFDQC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8274c80fa23c99762b0531d94a2e3811" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCCF.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b7fd3cfcc5e04bc460ac51b6731a1e53" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCQC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "cddb48ad7dc5a0379a74a4ed2953e0ed" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKDQC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5839f8b04b5a0a2e5dd87a1c8423f55" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Na1.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "967b1d3803c9e36df909422f175281ba" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NameAlia.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e2bd82cbd84d7726ac73a120a27a6a7a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nt.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d29c241cb5c374d668f36628fe5c9304" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nv.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "65cb0c12ecb7d771c473ef8620f10f08" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/PerlDeci.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e008de33bbffee36cc637eda0291107" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/SB.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "85bfb0dc727ea568ef79ca61dbc00a37" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Sc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f55eaff8a5dda8aeb18f00b5b03b0662" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Scx.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e45f63f2b03751d1b3fcf0b40c1e64f1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Tc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5a07c1e0c72731016f0845baf69a2f8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Uc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a12d135ae5e2e8946824ffbfe57129a6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Vo.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "57a233820b0e0115a984080bb8ac17e0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/WB.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "897c526c8fb67b3d879e83a8cf2ab137" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlLB.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b1bf8319ea5a5b8d4d8818ae051cd8f7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlSCX.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca373ef25b994881ae4bd5eaa6741016" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/NA.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a5433f749b476fdf4e784c32a962a96" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V100.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc734054a8977939ae0016541e2ddcd5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V11.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2f0289c82db4238b567b4c381b5d6d5a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V110.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4395365000c0ac31d66b2017056bc1ac" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V120.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe789ec4f106ba1f25aca168521555da" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V130.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "cfed2e9bab93ad6eb99adc02efd397e0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V140.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6a80fcd5c4ccafd0d2bc186517b9aff7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V20.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d014fab7dc8c358183972a83272f6f8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V30.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a56e8495d70c300051a263aac25904d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V31.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "af20697688d779b686d858aabcd3bda6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V32.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5cf7624204b35fba26d075d1300ed7ac" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V40.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c00dbd9f693a948f103d29fad89cd69" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V41.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "705947efc47f93d4be693f8886f88d69" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V50.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "61aca9c6d85952bd2c10bdb993949bef" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V51.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c802361f58b55a0ecaa9ef5935161a7b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V52.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4721534574463bf7861154af81d85890" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V60.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a6cab904759fd20a6ab473ee009ce277" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V61.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "563b2f156a539581a23413020fa84317" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V70.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c71d4522f399b0442b47499866f0150" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V80.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "50033341b3d601c4f8f371d852ac8da6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V90.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5853d1a67e01d1eb46511437ad441253" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Alpha/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "48348e3b48d52a086e792a388a0408da" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AL.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4353ed929fdb29103a88285c3afc3cef" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AN.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "79631b30d50f4b1a23ae4d35acf41a7b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/B.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd71f3a09dd58f3523f134a9f82620b8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/BN.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a174fdfee61c9c43acd42ea02d56d99" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/CS.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "72bd21db4e86d813f59f79e9ddceed75" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/EN.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ceeb7e30e68f58f3d5fbc87d1008476a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ES.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "092e6e2899bb13313eb7f03d95767b5f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ET.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff691f31ce4b147c1ca1c9a0c6a1d5a2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/L.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3e9466b924dfb95fc2d8ff69967ec11" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/NSM.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb60c98b7f166ca7f4981b2d448f9ccc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ON.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "79cc311b57439637c9bcd7c987f048dd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/R.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8c409c6dc245f2c6067241f9f9f970c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/WS.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c40e67cf36ebe1f6904af8b2876e19e5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiC/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9684b1860876701a39c32bc785903c9c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiM/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "13c89d7a9d1fc1b0029f484d27fefa7d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Blk/NB.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9058ce00523c9a6dc60ddf2097a115b7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/C.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c44c2bfa740968c3a415716c5c541808" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/N.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e3c95bc4d4d08ec8103664570da3b08" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/O.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b7945a6e4bbbb5634626fa89969b949" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CE/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0ae41a30c11193ec139f8e21ae5a5991" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CI/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5d5eee696a3c21fcf41d3c1e12107061" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCF/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "476f0e3279ad806632c4804ae70ae6b5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCM/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2cc8471b84d3f37d76384e47cd911dd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWKCF/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9147eeb572d5999b3b9b52e506eacb5f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWL/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff58781bb96b2a8b31476c2ee8672a58" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWT/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c73e9c75aa53b791ee3cfb915d87b969" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWU/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f239682f1e22bc61bf2fab040edd558" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Cased/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3dfef4d8873dfc3563ef9aa401a30ae9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/A.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4606916aaa216f8fb9dea377c4a95b63" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AL.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e45c7d4d449b6f132a15a3d82e0d328d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AR.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8d9491c4f1c97c77da6db478108a363" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/ATAR.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c290d4537ba06f2b4ed8f7c4ecd8512" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/B.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6e97b6fb423073e50ad5575d27c00ea" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/BR.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5883958c70fbe669b310029c0f6995a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/DB.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a34bf1d1085d9b9c8698d66bad23d3a3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NK.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "090df80aa50b6fa7742e1ea653d59583" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NR.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4bd269dd0074789dfdcce869969388fd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/OV.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "523cd7f0d1a3f29693563584f9af951b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/VR.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "372566f4a45c81329e591114eda1109c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CompEx/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "43eddcab57712aa87b05ae39fcbe0acc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/DI/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "49012711b53d4e18af190bb6d804d5e7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dash/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c688b61306331f03564d1cd9e2b176e8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dep/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "17d825b476edaf099bfadbfcfa7193a0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dia/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ce6734153afa455ae6849da015d80c5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Com.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4db178d3005f6007c8c8ec2e6736ec9e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Enc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d99763d5ad8cb46a1e88d679895d61ed" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Fin.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "196d0c020b8c64a6b55d50fe806a670e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Font.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5766d162341ae18be8a516e82ede3582" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Init.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "39dbb1265d9d4c4dd1203ff3159e12f4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Iso.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "97362008dd5df857736b51e472734155" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Med.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c044a9553ae16cf13855ab582c3deded" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nar.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7603d7f650b3b25bed072019f542efd7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nb.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c90284dcba3daffdcbd78395d85832d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/NonCanon.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c847aafe76a5a322276e3618b3c1f9a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sqr.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4edb5991cf502d1779ecc6ddf6e9b9ca" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sub.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2b5449609c69c228b7e73a231b89e5e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sup.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d35496c20b0196a54837a3908da04876" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Vert.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0849d98741977bec4dccd1d328d18b95" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/EBase/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6e1a2e83c3203828f5300b1ec457c6f5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/EComp/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c326b6509cbd13c2742345efb9a19f2e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/EPres/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f56d246415f51d447a47fbb8dee1b5c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/A.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "62f256d3b0410f326515471bbc07369f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/H.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6fbb11127e3c7c3f01a221151446cf78" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/N.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5220fb48dbf6fe774c2ce01ecb658989" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/Na.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4fdadb6e0cb84ba3d86fa88d213d1fd6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/W.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ae0f0448c6a40ba597cb9e583cfee57" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Emoji/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "74a3d7d17074d9c83cb99b3ed2fd2f14" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ext/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d423980e460f53fc101f314fb0059dd0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/ExtPict/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "bfed3c59d59cbca665096a9f28a077d8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/CN.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2df01b66539dae507d87243cb5ff98b1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/EX.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ec62a246215b0e7f5617d6017f61bed" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LV.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d58426eaca279dd442aaf6472ff3be6b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LVT.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "34f8cbd56dbe42061e30e349df5bc790" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/PP.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "85b5ffe022b74d0548934316a58fd48a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/SM.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "575986941e48d45d254b4b931e430be2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/XX.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "05a5db912166df8c9ad12bf40f89d999" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/C.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a34bbbbfa513fca63ec8fabfb958e70c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cf.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "27f5ff82a87e7fd0c44eb4a9644d9f02" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cn.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "736238b7ad1316a620987e5417b7a647" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/L.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2d39bf1df3ccbd523d982217b4eec02" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/LC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "910cd03351b06428a96613bb90c1122b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ll.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea310ebf1d07d899151972a26e3ffe89" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lm.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "48660d6f335061852d1b2a911d7f8886" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lo.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "139d251ff3a683062ad43321cda9a970" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lu.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a20e8fe5ec3ceadf076f495023761d3f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/M.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "010ee701094149775ab7ef89f1309127" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b2cc1aff058ec935c2665c01a0232eb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Me.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "72a9eefd9d930f33a510c390ccaf63cd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mn.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d3cc0fe3041418e8f289d4166fca2bd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/N.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fa9af89a84a2e56531ca57699309593" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nd.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e82a220654a62efadad11f14da15f0c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nl.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "56e089226310b51fe8c1376cbdbbaa91" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/No.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b45651411d1582473a98d354c677a85a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/P.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "569a14cf69f60a4b566628e24b599ff0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f39aa79fd0b0c5f0fd8be1c202d2b5a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pd.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f19dfca70505c74dfcd2c4b75f75704" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pe.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ebb9fb1bd5168288cc09ca585d99887" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pf.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e850bbbe962a17814ccda275e7406d6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pi.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "76916eef2a36108b3e2de761734186bf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Po.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c42cdf9724b2c0829d3e8a17b835d22" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ps.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "73564e5e7978323ae20148f332f4841f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/S.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "bdced11d51c9fceae025b331cf046579" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c923bdb00239615c32dc5c973eebc7b6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sk.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "492eea95bd4dc4aade5c5a81cbd3f37c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sm.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3adac7c7f5e11b0febc3c96732003f6d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/So.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "73449a79c62f6c816f750e0dfa5d694b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Z.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ffdb6484b2fb9d0bcc2bec8ff22aec2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Zs.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "60a566a468a64af73a8eb02b632aeb0a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GrBase/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5e294c7a5517bf7436b483b25334d6ff" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GrExt/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d9d1a77ec615522e4b1dac9e7139cebb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hex/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "30111d06d28fb0fbaed0c20bd2410e09" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hst/NA.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "90580a5edc189327060276bb8bca0d7a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hyphen/T.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "36383f2270df879b325660548c843481" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDC/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ff036a4155a22f4ed8d2332b32b22df" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDS/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "11e6d797a623708e535bc2e71af1bc76" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdStatus/Allowed.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "677cb53d8067ab0c1e37a8c24cbcd37d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdStatus/Restrict.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a3d3898595bbd8173b96a01a9263def" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/DefaultI.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e00f1d6b8387ef9d39e689205d2d6d6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Exclusio.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f866b4cb7bdf4806fd47337785b0b9ab" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Inclusio.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ab9329c2fbc400685cab1d9bfc1ae6f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/LimitedU.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "33c4858922fdd78c7372966269b6d308" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/NotChara.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "00bcc8988d7fe1d0f91b86823ba1f31b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/NotNFKC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2aafedb5013ea0787b4023b5fd8b19e0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/NotXID.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ce12999d73bef2d1e61dd812f4ed6dd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Obsolete.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8135b361042a098362aefc3a8791db29" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Recommen.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc3467dc9c923215c97a7ff62f6a5bd4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Technica.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb037166dce2992195f1afe41bfce112" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Uncommon.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "81180dd4fa3bd51e1467d486cd12fbee" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ideo/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e673b9a0cf625dbf776f46a61c656ddb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/10_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "be33cc8782c1380dd8a01e6ee6de07b1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/11_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0f865a6010f7d75b89de1ccc9401ad4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/12_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "64ff867f63c25c0dea9c19f78beac4a7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/12_1.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a636ce62fcd07cc72c8b1cf14479a30" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/13_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9172aae137fd905faa1d21c6187283cb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/14_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f61f02e666f0b90601f3e42d5a8e5281" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab8d55a52fc68150de0e03a958406a26" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_1.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e269447f36e7e959a64e147af09b7ef" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c75f97961a076ea4f7ac311674b60bd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_1.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee63528087432acadbaa4fdf1c3f2783" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f738e6c23ec2bf29be3a81e4bc11105" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "83912f991009aa542894bc79d117b032" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_1.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d9ddcf4820e240d8c1134f1488fe339a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f5604e07d79399d9efa01a85784a27b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_1.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b0666b08973badff1e6e9e75d44e583" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b01d116770e990bb4d05355d4fca7a8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8eaa0efe0650c53e7abe9180fad3dad" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_1.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a861d7ddcad8f17f8c7da9b323e287c5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f1131efdb85e04cd23f34fed9438ba9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_3.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc9ad02c652e8b9d062cc67d26e6b94e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/7_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "57cff5d9d3afc5b33727e66d18167b52" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/8_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "98fdcfdf8f6a2655615a7729ac557e29" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/9_0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3189c2c7fb10ad1a5b347b4f96add04c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Bottom.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1aa080337c9027e5a55b196fff3c3153" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/BottomAn.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3275385df55eb5e18b81b9036c019ad0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Left.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "36407f998958203ad4bd8fb7ccc0110d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/LeftAndR.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a6973ddf3108475fac5ca968b4b3cb8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/NA.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "dca616f35fbbd5db079a405bfdc1dc5e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Overstru.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ae6f7cc44b8502334e3aebab9214c110" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Right.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "48a5f821397f275626df6aeb3fe2c472" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Top.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8ab07cf20f686257fff48ec6196734f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndBo.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "910fa4753400bf479226c6288e44f70f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndL2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "342fe83ca7187f776e7cf8a2b15e3c55" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndLe.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a4af465ed8995a844e494a066080f23a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndRi.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "64afbd81c3dcef3f2c93bc0075ed20c9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/VisualOr.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "066b8a3485280e666e729ec2cf1dfcf9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Avagraha.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b10b635a498c75a3e189d7f9a4005ccd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Bindu.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf745c543ebeb986c3938b68ce2e6b6c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Cantilla.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7c6d9fade5d0c7804a227f1f926b370" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5cb739853c518d699e81b3a334bb605" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona3.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f7823b13576d7ea21eaaccb28459f17" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona4.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3631a828cbef67ccf636b8b9e939f78f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona5.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a8f731776b6dc57b9795917493f3986" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona6.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0be57cdf27bf850968d7d29ed95ebee6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona7.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "42b99deb91d4a2351f7b2df127f82e18" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona8.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7ccf4d57cefad1b228e9ff5e3a51fad" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consonan.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0acfb15426be3039c1863a32a9d480ce" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Invisibl.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4bb5ad911e0e784b418e6e2436c38f61" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Nukta.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf2f1304d6dc10a8fc3d38a1816742ba" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Number.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c24cbd398d9732b0b29f287f5ecd0d51" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Other.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b868d31cb56b37d67bfeecdd69df1c4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/PureKill.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb754134a8e02af701e6f98099429de5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Syllable.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d6ec2fa57efd1e132e7e16aeb83474b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/ToneMark.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d72bb694c0d02fb39fafa9aa422a14c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Virama.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2ea9a607890c136d3d45fba6157bfab" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Visarga.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "548e09e9e2e2fe43d00a10c2ee0153c1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Vowel.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "bdb41b38063480becf8a6fb67fd27f32" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelDep.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d6ad3b5042a9b3bc66dd9d194e3116b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelInd.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "795acf1ddd75c227e97599ced6faab1d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Ain.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "59807945806f2791ff23f17f0b1f41fa" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Alef.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c4dd9b540f171659a966d79e2f275b7c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Beh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d9388fa4b6687de2a5ceb2d2eb047aa" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Dal.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a4f80493711714786552f1389295faa" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/FarsiYeh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d73bbfd0310630718e4d5b9619b00eaf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Feh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "227e4589b1ee863bc2af998b7426556d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Gaf.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "78f24501dc3a87054f5a0802dc4a6bee" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Hah.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ce73efef75fc55972c868fcaf818de3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/HanifiRo.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b882c5c92697f2d8912ae129e11a8f9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Kaf.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "997acb8e0dfc7da96bd077db23fad9e9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Lam.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4509860a56458ba08a9daa49db9c3d98" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/NoJoinin.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "de5acb16e1f88263f8dfb09d60caf6e2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Noon.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b292dbe3941631bb69722aa7cf1e0115" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Qaf.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1599cb05aa67dce52d99e260112db612" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Reh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e2f937d2d119b6d5c8ddcf17b10ddfd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Sad.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5daf80582565c2dce4a3300ad25c69a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Seen.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "116fc2d051bd40643f8a8258e0ef2910" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Tah.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ff3d3a3b553106c5df87aab26d59c87" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Waw.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7f9428dd05674e5a5bc06bc29b3a8f7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Yeh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb209d5f0476061dddcfc6135ec2b50b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/C.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8cde4f19afb3a42d986a4a666060367f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/D.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "da5f82e34bc25fd2dd17b0a76d7c71ec" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/L.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "edcca285e6545a9539dce9d7f4faf492" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/R.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc28b7d3141e4b07eced504066d78c5f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/T.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd849b6c7003c766ed426f0bb0853c4b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/U.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e6c183037ad6fb2316af7bd3244956b7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AI.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "09c071306aa60ef0b7958ac1581eed7c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AL.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "79bf77ce25b48baccb9d34453c5751b2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BA.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "baf3c3ae828ea5d6173b54de1c94212a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BB.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5fb260b25ee7073946e87826aae3b39e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CJ.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "70b852c110f387c5cb27cc7e57e265ef" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CL.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f156bd10b4b12d7651e2535531d1a521" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CM.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "27bf6caeb4e68a460d624a187eb5c259" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/EX.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "be535770516aa998967a884e5cae151f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/GL.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "34e3f91156a5f9be4eba494b94960c5c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/ID.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7bc054a49bcd9c746b49024ee9bf145b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IN.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "42206e443ee601778280787be48e0e4d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IS.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc09d015165316131f25a478a01759e9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/NS.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2409c1b85223a500829a9f3abd64cf18" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/NU.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c397d09628039cf8d7dd10e907057beb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/OP.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "76f4b53c2a1211689cf7e3afafe4b9ff" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PO.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "19a5ae11eccdd63e16de5324b513628a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PR.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "89eb6bb73d94d8b1cfc2ecbb81591834" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/QU.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c3e52602302521404b1f1b7d79d3efae" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/SA.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "65561fcf595c423e07f2f1d8d6428743" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/XX.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2887dd4d59dc04e7f42ee2f35553ff5a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lower/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "197ffd01a7339119ee9ae4790c04064d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Math/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "72ae87afc5cb7d94f3e58b2219cbdcf9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/M.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "15515b2c7b1513e6c94b66480ac7220b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e4e0ba52842cd875490e835f3d9b6901" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/N.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "54865350217f6ea1c68011fe835a90f3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "62211d67300afbd82deafaa4af404b52" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/N.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d4777acb5bcfbe1dfcf306dc0e1edd9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8c5945da34c36b014b220becdf90b6c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/N.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2887636054b7c04682c1eee2a27255f2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c371314bb96a2ff0245dc6ffce442482" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Di.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4e0c4fcdffe437c06ac628406fac3df" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/None.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a8f3e4657813c8e0d41726ce84217b5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Nu.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "75b3a83f5f7967c3c204f356a7411016" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/0.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f784396c25aade06d4b36ec4951d0b1e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9236f96f4132f00e97906a81e8a4d7db" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "072b65bff9eb7b14d82ebfbffb40b32a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/100.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3964499f97aeadcfb8134548207f25c9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "27c766560bff2d87638a0706e4751565" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "face8d178841e8c7426745738cdee36d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/100000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "cefac0f33d5ef1383b9e40cc2eb608fe" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/11.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f36fe68e2f5f8947041ce68b5c2386a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/12.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e9bd8c44e868f72c37477962b52c0ce0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/13.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "69d6eb1c4ea284705b11c4b4f5148850" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/14.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "85d0d539c01d19218578177fbb4de0b5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/15.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "963b776050a0f057b26ffb029e8ec986" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/16.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec4e973b53eec47737b42a0380b57433" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/17.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a3e44945a58073cff84a83e41fc3030" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/18.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2eaae2ba06ffa7364e95bffb11a618a6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/19.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "31cc59667a5504129f1e04efbfa8de67" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_16.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9c910eb2ee429fd5c10269658871ac0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "83668f7247cb9d6c65b3da13ef3ba5c3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_3.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "63f760312124064936bd34b783cf5df9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_4.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "79b4fe4ffd7ecb035eee37f1348134b6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_6.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ec7818dc5a470dd5ca6969e9daf3ebb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_8.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d196d2c04d15fe7bebc0484b8ccd001d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb6e2bd97b7442402501f8f77f139ad8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/20.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "280fb3618b44d98fef89773c1e518d31" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/200.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b729502d65314309f0d1251b1c387c83" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "455ca2b802567f8f1a280fb20054900a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/20000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d970d537f1f1959e2a0cd44fe2b15da4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2_3.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c9d23cd59979c0b46ad73fadc9c48d5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6f39f3bcbed27244aa38c52de8bdd94" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/30.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b46fc8a24eb183a655ec79b0e8a18e4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/300.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d4a956cde030bf0c978aa3a89a0a1ae" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2df3a7c9fa726a39db6ec472b4087523" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/30000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d4e611685a8b45a93ac68759eb1aec6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_16.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ffde84e03e5c2c68895997788afa76b1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_4.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "94129a1f0f8ea672bce3dc9497f346bd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/4.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "36d38f2fe6f872206a4072214f7e49bb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/40.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "21f68330e8e5570024552ee4a1159ec7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/400.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c206f35be95889fcef82bb0c595871e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/4000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa2dc273196f4f672a7369277ad3221b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/40000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d82b1d1a18c00abaf0907ef40b0bbe0a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8ed3e780dd5121f439849d663811e4d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "53c43738ffb74e38ec97bb0f0aea3052" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/500.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "198684653e4ecacb9c767624a9426b7b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ccdcef50c44c0c64e27c54c5d25c99c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "32208d5f51a85de8951a71812eff6e23" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/6.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "689aff09466b9255bbc1d6ea422c44c6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/60.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "15d1a1558221f9052dbf079ca16e3489" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/600.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "62fdafeb543d1de8ee5f559e92294c24" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/6000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4c3926bc18480e4a1f561d58efc1abc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/60000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7600cdd15bac8d995f3716e7e8f7a54" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/7.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3218caea4c51c0fe457275539c11569" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/70.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1fd2d3ae57d2457a1a0e9004f0dbdc93" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/700.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1440e0424f3983dc91d6a0d06b3c98a7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/7000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a6c544a968534cf319a96080f563df0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/70000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e81cfc599749ca6b22283b8bb1fbda0b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/8.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e0a56a2c5c3b21c8babd7aaca77170f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/80.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "491f3564bd5a60e3480919eac910033c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/800.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f1ebbaef842112960fb459432628af3a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/8000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f41127ecd820e34a1129be93b5f2e526" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/80000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "df33e3a23c635d3355d682dd7017db64" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/9.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "45d1af840e81ba0a5fec1015e1e75772" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/90.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "64ce90cffab78013c6825d5ca9000990" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/900.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5d8dc2d2ffacbb8f0b73c5416102621" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/9000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "889502f24c54a44e7d29640f0d1aabb1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/90000.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea1c97cebff89ba340eca3c7ac5fe0e1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PCM/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2850c8366cb6549a0cd5f1a39d43ec9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PatSyn/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "340bca6e1fbc96872d858f6f1221379f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Alnum.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "94af9175fbe20f45407b8f975a7a5857" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Assigned.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9861a1e27395aa64ab7906df62c30063" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Blank.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a2c1e8732c8fd0184af4ea7a24ba22c7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Graph.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1dfd7ea935ee7ac4c367d64caa75659" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PerlWord.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "53957cd363b9c7ef335f526777d0f2f1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PosixPun.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "828aecb95be4f1117cd17f07dfd688d8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Print.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6627e41bc7c4865db3a27a0474683ca8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/SpacePer.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "39c69ed0d37033227f70558ff8942d71" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Title.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2da052bbe35fc20307524d9bb3b4af71" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Word.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e5108969c316963e61a9af80080ee46" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/XPosixPu.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "569647b70e0b950c9222f74de83deb57" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlAny.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b61abb442fd0589d1ad5118b1b95e21" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCh2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5a13732deae1798664d3562fe092a13" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCha.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a6101fa136b2d56d1744c709d007e1b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlFol.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9102284b4c0bec23202262e5e786b008" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b4fd59b6e56ac9ce158550fccca501f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDS.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "96b28bb87879914d9170a9049323bdcd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIsI.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f794530fb78f7a1da2a165ef12d4ce3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlNch.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa6dcbcf01566e7fb1020fefe7e3e4d0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPat.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7fc891662973b20468ee517eb57deed0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPr2.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e03e0b9e5fb93532f6d3948b1d371c5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPro.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "59afe0e8395673f17f667027ec594776" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlQuo.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "54f710e394024dc5ee42864615b0b3e2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/QMark/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "782085f60353504553446c33b70fa2e7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/AT.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d45cc5f315c7a6fef93f37d150b1bff" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/CL.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "180f18b24a5247f0a4424885d85d4f4f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/EX.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e3a4c5f59e9ce6c987a83cbe6d65795" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/FO.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a6eb7de30b3764f8eb336f6b3e13236" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LE.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed0634ebf689a8b40e5caa5c348a828f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LO.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8baebd43b9217f59ee7b4d001428701e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/NU.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b20c9b00cf7ef7b0a28e1c16d858de61" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/SC.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6eaf2fffab288c3e9a626141e1dab14d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/ST.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e42ee011e322baecee4b39efaa81675" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/Sp.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f32f8afe2e859c54f3a9a762b309524f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/UP.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5d2b80a4730a0849217a44b27d8fd55b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/XX.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "998e4eea0d5768f7d7320e2d551adeeb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SD/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "77d1e03a7619d64a1e2139b529b0daa2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/STerm/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6444b70336997bae3e193ef7d1b0019c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Arab.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c1ac40f3f450e323c524a3130e9b86f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Beng.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "51ff02010acea33e95f1e4efc3a46c82" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cprt.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f81e1b8998f4d9d4d7dfecb0c81691a2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cyrl.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "00e3c4c42738b324912273e27ecff30d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Deva.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "89145867cedf5f4502ffab6109aedd0d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Dupl.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c5bdb71ef7a34b27bcd0f81c58b65fb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Geor.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "25a8c28e0124f6f5780e1704740806ee" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Glag.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b5ce0a9397e7a985c54cff766e9c4815" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gong.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "06dc66f838f8b837133850625a249e08" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gonm.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "865a04797d3dd8bdebaecc9b7030df95" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gran.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "38b924bcf920725acd94e01245b3584b" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Grek.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1a1be4a07cce16996d05b2b452fe43e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gujr.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e63545a4bb80f1819d95ad8cdded7b0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Guru.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a145fa693cb45a131ee0c9b1f667b262" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Han.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2967a14adac574e2fa19ac91b3ab5d20" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hang.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2f06cf148b85e027122f3c4b4c3acacc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hira.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "67d94fe434df529b2dc74ce9ea13fb38" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Kana.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5312e88f0dde2a106e8cf426eaf90bc5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Knda.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c7ddad3ba08eace474e6148fa11dd3e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Latn.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "83a9d5c19c2220b58133311cc3a70c9d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Limb.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "88ce4377542dca2fab2227b5d5c0009a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Linb.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f34a1d6e241c5cef890a5af4f80f4b6f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mlym.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "286d00cd2a09f7fad0f698a1b6f3f137" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mong.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "86e73ba44ab0544b5029f5d26925e5d9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mult.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9db7d3ef014cc43b4505ae2ff521d162" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Orya.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "722b8cf1b4bc5852ce1f8ad2586a353f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Sinh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ea19b621f583a8fa73918da93283ecd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Syrc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e9786324d0d85c105d6b0a2bcfe16d8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Taml.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "dbf4c4f954a4565bcb85322454114b18" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Telu.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f59d462f92fd7b5691663dcbe7f563a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zinh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b8df3d5778e063fee18f4d31e263f28" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zyyy.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "32718c6471af46452b8807a37782f046" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Adlm.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b48f0457c1b6c67e360ea96a95cd61f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Arab.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f34b7ad7707233e9819b720b264d44d2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Armn.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "df05f94c80e99ad60e377f89a1a516d6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Beng.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4417fcba84bb803fd3ab83cad1c43a4f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bhks.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f8ad5ef5151326e194d1a4fe2bf079e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bopo.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "77b175d5593ed17bc2778131a39a23dd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cakm.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "60de47a4dab379962f94e311009cf5c5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cham.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d89385fa784e6538be268ed38ed49eb" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Copt.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "13f28cbdd3d964efa8b44bac11d0573d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cprt.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b67de1c2c214ad5a24819247d24f408" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cyrl.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8492112ebee754bea0df8d6743aad69" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Deva.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6187ee6459c246c34cdba36245b836d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Diak.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "877a1493e844426c6e0677882e4e9ee5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Dupl.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "68768f7983c961e058d7a740f8def902" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Ethi.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0aac382c2bb36acd5d89cf1d6339e374" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Geor.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b067b8fe21c31c5acce6ed2641cfd5b3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Glag.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "43fb86d8ba923898ae075aa8c4f7a553" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gong.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5719da6ac9ae155cb239b80021a98288" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gonm.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2d47c43aaf5a774a39570de2693b4ca" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gran.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "15c709d495db071f7958fe654ed57cd3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Grek.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9fe216fe4bc45a0e530bdca26b868843" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gujr.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "920bf6ce83af2507c2c0ec7142c31bcf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Guru.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d4edc908d27e669f9d8c95e3abfb3a2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Han.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b9b8cc5d8b22692d2dca778c60ea025" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hang.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6710be058b96636904b087ad92ec8ef8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hebr.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "33ee16d96c3178041726a9d9afb02864" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hira.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "72579f6017364f343f8815a7dc3b3505" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hmng.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "25de15e711bc06b9d85c03343e789ef4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hmnp.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd79214ca4b2b4dd8bb5b45f761564c1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Kana.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbdb6fb5ca57fb2ed6543e7ad5f03fb3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khar.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ce35b284d8bd650091329ea7fd2089f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khmr.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b04eb911ec859d38b2589278c4acfac2" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khoj.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "da031e5ef36b65c299c829b8e45a276f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Knda.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b38f492e1526f44e84406fdd7b64d21" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Kthi.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5d2eecc89e40f519e98d3f24d9b7f51d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lana.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf360588dc85a0e2bf2e75ef740b083d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lao.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f2f95ffbfbf41303c3bb9ead088c99e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Latn.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "85775e23648cd79a745949df2b8873fe" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Limb.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f92af1719cf362d9ce4b2a59af45c9d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lina.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b4c354d4f39c41160950b88b2280b7b7" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Linb.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "36b0bd11ba0ac9fc49e1260423c4f4b8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mlym.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "365ac15d2c90d6c3488ece63d8560de9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mong.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "718ca024922e241443e3570b93569a33" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mult.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b4fe8d419945d5c559473787618276c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mymr.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7ccf57d5a5587e1ad5c12108a7077d12" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Nand.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a0d20e704e11d8d300155cc1e976166" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Nko.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "90e9440cb7e0ae56f3a53cfd1796a607" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Orya.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c2e9c5ebf5c4985bb2cec1483c8cccf" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Phlp.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2cdcb1e66750df8430c7efc4bb69198d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Rohg.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ec4789e64dbd502374c72602c3477f8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Shrd.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec6bb9a9f4aa101f55cd98b792fbdbd5" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sind.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "85bbe2a4754e22bbb0e6ad495389813d" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sinh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "14d229bb8c04584d946f732baea37828" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Syrc.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "95ed5e9fc759397a1e0d237cffdbea64" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tagb.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "6aa6fed586f06503136023745169b719" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Takr.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "aea707fff911780abd2fd8c5a58dcf60" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Talu.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "124cb2c41668e9e0133e6dee44f282f3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Taml.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "426bee22a5133aaef777534374b86c75" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tang.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4aa44614c3dbe239a15ecf0d76b0d47" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Telu.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "100396d1e7d01a129b1ae8fe2a117802" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Thaa.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "464f226861b2582325bdabeac35bd202" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tibt.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7000a801e390ca2c121910de023160b8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tirh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "daf984b43132aabf28433f5796de9658" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Vith.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0ee6da1777ba8d95e02bbc86691c0c3" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Xsux.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ec53e701c188ce13dde3d8616bf4d64" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Yezi.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c6478d70a8de8b8d2a6c3bcdb9de563" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Yi.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d6e82be41156a05cd7d93d373762ee7f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zinh.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ddf6ac1d7aaed6f560df37ca9720853e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zyyy.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "cca666a6eac8dc8b29a544ffb2ca390a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zzzz.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ef8650c8ffb2d2602ba871cd0b3fbc4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Term/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "25411d2cc179a21b0475b01673e78fb4" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/UIdeo/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2c1d4978ab34bb6977e05bf1fe657e0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Upper/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad7afb65a479ca5a57d106aff2e953b1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/VS/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "19e8d5226d7d98c2706c0e9d46bf3f7a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/R.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "729f66bc205894ccce7bdb5bdae6c336" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tr.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "41b211a2b085b749f8b39010377eb4c0" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tu.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "93333ea25cb42d2ddd6ea1f17a87ea6f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/U.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8bec2854e418868f03e60c199c86b3f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/EX.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7ae4765c009f5e88c12adf02de206e9" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/Extend.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc90421a264bf0eac3c71b1f0fd1d66c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/FO.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "cd3416b5b784fef081edad238cfc1588" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/HL.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba9e35f3ce6181f4a440828284b193cc" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/KA.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a057f0fcbdf49605f9d6d67cc55fed8" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/LE.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5e2f4a4e1c6bfd5fc8904d852a14ab9f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MB.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb6a9d82c1a54db016d48cedb2b44b7c" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/ML.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "861a21477eadb7bce6b6668c9e0d7503" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MN.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "d44b8981141720e507691c7e066ef22e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/NU.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b46fdc1088bca54d4287d3eeb70bd23" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/WSegSpac.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5701f4cb85b1608b834b43c994a175a" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/XX.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9b93164dae9fe759539c156d9c9feb1" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDC/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b7a57e1db8042334b5897e00278e62e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDS/Y.pl" - }, - { - "digest": { - "algorithm": "md5", - "value": "7137f5cf3e33717af3183a2368a70f0e" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/utf8.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b1646d3ab0c2098d26ba337a18b3dd6" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/vars.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "594ae28b4c1f860614e8afd2125ca16f" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/warnings.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "9cfea2f84c7828e690a34518433fecfd" - }, - "isConfigFile": false, - "path": "/usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pm" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d44a23e9be11e131cda51a7935f60de" - }, - "isConfigFile": false, - "path": "/usr/share/doc/perl-base/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "19a6507316c97844e72fd52ccf09528d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/perl-base/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6e6230d8bb048b42737a17e7c2484492" - }, - "isConfigFile": false, - "path": "/usr/share/doc/perl-base/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "38dff034a75160b17307fea55dc9b2e2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/perl/AUTHORS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a16edf3b24cb82bf997f1d29b610ee6d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/perl/Documentation" - }, - { - "digest": { - "algorithm": "md5", - "value": "c28e6448e061902d8e58dea28ba519d7" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/perl-base" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d0a86dbee6a7075672372e873949bd5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/perl.1.gz" - } - ], - "installedSize": 7638, - "maintainer": "Niko Tyni \u003cntyni@debian.org\u003e", - "package": "perl-base", - "preDepends": [ - "libc6 (\u003e= 2.35)", - "libcrypt1 (\u003e= 1:4.1.0)", - "dpkg (\u003e= 1.17.17)" - ], - "provides": [ - "libfile-path-perl (= 2.18)", - "libfile-temp-perl (= 0.2311)", - "libio-socket-ip-perl (= 0.41)", - "libscalar-list-utils-perl (= 1:1.62)", - "libsocket-perl (= 2.033)", - "libxsloader-perl (= 0.31)", - "perlapi-5.36.0" - ], - "source": "perl", - "sourceVersion": "", - "version": "5.36.0-7+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "perl-base", - "purl": "pkg:deb/debian/perl-base@5.36.0-7+deb12u1?arch=amd64\u0026upstream=perl\u0026distro=debian-12", - "type": "deb", - "version": "5.36.0-7+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:sed:sed:4.9-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2bb2758387094841", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - ], - "spdxExpression": "BSD-4-Clause-UC", - "type": "declared", - "urls": [], - "value": "BSD-4-clause-UC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - ], - "spdxExpression": "BSL-1.0", - "type": "declared", - "urls": [], - "value": "BSL-1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - ], - "spdxExpression": "GFDL-1.3-only", - "type": "declared", - "urls": [], - "value": "GFDL-1.3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "GFDL-NIV-1.3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - ], - "spdxExpression": "ISC", - "type": "declared", - "urls": [], - "value": "ISC" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - ], - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "value": "X11" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "pcre" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/sed/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/sed.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/sed.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "d906d3cbe97d5cd7594e77c09dbc5286" - }, - "isConfigFile": false, - "path": "/bin/sed" - }, - { - "digest": { - "algorithm": "md5", - "value": "952dca4356e3ed648c4d64ccd92c5956" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e3af9bec58c1601710e892535c92230" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/BUGS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2a2ee8599733f43e5c9fd8beebb62194" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e9ea11519bebc9369c326e703adc9ae" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/README" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a780d3b647d2596a48d23179f38b481" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/THANKS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5549fdde8e806cc61e649afc560db927" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "77eeda047206461393f7434bcd303eec" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6808fcdfb23022a3c2b0be562f83a102" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "dad8b4da08a3d734dbc9b744c8ab8bbc" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/examples/dc.sed" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e753d955c8f80d439f508a42f2df6af" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sed/sedfaq.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "790f02dca3f09f0d7d2476c72d5aab79" - }, - "isConfigFile": false, - "path": "/usr/share/info/sed.info.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a64e65e0fa3bcb3714ce75ebc75600a0" - }, - "isConfigFile": false, - "path": "/usr/share/locale/af/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2fc367cfaaa78afaef708407a0e823f1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ast/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5c0640a8e4011f7df6209f5fee455115" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b17ab724d8d6faea1ec2db1bfa05928" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8528d4a84c44799ac394c0bda8ce1a81" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e105d3d7a7c42f34cbde940c2d0515f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "349cec43bd68edddc60b528c7bb00de7" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "daddced87bf5daba8a8e535c489c79f9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "dbab0866a09a2dbed6bb70bda12ea351" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6e39bfaae90d0ad2b7ad43f40fb540ed" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "10d273a47e6e3c4b23d7aede3b6a4489" - }, - "isConfigFile": false, - "path": "/usr/share/locale/et/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d0731ada2381e5e02593e5d5b5dfed8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "657ced83ac69e8db300e6956c44bac94" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f0615952505cc94edbaef8689405cd94" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "56bded8ea83ea71ffbc1e3f70f75a353" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ga/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cfe4c8faf75384db74ce9af8b5a7ba5a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e86848508fb813c893465ec9fbf5ee9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/he/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c49c099a80c2bd2e7b0147046addad9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "dad6872f03cc83a0c1ba5f97fe9d8ddb" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d78124e2c304ea5aaa77cd33aef0f1a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a9df546bcc5fc87d943c85f6bb37120" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d851b5c4316d537fb840f387fbbb0705" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d19ad8959fbb1f5fa7da404385e7af4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ka/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b548c66668942a4e25ab1bfa4f0513e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a96cf98bd416ab0abb62a2217995c9f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3af3211fbdf5b126bf35e78784d8550" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa845daa58ed18094a0602e8bd20174a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e343ccb2000356dd58231ee7d8d0b83d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "27fd70876a170ce781e4093f08e78ba9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "19046667b87cddb9287c8a8024f4320e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "3fc48b072a1503d16c450a62d6d52c77" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "be10fbc469742739deaca45615ab3466" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac820ea177fade7147e53742717c4068" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8309a2c2c2f8362ce922515e4352c250" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef4e80a10800e4f12bad0d91c679dcd6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "777fc5cf41a20870ce2b48dfe67e11b4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e433642ba04f5cb6fc96e6b6e3c2d7d3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8240baa2037655ac8c47aeb426c974e9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8006ec1f96bb62aae4996c3316241d25" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0d5de277c16487a88ff84e3855550cc" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/sed.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b53995229f67654e61c92329e5d51b26" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/sed.1.gz" - } - ], - "installedSize": 987, - "maintainer": "Clint Adams \u003cclint@debian.org\u003e", - "package": "sed", - "preDepends": [ - "libacl1 (\u003e= 2.2.23)", - "libc6 (\u003e= 2.34)", - "libselinux1 (\u003e= 3.1~)" - ], - "source": "", - "sourceVersion": "", - "version": "4.9-1" - }, - "metadataType": "dpkg-db-entry", - "name": "sed", - "purl": "pkg:deb/debian/sed@4.9-1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "4.9-1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:sysvinit-utils:sysvinit-utils:3.06-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:sysvinit-utils:sysvinit_utils:3.06-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:sysvinit_utils:sysvinit-utils:3.06-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:sysvinit_utils:sysvinit_utils:3.06-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:sysvinit:sysvinit-utils:3.06-4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:sysvinit:sysvinit_utils:3.06-4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "78dc4e9a34d47de7", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/sysvinit-utils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sysvinit-utils/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sysvinit-utils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sysvinit-utils/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2.0" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sysvinit-utils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sysvinit-utils/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2.0+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sysvinit-utils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sysvinit-utils/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/sysvinit-utils/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sysvinit-utils/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3.0" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/sysvinit-utils/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sysvinit-utils/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/sysvinit-utils.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/sysvinit-utils.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "0d2334aa0b8d16ac1a33b81b9bc6206e" - }, - "isConfigFile": false, - "path": "/lib/init/init-d-script" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8fb1c90e996b6cfec5850bf67c3d534" - }, - "isConfigFile": false, - "path": "/lib/init/vars.sh" - }, - { - "digest": { - "algorithm": "md5", - "value": "f0043a167ab491514409f4bb23f6ed09" - }, - "isConfigFile": false, - "path": "/lib/lsb/init-functions" - }, - { - "digest": { - "algorithm": "md5", - "value": "24738f9ca3c0f4411c9cc435c3eb8a41" - }, - "isConfigFile": false, - "path": "/lib/lsb/init-functions.d/00-verbose" - }, - { - "digest": { - "algorithm": "md5", - "value": "b66a19f977faff5b98135b801318250c" - }, - "isConfigFile": false, - "path": "/sbin/fstab-decode" - }, - { - "digest": { - "algorithm": "md5", - "value": "c497204c45cc9538f3042c7e3f51e7ec" - }, - "isConfigFile": false, - "path": "/sbin/killall5" - }, - { - "digest": { - "algorithm": "md5", - "value": "80235bf94e32af64770c831bff5a8e47" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sysvinit-utils/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "7eeaa29410cbe0201bccc903752de7f2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/sysvinit-utils/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "b77e6d8ced85f220ea843051d061eb5e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/init-d-script.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "506a020c217ff7cce8c60320b8e2e866" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/fstab-decode.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "33d3b5c4872161e8363887de5de0cca0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/killall5.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d786b7d8a5e3e416309a7b87e710ff4f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pidof.8.gz" - } - ], - "installedSize": 100, - "maintainer": "Debian sysvinit maintainers \u003cdebian-init-diversity@chiark.greenend.org.uk\u003e", - "package": "sysvinit-utils", - "provides": [ - "lsb-base (= 11.1.0)" - ], - "source": "sysvinit", - "sourceVersion": "", - "version": "3.06-4" - }, - "metadataType": "dpkg-db-entry", - "name": "sysvinit-utils", - "purl": "pkg:deb/debian/sysvinit-utils@3.06-4?arch=amd64\u0026upstream=sysvinit\u0026distro=debian-12", - "type": "deb", - "version": "3.06-4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:tar:tar:1.34\\+dfsg-1.2\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "9f97ab08691b54d2", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/tar/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tar/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/tar/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tar/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/tar/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tar/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/tar/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tar/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/tar/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tar/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/tar/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tar/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/tar/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tar/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/tar.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/tar.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "7a4d13195ae7bde45d951cf77ec6600e" - }, - "isConfigFile": false, - "path": "/bin/tar" - }, - { - "digest": { - "algorithm": "md5", - "value": "5bf0e62990e0b668830ceb2c8615b497" - }, - "isConfigFile": false, - "path": "/usr/lib/mime/packages/tar" - }, - { - "digest": { - "algorithm": "md5", - "value": "10292b41b7acdcecfcf67dcccbb98d70" - }, - "isConfigFile": false, - "path": "/usr/sbin/rmt-tar" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd2fab77cf4da2288c11a4de2c0c7fe0" - }, - "isConfigFile": false, - "path": "/usr/sbin/tarcat" - }, - { - "digest": { - "algorithm": "md5", - "value": "020511595e8fb6a77b29032b3ec4ab10" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tar/AUTHORS" - }, - { - "digest": { - "algorithm": "md5", - "value": "98a6d4d8bdc2d1a6c18a387e91462741" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tar/NEWS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "882d20d9ef9c5baf1557a921bb9c6251" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tar/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "63b372367a085f8d07c4127828c56999" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tar/THANKS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e91677cf42cd8b7e29cb4f6513b973ff" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tar/changelog.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5e69ef7777e098f4e63b7986a2a383a7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tar/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e2f4d615163847fe61d55fcff8237f00" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tar/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "62ffc2cbe3ce545c87fbb1d1115d0120" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tar/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "7096f0c9f065cf38452aeb1ea1063292" - }, - "isConfigFile": false, - "path": "/usr/share/locale/bg/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fcc04bfefdeb631204b1b984782e9d2" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ca/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebb3049d9ba29c4db969be6fa5b6aeae" - }, - "isConfigFile": false, - "path": "/usr/share/locale/cs/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b89ea521cf0ea7e3a4c1ca83e3672154" - }, - "isConfigFile": false, - "path": "/usr/share/locale/da/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6fd3c921a9c4b80b032166943a04b3de" - }, - "isConfigFile": false, - "path": "/usr/share/locale/de/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "38adcaf1fbf77e514039b734423c6844" - }, - "isConfigFile": false, - "path": "/usr/share/locale/el/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "aab09e76521fb303fc1f655f0669a7e9" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eo/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0c544a6fff812f1b0115592b6111c8f" - }, - "isConfigFile": false, - "path": "/usr/share/locale/es/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7edbf2e979e4769d87e22223129177f1" - }, - "isConfigFile": false, - "path": "/usr/share/locale/et/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "d433905531342578bbd6358aa2f9cb1e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/eu/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5f6b1ceccf34730823c868533854ebc" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fi/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e40fce875d27ed302e29c48a6d26e2f8" - }, - "isConfigFile": false, - "path": "/usr/share/locale/fr/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc5afb7e45c3f4c5f2d60fc1984cc65a" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ga/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f8052e97ba8aad1ec1c2ae9a195da19" - }, - "isConfigFile": false, - "path": "/usr/share/locale/gl/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1358349e0826b1e2b367c5a5fe119c84" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hr/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "26266ec01831a990952f2e3b47d66201" - }, - "isConfigFile": false, - "path": "/usr/share/locale/hu/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "28b4358b3a83801e7ddfb56ee62197b6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/id/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "96b213e93bbff5039b990579072caca3" - }, - "isConfigFile": false, - "path": "/usr/share/locale/it/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "22ea9f6a03b8cb0a3a3d74ac69c32119" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ja/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "306adeb91cbdfcbc124b1a9a1e532602" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ko/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1edc8235dafb13a847f5e4964ca45d49" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ky/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "45c2f42aec4d730f984a377c7d4997bc" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ms/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "42c9744fc4763c8fc5775b8cc4d22acf" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nb/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "036a1cfb17c2678faa059cee618edefd" - }, - "isConfigFile": false, - "path": "/usr/share/locale/nl/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce3cdc50c56b089c7e0c07dc8c1a7d30" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pl/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c089c2ed04204e377b98695f609ad98e" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "26656e3116232494b42fb190edd18bd6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d79d69f0f66b64d8674c7f15672867d" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ro/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "87b7980f0269f263ec3fe948d397fbd5" - }, - "isConfigFile": false, - "path": "/usr/share/locale/ru/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1169e47da1a32adb368827bfddc1a534" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sk/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8710728eb5735a6104c6715f2cd9024c" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sl/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b835f604fe9c732f7368fc735db64245" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sr/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "105804c91830d891279f8a0db0946065" - }, - "isConfigFile": false, - "path": "/usr/share/locale/sv/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe2ef4052649e5a27770752032697c81" - }, - "isConfigFile": false, - "path": "/usr/share/locale/tr/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "37250e3f6f896e88fd2bcc9602f6e030" - }, - "isConfigFile": false, - "path": "/usr/share/locale/uk/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "591666b87a5b1bfa8b054eb335683bb4" - }, - "isConfigFile": false, - "path": "/usr/share/locale/vi/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb82725eff17724818b6924ea5b9c7f6" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "34cdf4434b50a1582d77371a2b8f183b" - }, - "isConfigFile": false, - "path": "/usr/share/locale/zh_TW/LC_MESSAGES/tar.mo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ad9f288df763026efbb7ea0ae87e4d4" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tar.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9376d82eb54e507863d32114dddd3de6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/tarcat.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6320008cbe1d3eebd749dfe3e0e47fd4" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/rmt-tar.8.gz" - } - ], - "installedSize": 3144, - "maintainer": "Janos Lenart \u003cocsi@debian.org\u003e", - "package": "tar", - "preDepends": [ - "libacl1 (\u003e= 2.2.23)", - "libc6 (\u003e= 2.34)", - "libselinux1 (\u003e= 3.1~)" - ], - "source": "", - "sourceVersion": "", - "version": "1.34+dfsg-1.2+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "tar", - "purl": "pkg:deb/debian/tar@1.34+dfsg-1.2+deb12u1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "1.34+dfsg-1.2+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:tzdata:tzdata:2024a-0\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "badec4cf98cb9851", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/tzdata/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tzdata/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/tzdata/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tzdata/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/tzdata.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/tzdata.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "depends": [ - "debconf (\u003e= 0.5) | debconf-2.0" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "5461b4c9623a1657baf85fbc0c8576b6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tzdata/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "5fbda5f123f2c0dc31bb9609721d8c13" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tzdata/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d00a3476c68bbef5492f01b2dded1aae" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tzdata/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c5496d68e312e8790956c352a9b181d" - }, - "isConfigFile": false, - "path": "/usr/share/doc/tzdata/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b814b499e09a37e401d780a42f76a1e" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/tzdata" - }, - { - "digest": { - "algorithm": "md5", - "value": "09a9397080948b96d97819d636775e33" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Abidjan" - }, - { - "digest": { - "algorithm": "md5", - "value": "20a42b4ccb99573c8a2bcc3bcfd45221" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Accra" - }, - { - "digest": { - "algorithm": "md5", - "value": "49af660dc6bdff3bd09432a65f6e916d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Addis_Ababa" - }, - { - "digest": { - "algorithm": "md5", - "value": "02fd02222ebd0692f89054184ff65b1b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Algiers" - }, - { - "digest": { - "algorithm": "md5", - "value": "c3dfe465668778dbdef4d6dd1bf039fe" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Asmara" - }, - { - "digest": { - "algorithm": "md5", - "value": "357e812f0f9693656c6372477c93dfb3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Bamako" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a8fbc370194a9f42e678d455d1856a4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Bangui" - }, - { - "digest": { - "algorithm": "md5", - "value": "e96298732e34c3693c99bad34efe33eb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Banjul" - }, - { - "digest": { - "algorithm": "md5", - "value": "af82ce73e5877a3dfd5c9dc93e869fa9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Bissau" - }, - { - "digest": { - "algorithm": "md5", - "value": "203c8f8673913d1f399f052805fcb108" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Blantyre" - }, - { - "digest": { - "algorithm": "md5", - "value": "a764e2cc55cba5093f8e8e5a847147df" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Brazzaville" - }, - { - "digest": { - "algorithm": "md5", - "value": "14e3a5f5ea0234ccea4c6e965462f9d4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Bujumbura" - }, - { - "digest": { - "algorithm": "md5", - "value": "929588a8bc1a9b6cf9b9222e28bb7aef" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Cairo" - }, - { - "digest": { - "algorithm": "md5", - "value": "40fc055519fdf962fea4c0bf1729345f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Casablanca" - }, - { - "digest": { - "algorithm": "md5", - "value": "7ae9e7e681bfbc7cca6da3f3735e9cf3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Ceuta" - }, - { - "digest": { - "algorithm": "md5", - "value": "07a4c8ccb3ee50857dda9d422ab09197" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Conakry" - }, - { - "digest": { - "algorithm": "md5", - "value": "964a003dfff6429b539b318ac96569f1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Dakar" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3262e83c0a9886d0721bbf051579e0f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Dar_es_Salaam" - }, - { - "digest": { - "algorithm": "md5", - "value": "897dfe5b7b41420b18c08cddbe4fdf5a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Djibouti" - }, - { - "digest": { - "algorithm": "md5", - "value": "b22edcdabc2415504dcb53857755f69d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Douala" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7daf2f00df49a5c7193ed68be6cca1b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/El_Aaiun" - }, - { - "digest": { - "algorithm": "md5", - "value": "36ad57f10c03459240cd3bee609c4c48" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Freetown" - }, - { - "digest": { - "algorithm": "md5", - "value": "689017e6773f98e4c113034a85e96848" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Gaborone" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7ea0333300d10acea5056c6e3a012b0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Harare" - }, - { - "digest": { - "algorithm": "md5", - "value": "049a2b9b24bbd0cfad59a06f8e813e13" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Johannesburg" - }, - { - "digest": { - "algorithm": "md5", - "value": "25449ee3106737035dd5bcb63e231f68" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Juba" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ae4d0e29fe9f23e03346367fea235b8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Kampala" - }, - { - "digest": { - "algorithm": "md5", - "value": "f750876e41aa4d3a93ae198b992226fc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Khartoum" - }, - { - "digest": { - "algorithm": "md5", - "value": "6fa712ac4c50498bedb71ee926a9efc3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Kigali" - }, - { - "digest": { - "algorithm": "md5", - "value": "74eaae3780600002038be0aa5616b3d0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Kinshasa" - }, - { - "digest": { - "algorithm": "md5", - "value": "8244c4cc8508425b6612fa24df71e603" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Lagos" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7ef4cedac2100482bee62b5eac0603e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Libreville" - }, - { - "digest": { - "algorithm": "md5", - "value": "b17f785f0c1ae39288e3de87d5706d20" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Lome" - }, - { - "digest": { - "algorithm": "md5", - "value": "17b70a45201bd573af57e5c3768cc702" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Luanda" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ac41939f9d42db4ece71a4bd5b11ee7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Lubumbashi" - }, - { - "digest": { - "algorithm": "md5", - "value": "a059a801e850954e434dfd05fa240791" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Lusaka" - }, - { - "digest": { - "algorithm": "md5", - "value": "12d82309666eff1696cc3e4f7fcc57fb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Malabo" - }, - { - "digest": { - "algorithm": "md5", - "value": "b77fb20b4917d76b65c3450a7117023c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Maputo" - }, - { - "digest": { - "algorithm": "md5", - "value": "21347d946cee87655c3acb1d1540320d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Maseru" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc1d33f430079b8d8c1f59a062985eec" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Mbabane" - }, - { - "digest": { - "algorithm": "md5", - "value": "21d138836b428bfeefb9f341eb677da8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Mogadishu" - }, - { - "digest": { - "algorithm": "md5", - "value": "37586867833f472dc93e78855625ae5b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Monrovia" - }, - { - "digest": { - "algorithm": "md5", - "value": "86dcc322e421bc8bdd14925e9d61cd6c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Nairobi" - }, - { - "digest": { - "algorithm": "md5", - "value": "da23ca12ab1d6fad069df2cde98e1984" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Ndjamena" - }, - { - "digest": { - "algorithm": "md5", - "value": "d0974774dc390292947a859d842296cb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Niamey" - }, - { - "digest": { - "algorithm": "md5", - "value": "a453836c3f5a8e154b93442ae7a691ca" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Nouakchott" - }, - { - "digest": { - "algorithm": "md5", - "value": "28ce64b4dad6b73363c9a11d22bc5f14" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Ouagadougou" - }, - { - "digest": { - "algorithm": "md5", - "value": "e38a9f727fb98006a41c5c03394f401f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Porto-Novo" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0aa37fd04a681b13e15536093234349" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Sao_Tome" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d0c2c0dc7945596f1b265c4f2b0e1e9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Tripoli" - }, - { - "digest": { - "algorithm": "md5", - "value": "77fb3690c96c1b75c3ea7b0f1f41e660" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Tunis" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d8f5df5c870229e2599cada6edfbda6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Africa/Windhoek" - }, - { - "digest": { - "algorithm": "md5", - "value": "f43102c06ca5450a97e9467f49bed36a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Adak" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7bcde7e4632f9d1222a586049cabde6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Anchorage" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c7bad7442fad2d731bd85848fb9a042" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Anguilla" - }, - { - "digest": { - "algorithm": "md5", - "value": "d38daf7e799c6fe4d5e3402dacda9318" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Antigua" - }, - { - "digest": { - "algorithm": "md5", - "value": "35ada100bdb86ae3bec784d431e63d74" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Araguaina" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce005d374e17d360c39018cb56f3ceb5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/Buenos_Aires" - }, - { - "digest": { - "algorithm": "md5", - "value": "1342337c1ba29a36342c5f9f8df09898" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/Catamarca" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b5ab25d6c67149b565e4b62ea6d07bd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/Cordoba" - }, - { - "digest": { - "algorithm": "md5", - "value": "753b270781d02b32283f7605c88467b1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/Jujuy" - }, - { - "digest": { - "algorithm": "md5", - "value": "f42d7954c886ee878bf438fdcefda3cb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/La_Rioja" - }, - { - "digest": { - "algorithm": "md5", - "value": "23786832b1b2e6d3fcccc5b3b15d223c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/Mendoza" - }, - { - "digest": { - "algorithm": "md5", - "value": "91e4549a59b0abbbb483e9d9e97953ab" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/Rio_Gallegos" - }, - { - "digest": { - "algorithm": "md5", - "value": "15bd47f45be8db3545f1e5c128222095" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/Salta" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a737eb6d5761eb6bd9d4307ef60a4f4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/San_Juan" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1ff7da02f10e3177827142286e8494e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/San_Luis" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e897d30f77533756fdd9a07de3fa07b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/Tucuman" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b21106cf5404a115933e01b35fa5e0b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Argentina/Ushuaia" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6ce1a4dd7b9987b17aaac725dc13af0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Aruba" - }, - { - "digest": { - "algorithm": "md5", - "value": "6bcfa6072b5f978d7a62c64c771bd9a9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Asuncion" - }, - { - "digest": { - "algorithm": "md5", - "value": "775c926f99a096a3fbd1cd2545f15aa1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Atikokan" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d5e3caf6ba24d2a9d998f9814a93d0b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Bahia" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f6266d9534828261a17abeb5978a0bb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Bahia_Banderas" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c53b67f9c78d0d91fa5af29cfac7ee7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Barbados" - }, - { - "digest": { - "algorithm": "md5", - "value": "774abd8a790aeace1449d5723bb17495" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Belem" - }, - { - "digest": { - "algorithm": "md5", - "value": "da3145d79cba5f541dd261434e449173" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Belize" - }, - { - "digest": { - "algorithm": "md5", - "value": "b66a708e81e188b174ca70eff9191c6e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Blanc-Sablon" - }, - { - "digest": { - "algorithm": "md5", - "value": "7996f235980d6bf1da7942dcb4324bc8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Boa_Vista" - }, - { - "digest": { - "algorithm": "md5", - "value": "28d53484ca7433de64d18c2cb5e42f29" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Bogota" - }, - { - "digest": { - "algorithm": "md5", - "value": "e91fdeda881f4d764a1c3231f4a747f9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Boise" - }, - { - "digest": { - "algorithm": "md5", - "value": "0213ccf19071fff3e4a582f1f0579636" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Cambridge_Bay" - }, - { - "digest": { - "algorithm": "md5", - "value": "bc3e68837a45bc203903e6ecbd6aa6d7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Campo_Grande" - }, - { - "digest": { - "algorithm": "md5", - "value": "041b4e82ea9b6026f181f848fba0e40f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Cancun" - }, - { - "digest": { - "algorithm": "md5", - "value": "109d42f2ad3a43bfd4bde02cf0f42ef1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Caracas" - }, - { - "digest": { - "algorithm": "md5", - "value": "e2150e8f3a83cd9ef8a8b34b86a72a60" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Cayenne" - }, - { - "digest": { - "algorithm": "md5", - "value": "c114b78be399ca38b345bf5639f65b2a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Cayman" - }, - { - "digest": { - "algorithm": "md5", - "value": "6fa8d772c5ff1c47ca4b0ad477f72d48" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Chicago" - }, - { - "digest": { - "algorithm": "md5", - "value": "574a8f7b612df28c2291badf18f35b5d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Chihuahua" - }, - { - "digest": { - "algorithm": "md5", - "value": "3bafdbea379fa8cc792c6a6f0a3298f3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Ciudad_Juarez" - }, - { - "digest": { - "algorithm": "md5", - "value": "90d69999868cae5a97ee84c988cf0b25" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Costa_Rica" - }, - { - "digest": { - "algorithm": "md5", - "value": "b63608c03f49d6057810acc5327ee240" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Creston" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d0741be12a018d43ed21a4b8f5d4a5b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Cuiaba" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7d96ffa48d76834052df27b661da008" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Curacao" - }, - { - "digest": { - "algorithm": "md5", - "value": "20e68f0a941140b269efb3af346b1e34" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Danmarkshavn" - }, - { - "digest": { - "algorithm": "md5", - "value": "923fa67f9f86dc799e702cfdbf1346bc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Dawson" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d46e4e62de53d7e6af44691d56ed633" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Dawson_Creek" - }, - { - "digest": { - "algorithm": "md5", - "value": "648f67a7744849f2ca07f4d5871e9021" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Denver" - }, - { - "digest": { - "algorithm": "md5", - "value": "ae3ba6ed8738ceda9eef109c6c586736" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Detroit" - }, - { - "digest": { - "algorithm": "md5", - "value": "da49514eb25de7f47472df1556f36f4b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Dominica" - }, - { - "digest": { - "algorithm": "md5", - "value": "1f23503189b8ce70677b2dcbb4a57e8c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Edmonton" - }, - { - "digest": { - "algorithm": "md5", - "value": "baac6d290becc63340483cfe80b846b5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Eirunepe" - }, - { - "digest": { - "algorithm": "md5", - "value": "55ae3521b8c6772551c7813ba81ffe97" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/El_Salvador" - }, - { - "digest": { - "algorithm": "md5", - "value": "a362c873b82d51c862b5065e5e164cd2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Fort_Nelson" - }, - { - "digest": { - "algorithm": "md5", - "value": "e30ee9e9c77ea9f80c60c29a246af052" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Fortaleza" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ba1b7da532cefb6e32d083377b71303" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Glace_Bay" - }, - { - "digest": { - "algorithm": "md5", - "value": "150f52dc50b25598b8f0963817a89e40" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Goose_Bay" - }, - { - "digest": { - "algorithm": "md5", - "value": "7bd1c6104c23d9d9b2c3a7c50af4629b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Grand_Turk" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a1f670d865e1f134dac88477e4a657a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Grenada" - }, - { - "digest": { - "algorithm": "md5", - "value": "720aca0ddff97c302640c4b7297798df" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Guadeloupe" - }, - { - "digest": { - "algorithm": "md5", - "value": "1451397c3629aa3c6b729b02685e384d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Guatemala" - }, - { - "digest": { - "algorithm": "md5", - "value": "bb6497477ba745eed053850a426d756c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Guayaquil" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f81fec39455737cbee554a7a0153b13" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Guyana" - }, - { - "digest": { - "algorithm": "md5", - "value": "820f35f23d49a527ffe813e2d96c5da7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Halifax" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f73e648aacfef75f13d8cf1b5cf12c5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Havana" - }, - { - "digest": { - "algorithm": "md5", - "value": "2abc5c5eb6bc1b4ea45129ed1a917331" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Hermosillo" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ab9f9cfbb576566eabf9ef0c2835169" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Indiana/Indianapolis" - }, - { - "digest": { - "algorithm": "md5", - "value": "6222edd349522509c7fb2b88c572b8d6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Indiana/Knox" - }, - { - "digest": { - "algorithm": "md5", - "value": "96d567d647381dcf46719041f7943294" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Indiana/Marengo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab0961e9e5b72ef85fa2722862af812a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Indiana/Petersburg" - }, - { - "digest": { - "algorithm": "md5", - "value": "2572aae3835375c9b36d35d309510a6a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Indiana/Tell_City" - }, - { - "digest": { - "algorithm": "md5", - "value": "cea6d116c6f308cdcf702436f3b2ac7e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Indiana/Vevay" - }, - { - "digest": { - "algorithm": "md5", - "value": "439190a03abcf789fd7964b6c7da5e55" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Indiana/Vincennes" - }, - { - "digest": { - "algorithm": "md5", - "value": "1192580d27679922f8bcba36cd6d00d6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Indiana/Winamac" - }, - { - "digest": { - "algorithm": "md5", - "value": "5c34481b03b1bd1676035056833469ba" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Inuvik" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b7f499a0f00619c7ed9fdec7cf6012b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Iqaluit" - }, - { - "digest": { - "algorithm": "md5", - "value": "0041a22a05bf3b4a02e08a42a3bcf2cc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Jamaica" - }, - { - "digest": { - "algorithm": "md5", - "value": "2223d94ebc41480cd9cd71ab5122b883" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Juneau" - }, - { - "digest": { - "algorithm": "md5", - "value": "6e3f157f5f9ad164fe30711a98486c99" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Kentucky/Louisville" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d0a9c6e55341d4b468587cc1cfc4eba" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Kentucky/Monticello" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec740b53e4ef21d026b007f4bf52d692" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/La_Paz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ccd7cfa6d7cfd29999605032ebffdc6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Lima" - }, - { - "digest": { - "algorithm": "md5", - "value": "e60272a32baf6b5a8bcea5a11ca96535" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Los_Angeles" - }, - { - "digest": { - "algorithm": "md5", - "value": "50fca6e2d3bd175e9fc9b580c5d44b5f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Maceio" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c1cc5c69604e55e026a736f7ec00e57" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Managua" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa368bd59632d430a8e0d2df5540eda7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Manaus" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ec1537859e4ab14c375f749d6f25b95" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Martinique" - }, - { - "digest": { - "algorithm": "md5", - "value": "9388bcfe9355b71baa0af83be2a0f1a9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Matamoros" - }, - { - "digest": { - "algorithm": "md5", - "value": "d9b7e376d8ab062c84e1d5a8b54f41bd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Mazatlan" - }, - { - "digest": { - "algorithm": "md5", - "value": "c05fe82bf18256cc290872b05ffa14a5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Menominee" - }, - { - "digest": { - "algorithm": "md5", - "value": "00c29324fa2414855878b4781161f05d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Merida" - }, - { - "digest": { - "algorithm": "md5", - "value": "db9809944c8d6bc1ea1ea35d30a0b8c3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Metlakatla" - }, - { - "digest": { - "algorithm": "md5", - "value": "06c6842be2da78f26d419eded7ed495b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Mexico_City" - }, - { - "digest": { - "algorithm": "md5", - "value": "275b5568a206a04280e715f3e7a11aac" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Miquelon" - }, - { - "digest": { - "algorithm": "md5", - "value": "13241e88bc91163e9905b1e032f46c92" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Moncton" - }, - { - "digest": { - "algorithm": "md5", - "value": "10be21c13bafa974a7a80b4a399d7e76" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Monterrey" - }, - { - "digest": { - "algorithm": "md5", - "value": "406df2450841a8b15fe034d7d6deb029" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Montevideo" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b9d1e78c07fd9ae78e0140e2aea7a9b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Montserrat" - }, - { - "digest": { - "algorithm": "md5", - "value": "1444a5132c9a26f350ebe705760215c7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Nassau" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ef5d280a7e0c1d820d05205b042cce0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/New_York" - }, - { - "digest": { - "algorithm": "md5", - "value": "c6d0b263c897ac1f4a27cad4f46d72b5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Nome" - }, - { - "digest": { - "algorithm": "md5", - "value": "cd7da9cfb80f725d3128ce0d0b6d83a8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Noronha" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3d69a454dab40135223248f2abf4213" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/North_Dakota/Beulah" - }, - { - "digest": { - "algorithm": "md5", - "value": "4c9375fe24d0f13b2754d686e3dbf601" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/North_Dakota/Center" - }, - { - "digest": { - "algorithm": "md5", - "value": "aaadc03aa54a2e43222f6040587ae165" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/North_Dakota/New_Salem" - }, - { - "digest": { - "algorithm": "md5", - "value": "aeb664aca5290adc0b4ea723f2ba9980" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Nuuk" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4bca1c9bb6b45814a1ab819b180b5ef" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Ojinaga" - }, - { - "digest": { - "algorithm": "md5", - "value": "0972a9c4c28bf71eeab5f0bac573cdbc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Panama" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3053ce2fa36455e88168a36121c7c8b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Paramaribo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1df060a4c94a0ebf762fcb59b7d80f36" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Phoenix" - }, - { - "digest": { - "algorithm": "md5", - "value": "bef49be0677b9836edf529fa8aff6418" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Port-au-Prince" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea7e528e528955259af3e65d86ba8e49" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Port_of_Spain" - }, - { - "digest": { - "algorithm": "md5", - "value": "bb8c292f2a6e8294d7f3bcb97cded14e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Porto_Velho" - }, - { - "digest": { - "algorithm": "md5", - "value": "adf95d436701b9774205f9315ec6e4a4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Puerto_Rico" - }, - { - "digest": { - "algorithm": "md5", - "value": "e9d30004e7af0a429178282f82cb32e1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Punta_Arenas" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3d7506d726d99ec96ee4a2dfd5e462a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Rankin_Inlet" - }, - { - "digest": { - "algorithm": "md5", - "value": "58b15d0eeb6512eeacbc84a62378b050" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Recife" - }, - { - "digest": { - "algorithm": "md5", - "value": "cec6491b350dfbdb74732df745eb37d3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Regina" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc8ef132d20be66baf2de28ebaf7a567" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Resolute" - }, - { - "digest": { - "algorithm": "md5", - "value": "103eb03cddced65a327ace0ecaf78ef0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Rio_Branco" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e424f0b499295bddad813ca4afa86cf" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Santarem" - }, - { - "digest": { - "algorithm": "md5", - "value": "b91736f2cbb5fc7a3236932d7d14695b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Santiago" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b0942bdd0042fd925aa737b1e9b4e5e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Santo_Domingo" - }, - { - "digest": { - "algorithm": "md5", - "value": "17f0fe05c5df1c2949035825431b8848" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Sao_Paulo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7f3ac51f8f4959b4bf9389b86a38abd6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Scoresbysund" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ac29cff86232d191f280b7c217f6cf0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Sitka" - }, - { - "digest": { - "algorithm": "md5", - "value": "38c8ed2f1e3aa3c422672ca2f26249c5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/St_Johns" - }, - { - "digest": { - "algorithm": "md5", - "value": "f74dd42b563de0f3718e6b7aedaccb91" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/St_Kitts" - }, - { - "digest": { - "algorithm": "md5", - "value": "e75452f876cc8883fa7171ec3d25294d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/St_Lucia" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2f3a559215acd36459e99808f660c08" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/St_Thomas" - }, - { - "digest": { - "algorithm": "md5", - "value": "908c996989139e82c5f4cee07c900efa" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/St_Vincent" - }, - { - "digest": { - "algorithm": "md5", - "value": "c74726e554d359f38a26870282725f04" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Swift_Current" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ec4a5a75cc1b8c186d7f44b97e00efe" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Tegucigalpa" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca49ae88f5b9f4bd7f85ba9299dd4d79" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Thule" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a49efbf954e9747e68b1bb88e52a771" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Tijuana" - }, - { - "digest": { - "algorithm": "md5", - "value": "8dabdbbb4e33dcb0683c8a2db78fedc4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Toronto" - }, - { - "digest": { - "algorithm": "md5", - "value": "cdb1cc1ff794b288e07ebf1a417a7199" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Tortola" - }, - { - "digest": { - "algorithm": "md5", - "value": "04b353b30593a1fed8fc1db22bd02e3d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Vancouver" - }, - { - "digest": { - "algorithm": "md5", - "value": "c12d9db0a8dc4f432cdbf2ecfaff43fb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Whitehorse" - }, - { - "digest": { - "algorithm": "md5", - "value": "1cf382061df64010265f0869903fb6d8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Winnipeg" - }, - { - "digest": { - "algorithm": "md5", - "value": "401da653644fc1490c7e26bcc930f3a6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/America/Yakutat" - }, - { - "digest": { - "algorithm": "md5", - "value": "aae33160643e945d2a917c2835e5636a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/Casey" - }, - { - "digest": { - "algorithm": "md5", - "value": "57c7f5a576acf9e0ac717149e2dd5ba3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/Davis" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5a55760f489b5613c0029668b6a9ac3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/DumontDUrville" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f648ef76b230b7650178726107d8511" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/Macquarie" - }, - { - "digest": { - "algorithm": "md5", - "value": "df4a1a158e903864cd3521ecb6a51a2d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/Mawson" - }, - { - "digest": { - "algorithm": "md5", - "value": "08c0282567a3c3ca8603f62ada57df36" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/McMurdo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e67dc0e8c79c21314b5430af658363fa" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/Palmer" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e7d491e5a1fd6c17e8fa18da9e217d3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/Rothera" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c0c91c91b3f093342bb341bf032b21d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/Syowa" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7afd8a0519a7225769b456ec020c1f0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/Troll" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5516c5c059ff8372f4f99ba0596f18a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Antarctica/Vostok" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a5b473335445049daf7eb54995475a0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Aden" - }, - { - "digest": { - "algorithm": "md5", - "value": "698f6213c74c8fd3bbe7063183ddecf0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Almaty" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f4afa8438b35ef0ff4d32c9dd2641d4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Amman" - }, - { - "digest": { - "algorithm": "md5", - "value": "11a99b57d1a944d2458beef5616c8370" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Anadyr" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a5d364bffc66877328ab1db5d2a6b38" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Aqtau" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c6a3062845f4ab1dfa2e7e5ff4497fa" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Aqtobe" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b240d55713d8d36871ed7288d4aefc0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Ashgabat" - }, - { - "digest": { - "algorithm": "md5", - "value": "9cc63d7d4f6d7501979327cc0bcf6f3c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Atyrau" - }, - { - "digest": { - "algorithm": "md5", - "value": "3dae0a7264eee4d63591f6f8c8ab2082" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Baghdad" - }, - { - "digest": { - "algorithm": "md5", - "value": "47d8598112633032fe1ae1a017417d53" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Bahrain" - }, - { - "digest": { - "algorithm": "md5", - "value": "012b852ff4e95e435276f3bc9249b306" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Baku" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6cb1b97eb7b7e587f17b7dd9301045b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Bangkok" - }, - { - "digest": { - "algorithm": "md5", - "value": "15a815f0c92653e1d4f5d127527c9bfd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Barnaul" - }, - { - "digest": { - "algorithm": "md5", - "value": "eac8f3baad35039879e4174bc6bc9e93" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Beirut" - }, - { - "digest": { - "algorithm": "md5", - "value": "008127fa59a976399242a9981e9b1273" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Bishkek" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa5ba9f87fe827285a21d39ba6d4c7e1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Brunei" - }, - { - "digest": { - "algorithm": "md5", - "value": "a98f02d91a2e6c0330953427c8be2eb4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Chita" - }, - { - "digest": { - "algorithm": "md5", - "value": "56c3238cfc9b18c527958f0217968415" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Choibalsan" - }, - { - "digest": { - "algorithm": "md5", - "value": "194f8dc0196aa58642b7ef7e6ab4ea55" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Colombo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a95589d406c904611d7da67342812c3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Damascus" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ae847e5f0bb432dae46aa1273d9867a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Dhaka" - }, - { - "digest": { - "algorithm": "md5", - "value": "74b8c4c916d587096acd5ca01bf3120b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Dili" - }, - { - "digest": { - "algorithm": "md5", - "value": "547e0bd9cba010559f0524233f4574e7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Dubai" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b83c7acfacae252460419e3b1c2153e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Dushanbe" - }, - { - "digest": { - "algorithm": "md5", - "value": "14a69e4234b2f2c02a3d3a46d0ecffbb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Famagusta" - }, - { - "digest": { - "algorithm": "md5", - "value": "e365593b5669f8d64911299d23700669" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Gaza" - }, - { - "digest": { - "algorithm": "md5", - "value": "2524086623c66c4d7433e8a8d333803e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Hebron" - }, - { - "digest": { - "algorithm": "md5", - "value": "b727da780b81dc41783ce88e63f9f968" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Ho_Chi_Minh" - }, - { - "digest": { - "algorithm": "md5", - "value": "b3b6122deaea1d9a6bb3282f5c72f3ad" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Hong_Kong" - }, - { - "digest": { - "algorithm": "md5", - "value": "e90a0ec712a61601d0742ce2bafe48f8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Hovd" - }, - { - "digest": { - "algorithm": "md5", - "value": "1bd8ee7b4b788b9cd6916ef5ed634ff7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Irkutsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f951cd4bbfac5617da473b5e687675c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Jakarta" - }, - { - "digest": { - "algorithm": "md5", - "value": "ceb57d9cd9b24a7d0b567aa125722a4a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Jayapura" - }, - { - "digest": { - "algorithm": "md5", - "value": "570f4cd5d0ee9ebe57259c7ded62de1d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Jerusalem" - }, - { - "digest": { - "algorithm": "md5", - "value": "80907ef5ddcdd296bf9951e6521b633b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Kabul" - }, - { - "digest": { - "algorithm": "md5", - "value": "d073fd3d9b42026ff71dee986adb33e3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Kamchatka" - }, - { - "digest": { - "algorithm": "md5", - "value": "759516f58955556e4d7b75b23fca2d3d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Karachi" - }, - { - "digest": { - "algorithm": "md5", - "value": "1143e7d1a1c8670d9f2a33ae4dbbd0d0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Kathmandu" - }, - { - "digest": { - "algorithm": "md5", - "value": "4aeb7a9a9b134d3d4aa98195de794d30" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Khandyga" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c55fcc73d1f725dde17fe8e06c3a8d8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Kolkata" - }, - { - "digest": { - "algorithm": "md5", - "value": "a01dbf800f4595c989bd1013f9b3a389" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Krasnoyarsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "a1eadcff150a10a693a0386a8670493e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Kuala_Lumpur" - }, - { - "digest": { - "algorithm": "md5", - "value": "ffde243552798af33e568e7eb61d041c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Kuching" - }, - { - "digest": { - "algorithm": "md5", - "value": "86bdd1670cfac7f4371d29a1b9381a23" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Kuwait" - }, - { - "digest": { - "algorithm": "md5", - "value": "6da7e4c3ace6233c3c7e66c4757b901f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Macau" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c125e959552934f9ef19fe35bca95cd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Magadan" - }, - { - "digest": { - "algorithm": "md5", - "value": "5c6b9233cc231acbe1a8cd64d4f68cc8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Makassar" - }, - { - "digest": { - "algorithm": "md5", - "value": "f76ff19724d6183543c50cb9978f844c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Manila" - }, - { - "digest": { - "algorithm": "md5", - "value": "e3d70ff342cb45281d1714e0b776af15" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Muscat" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc4ea7e37ba20ea164845151f1d2966a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Nicosia" - }, - { - "digest": { - "algorithm": "md5", - "value": "636d17deb29c6dfb02395fc88395f4f4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Novokuznetsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "5e2ce0858e8b62a2d834fc83f8b88b9d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Novosibirsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "767471fe7693cdee55d73269bbf38c99" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Omsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "55d827be1e274d078c78bdbef9f363fc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Oral" - }, - { - "digest": { - "algorithm": "md5", - "value": "b73ce066ed88237bba5a006f4dc2a0d4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Phnom_Penh" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc6104a55b8eac337c4571aa73a8ed76" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Pontianak" - }, - { - "digest": { - "algorithm": "md5", - "value": "e83383d527ff563d9104bc142507f8ce" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Pyongyang" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d62a6cb4c1d0b60fd96ee6ce8eba5c9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Qatar" - }, - { - "digest": { - "algorithm": "md5", - "value": "f20ee07df2ec37cc5cf21bbf724996ae" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Qostanay" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad0fde360eeb714a206c65511474d0f8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Qyzylorda" - }, - { - "digest": { - "algorithm": "md5", - "value": "310d07841066a98eddcc7d3813ec2786" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Riyadh" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff89c8683e56a62a935c26f48485b4b9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Sakhalin" - }, - { - "digest": { - "algorithm": "md5", - "value": "dbd585a1ddca89f419bc8ccbbbeb0d43" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Samarkand" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c0e1dc50ad67a0eddf3ac8d955ff7f7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Seoul" - }, - { - "digest": { - "algorithm": "md5", - "value": "09dd479d2f22832ce98c27c4db7ab97c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Shanghai" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0958805881a6e76f2dc432c20455a8c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Singapore" - }, - { - "digest": { - "algorithm": "md5", - "value": "de0d5a61aed3be40d9e31da91ca86206" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Srednekolymsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "474d8b0211b42185eea358aafafeb5a7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Taipei" - }, - { - "digest": { - "algorithm": "md5", - "value": "02e82bbf674eb1fbe2e0323f868ff56c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Tashkent" - }, - { - "digest": { - "algorithm": "md5", - "value": "90a1b7eadc6db66ce603a2b563ae6005" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Tbilisi" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a7806ae6912a5c9985d3dba06618932" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Tehran" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f6fd838b3bdad31979b0aaa491557bd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Thimphu" - }, - { - "digest": { - "algorithm": "md5", - "value": "38620155fabd5572c5a4b1db051b3cc8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Tokyo" - }, - { - "digest": { - "algorithm": "md5", - "value": "180186e60da15fceb9e87030b2679ba4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Tomsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "a839148373457714721a7ea6606fb88e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Ulaanbaatar" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b00fbcc84837bb11fd2fcc34697fa67" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Urumqi" - }, - { - "digest": { - "algorithm": "md5", - "value": "138ca20c49c5262c662a2acbfb70cda6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Ust-Nera" - }, - { - "digest": { - "algorithm": "md5", - "value": "5404538dc0004ef1abdfdda11b87a6df" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Vientiane" - }, - { - "digest": { - "algorithm": "md5", - "value": "04b551d6c290034de8d0904898138e53" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Vladivostok" - }, - { - "digest": { - "algorithm": "md5", - "value": "c726ba30d945b655aed416f11c0063c5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Yakutsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "76f623244929c37f718131a7a23258bd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Yangon" - }, - { - "digest": { - "algorithm": "md5", - "value": "83e6cacbf5771ae8a3e33c9b535b62b4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Yekaterinburg" - }, - { - "digest": { - "algorithm": "md5", - "value": "4cc7d66ced40e934700fc0f87bb1859c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Asia/Yerevan" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a8cb657399a5d04eec932b724b4e417" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/Azores" - }, - { - "digest": { - "algorithm": "md5", - "value": "43fd3aa87f2c5562b7b5f2c7865443df" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/Bermuda" - }, - { - "digest": { - "algorithm": "md5", - "value": "167a786aa74ba2a9dd68c470746aa0ac" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/Canary" - }, - { - "digest": { - "algorithm": "md5", - "value": "a2653b2d58cb1306082a46ab74fa1e9f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/Cape_Verde" - }, - { - "digest": { - "algorithm": "md5", - "value": "28ce2d6ea684cfbcc27a1fd9dc2be28b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/Faroe" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d5f1509f2c5ae29e32a04fb8fc22bd0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/Madeira" - }, - { - "digest": { - "algorithm": "md5", - "value": "63e1a08e85049a444082525b6e3af5b1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/Reykjavik" - }, - { - "digest": { - "algorithm": "md5", - "value": "7c31af83f8ea00d0fe4850da05844d31" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/South_Georgia" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c0cb630386cdee2c8d4236cb6352c04" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/St_Helena" - }, - { - "digest": { - "algorithm": "md5", - "value": "c02f9cd900d67f74d5031c5824c67922" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Atlantic/Stanley" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a59abe391036dd9ac824540000f9698" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Adelaide" - }, - { - "digest": { - "algorithm": "md5", - "value": "65781aa632f145abc8d9d657a17a86af" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Brisbane" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b15a7d301ed093840d5e0dc71d38b0d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Broken_Hill" - }, - { - "digest": { - "algorithm": "md5", - "value": "2605fca62b6e2c615e2818875d1cecbd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Darwin" - }, - { - "digest": { - "algorithm": "md5", - "value": "e606bee099eb1ce9a74e881235d336c7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Eucla" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b19c5bc1dc3b7baee99a3528d2bf3b6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Hobart" - }, - { - "digest": { - "algorithm": "md5", - "value": "239e2de0b87f1db0647dfe604471bdae" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Lindeman" - }, - { - "digest": { - "algorithm": "md5", - "value": "99eaa23d7c8514e18a0eb45efe0f1988" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Lord_Howe" - }, - { - "digest": { - "algorithm": "md5", - "value": "794f5b6e4a5f52afa35bab44977c1fca" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Melbourne" - }, - { - "digest": { - "algorithm": "md5", - "value": "afc909ca3f026324bf1d7a0933389349" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Perth" - }, - { - "digest": { - "algorithm": "md5", - "value": "44cc3e944fdd50314de398d0aed2bd8e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Australia/Sydney" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e2c93fa991381ef09d105ade12277c3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/CET" - }, - { - "digest": { - "algorithm": "md5", - "value": "e764a3330e77d3fd409562213a62a460" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/CST6CDT" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7720aad6e2c36d80d5362f75c8b35df" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/EET" - }, - { - "digest": { - "algorithm": "md5", - "value": "80e8ed2e7ee33fd5a6cd943bf9dc4e2f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/EST" - }, - { - "digest": { - "algorithm": "md5", - "value": "962899625051e0b0c1865093038d4489" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/EST5EDT" - }, - { - "digest": { - "algorithm": "md5", - "value": "9cd2aef183c064f630dfcf6018551374" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT" - }, - { - "digest": { - "algorithm": "md5", - "value": "079e732c9a92b07b0ea061d090520647" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+1" - }, - { - "digest": { - "algorithm": "md5", - "value": "f91272d2141d695b82d0c3409779651a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+10" - }, - { - "digest": { - "algorithm": "md5", - "value": "0b30436c18d0ea2dc1ffe64bad8971ee" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+11" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c5b82332b2e09dd7c18b8ad3c36f5fa" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+12" - }, - { - "digest": { - "algorithm": "md5", - "value": "414f136d6c18c1a5e1eaeca12cd020db" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+2" - }, - { - "digest": { - "algorithm": "md5", - "value": "7d065e631113c1e3f46473ed62c87bae" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+3" - }, - { - "digest": { - "algorithm": "md5", - "value": "327a576fa70892b210346cd183343c50" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+4" - }, - { - "digest": { - "algorithm": "md5", - "value": "51fb6d9d2b38c085bf54af3318d4d0ed" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+5" - }, - { - "digest": { - "algorithm": "md5", - "value": "d1d9438a0280ed95a9b44dbfb8bcd30b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+6" - }, - { - "digest": { - "algorithm": "md5", - "value": "022a9ec4d0744140fcb3fda6cbccc92e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+7" - }, - { - "digest": { - "algorithm": "md5", - "value": "58f5cb8e767c5556b9477143a254125a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+8" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef682349d1548787c693d7b966faed96" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT+9" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ac1159d9f21ce635443a15d6f0192b2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-1" - }, - { - "digest": { - "algorithm": "md5", - "value": "a08812265558e7a13314716a913da90a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-10" - }, - { - "digest": { - "algorithm": "md5", - "value": "ca5ce8340a8e22f4dae42ce318a0a649" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-11" - }, - { - "digest": { - "algorithm": "md5", - "value": "7474159a30cc4fa179d4ea9f6fe0786d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-12" - }, - { - "digest": { - "algorithm": "md5", - "value": "a324fc1550019089de6beb2505b16c75" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-13" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d7aafce2b73c4f23f6a742f3e7b8e57" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-14" - }, - { - "digest": { - "algorithm": "md5", - "value": "19422df8717b85634df5b6cd43d52291" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-2" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e719b9b512f906cd4fba6c440e48290" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-3" - }, - { - "digest": { - "algorithm": "md5", - "value": "229d70912ecce1494a2ea46216e1ae28" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-4" - }, - { - "digest": { - "algorithm": "md5", - "value": "d61fd70479fcb790c1d8fc367a721fe1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-5" - }, - { - "digest": { - "algorithm": "md5", - "value": "20451c577ed8e9ed6fbddf5ef2b521a7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-6" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea1c82dea2e45abb717e1748aca7725e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-7" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef7a2733d4be07f8959092bed6dd89c7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-8" - }, - { - "digest": { - "algorithm": "md5", - "value": "a56cfa0fb4ad4b0cf1919b9c665f4d63" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/GMT-9" - }, - { - "digest": { - "algorithm": "md5", - "value": "38bb24ba4d742dd6f50c1cba29cd966a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Etc/UTC" - }, - { - "digest": { - "algorithm": "md5", - "value": "770a25b6ff7bf90b26f09f7769c76d1f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Amsterdam" - }, - { - "digest": { - "algorithm": "md5", - "value": "90276d028e1681749042a17e0ace5541" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Andorra" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa35d801a9e2d0d9179bba10b8bec239" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Astrakhan" - }, - { - "digest": { - "algorithm": "md5", - "value": "140cc26d867773460b13e90c5c721e65" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Athens" - }, - { - "digest": { - "algorithm": "md5", - "value": "6213fc0a706f93af6ff6a831fecbc095" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Belgrade" - }, - { - "digest": { - "algorithm": "md5", - "value": "7db6c3e5031eaf69e6d1e5583ab2e870" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Berlin" - }, - { - "digest": { - "algorithm": "md5", - "value": "355f0d3e2a3ee15ea78526f5eeb0cf7d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Brussels" - }, - { - "digest": { - "algorithm": "md5", - "value": "d68f0be8c6a90db8bbd0052fab0205ae" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Bucharest" - }, - { - "digest": { - "algorithm": "md5", - "value": "e16f6fc802dc2011572454e02567fa01" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Budapest" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ac49d4e17a9f1e8db6015a250374d0f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Chisinau" - }, - { - "digest": { - "algorithm": "md5", - "value": "8cb60c550f71fce75c48857369c92132" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Copenhagen" - }, - { - "digest": { - "algorithm": "md5", - "value": "4fdb09e3889842e7fdfe310973ca5a60" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Dublin" - }, - { - "digest": { - "algorithm": "md5", - "value": "101a6f261011f565dd7be88c2ce11641" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Gibraltar" - }, - { - "digest": { - "algorithm": "md5", - "value": "27506af70925455d6a0e2dbbebbe3fc5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Guernsey" - }, - { - "digest": { - "algorithm": "md5", - "value": "a593351c8de80b7dede3f6507625d7a7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Helsinki" - }, - { - "digest": { - "algorithm": "md5", - "value": "8bfef864cfe766f4f74771d1bb470015" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Isle_of_Man" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9a38ba69f382895c76b041da1d8e40b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Istanbul" - }, - { - "digest": { - "algorithm": "md5", - "value": "55cb38e5256504ddd4c5559d60ed86e5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Jersey" - }, - { - "digest": { - "algorithm": "md5", - "value": "44af6dfe8fa4f7c48abcbc9d3387a19a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Kaliningrad" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a058894faf93b7096d4eb71e65d5ccc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Kirov" - }, - { - "digest": { - "algorithm": "md5", - "value": "114c4219e41d9cf8eaa77e13f87fabb6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Kyiv" - }, - { - "digest": { - "algorithm": "md5", - "value": "87eba246533516f08153426d47a47955" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Lisbon" - }, - { - "digest": { - "algorithm": "md5", - "value": "fe4ddda202296129999655723bddcbba" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Ljubljana" - }, - { - "digest": { - "algorithm": "md5", - "value": "a40006ee580ef0a4b6a7b925fee2e11f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/London" - }, - { - "digest": { - "algorithm": "md5", - "value": "d6097185d8c17f2177fcd124c3bbeaa1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Luxembourg" - }, - { - "digest": { - "algorithm": "md5", - "value": "491ee8e91dc29f30301542bbb391548e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Madrid" - }, - { - "digest": { - "algorithm": "md5", - "value": "9886bb6b098ffcf82ebc7029a4e26614" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Malta" - }, - { - "digest": { - "algorithm": "md5", - "value": "7923f5f964c0c1304ac7232ba3d3cef9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Minsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba9074b7f9f99a6ddb89a9af301ebab2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Monaco" - }, - { - "digest": { - "algorithm": "md5", - "value": "6e4a6392e7699904a4223395513be78a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Moscow" - }, - { - "digest": { - "algorithm": "md5", - "value": "b14df1a5f5e982e5aad07468ef6890ad" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Oslo" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e98facd2503ea92bd44081252bc90cf" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Paris" - }, - { - "digest": { - "algorithm": "md5", - "value": "d17ad2f182cef93488ec1bcda9d98d92" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Prague" - }, - { - "digest": { - "algorithm": "md5", - "value": "50cdd056cb1c417519f839f9b977710b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Riga" - }, - { - "digest": { - "algorithm": "md5", - "value": "de64f32dd64c6b15a78bbd84384827fb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Rome" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b67017198707d316b6ca7b2a5899269" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Samara" - }, - { - "digest": { - "algorithm": "md5", - "value": "65fc0e9f1fada90c1d1436c66ec38440" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Sarajevo" - }, - { - "digest": { - "algorithm": "md5", - "value": "16a55636f8394e3bfe84e85b14c0c03f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Saratov" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf8afcf933ad0cfd59782d8af44667b8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Simferopol" - }, - { - "digest": { - "algorithm": "md5", - "value": "df7aa3d5ae9639341b38b3fc830c6c97" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Skopje" - }, - { - "digest": { - "algorithm": "md5", - "value": "f9d03c5aa87a44ed893dd53431f30ff4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Sofia" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e74c03ffa48da2808e373633ed96df9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Stockholm" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebc9b4d3de448e9758267c684c8c8453" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Tallinn" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5977bad592e33b2e4058a242d735927" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Tirane" - }, - { - "digest": { - "algorithm": "md5", - "value": "edeaf6caa295c753102280a4058b0860" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Ulyanovsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "4baa89ac2f3ab867b6f5ee5101f19da1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Vaduz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cf94bac5f79dfea85bdcfd347e93c59a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Vienna" - }, - { - "digest": { - "algorithm": "md5", - "value": "c2da5e1ab9d554e28e1c8eab5e70d2eb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Vilnius" - }, - { - "digest": { - "algorithm": "md5", - "value": "f3c8035e099490c7109d26814380d335" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Volgograd" - }, - { - "digest": { - "algorithm": "md5", - "value": "499916a22979b1cffade2ca408c318c7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Warsaw" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd71be8fbbf2d2c53b1e068925478ffb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Zagreb" - }, - { - "digest": { - "algorithm": "md5", - "value": "2da42297275a23b4a6b99702cf995583" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Europe/Zurich" - }, - { - "digest": { - "algorithm": "md5", - "value": "f57a1f2824478a8bf54c96822ec2aa7d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Factory" - }, - { - "digest": { - "algorithm": "md5", - "value": "79cf880a7eb69cc75ab608c4efab9b87" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/HST" - }, - { - "digest": { - "algorithm": "md5", - "value": "148dcaa196359d4eba88d034c8d8e34f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Antananarivo" - }, - { - "digest": { - "algorithm": "md5", - "value": "9bbdc73ed2dc9c5d04f63d5c5ba8078d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Chagos" - }, - { - "digest": { - "algorithm": "md5", - "value": "eaf28caa8e2804ac7472069ec661ad98" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Christmas" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e216b70891f9775a4b99f351d631ca5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Cocos" - }, - { - "digest": { - "algorithm": "md5", - "value": "be833762991fb1d319e640ff5840eed8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Comoro" - }, - { - "digest": { - "algorithm": "md5", - "value": "dcac6446666a586368f444d6bd801c2f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Kerguelen" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb558db61a8d502874edf2ba098aa713" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Mahe" - }, - { - "digest": { - "algorithm": "md5", - "value": "e57194814c4eaea03f97f346970a50ea" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Maldives" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a5dc6ffc4c1ac4f144decc8f0685d3d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Mauritius" - }, - { - "digest": { - "algorithm": "md5", - "value": "ee7455c5d5ea537af1022fce12f90063" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Mayotte" - }, - { - "digest": { - "algorithm": "md5", - "value": "b731502be1ca95fcaa1e74e1809db063" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Indian/Reunion" - }, - { - "digest": { - "algorithm": "md5", - "value": "24613986df2de8c1b02868f45c99ab2d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/MET" - }, - { - "digest": { - "algorithm": "md5", - "value": "59c49e8b3faa74c56e1824de71c1cfd7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/MST" - }, - { - "digest": { - "algorithm": "md5", - "value": "25f72cf090361b5f24f2b601309122e3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/MST7MDT" - }, - { - "digest": { - "algorithm": "md5", - "value": "70bb0e0b0b2d3688daca7dfe6327cb9e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/PST8PDT" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb1a1f31d64a80ca17852921dde141f9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Apia" - }, - { - "digest": { - "algorithm": "md5", - "value": "77332ae81e8f657034dd1e92e77716f1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Auckland" - }, - { - "digest": { - "algorithm": "md5", - "value": "3bf6aea915ce53c4a333be7c03e39bc9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Bougainville" - }, - { - "digest": { - "algorithm": "md5", - "value": "d44e2874a76b60f11d013820fea7ffdd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Chatham" - }, - { - "digest": { - "algorithm": "md5", - "value": "241d697eee1307dd6dfc08a11f171e59" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Chuuk" - }, - { - "digest": { - "algorithm": "md5", - "value": "c685dcf43d11bfb9097e509a74b97915" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Easter" - }, - { - "digest": { - "algorithm": "md5", - "value": "3628842ca74117a9a83817858db3ddb0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Efate" - }, - { - "digest": { - "algorithm": "md5", - "value": "6627b9cb0017606e6f952a14090acc7c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Fakaofo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e4d158614e5462ff8927a35139244c74" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Fiji" - }, - { - "digest": { - "algorithm": "md5", - "value": "1608cb8b619870f7b8183d047ac72f1f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Funafuti" - }, - { - "digest": { - "algorithm": "md5", - "value": "749da2e5bc2e538d1e8ca7b8665b87bf" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Galapagos" - }, - { - "digest": { - "algorithm": "md5", - "value": "bf9a7fffb61f949450eb11d7b9bd6579" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Gambier" - }, - { - "digest": { - "algorithm": "md5", - "value": "cad7f938644a20d22966b795d6fa6bbb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Guadalcanal" - }, - { - "digest": { - "algorithm": "md5", - "value": "0526015a1ff7e7dfbca60f757dcd2eec" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Guam" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e7fd88341bd37b660769d4583914ac2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Honolulu" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec5da58f4f97be571ab6f6a214c665d6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Kanton" - }, - { - "digest": { - "algorithm": "md5", - "value": "8968a98e48e959774532834a61d574d6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Kiritimati" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b88d49739941d66426688be92d8cb3f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Kosrae" - }, - { - "digest": { - "algorithm": "md5", - "value": "20b9b948cd1dfa1c8fd2c0a2367be2ac" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Kwajalein" - }, - { - "digest": { - "algorithm": "md5", - "value": "cbb73f15c73c5dbdb45de4f67d94b768" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Majuro" - }, - { - "digest": { - "algorithm": "md5", - "value": "46c9d9ce01506f535a597e48d5c67a01" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Marquesas" - }, - { - "digest": { - "algorithm": "md5", - "value": "8e29926acdd65fd7f8de4f7edce22aec" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Midway" - }, - { - "digest": { - "algorithm": "md5", - "value": "bfa1894e5ab4434a9ea9e708c7cd81a8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Nauru" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7708ead1c455a1150f15f2ba61340f4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Niue" - }, - { - "digest": { - "algorithm": "md5", - "value": "610d9cde52ba1873260885648df6742f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Norfolk" - }, - { - "digest": { - "algorithm": "md5", - "value": "c737d7031e9b807a52c826981e8e2726" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Noumea" - }, - { - "digest": { - "algorithm": "md5", - "value": "c14f2b93f0df81c20caa20bb4cac3773" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Pago_Pago" - }, - { - "digest": { - "algorithm": "md5", - "value": "78e791cbe655141f5e4e5901a11fd31d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Palau" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec0589826e6e94c15d35e0793e4d210f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Pitcairn" - }, - { - "digest": { - "algorithm": "md5", - "value": "52c0e3301600afc161e43385a4bf1230" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Pohnpei" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f050684532a74c1021f00ed1705305c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Port_Moresby" - }, - { - "digest": { - "algorithm": "md5", - "value": "645bfad3e043f5d16baabe5798ba6ec0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Rarotonga" - }, - { - "digest": { - "algorithm": "md5", - "value": "3f6662cf659ff3bcffcb971685131362" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Saipan" - }, - { - "digest": { - "algorithm": "md5", - "value": "5be128cf184b8acf68e7f3e9e04ef246" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Tahiti" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed097511ad5bd6a55ab50bdb4f8e2e84" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Tarawa" - }, - { - "digest": { - "algorithm": "md5", - "value": "3af899621333a8f27eacc0fbe5db77a4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Tongatapu" - }, - { - "digest": { - "algorithm": "md5", - "value": "bdb73167013a1b194793645b70c402a6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Wake" - }, - { - "digest": { - "algorithm": "md5", - "value": "00efba180ce692a4195fe98dc0537ffa" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/Pacific/Wallis" - }, - { - "digest": { - "algorithm": "md5", - "value": "15cbb27208296793c5022a1215bd4a6a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/WET" - }, - { - "digest": { - "algorithm": "md5", - "value": "4a8110c945de0681a58ccbdcd6f8bd4d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/iso3166.tab" - }, - { - "digest": { - "algorithm": "md5", - "value": "1fd67b378c361dc54d7d115a5659054f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/leap-seconds.list" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c41a1b9a0d0aee6f7a1406db026f1e6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/leapseconds" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec9c81acc6054422efb55e63838501f9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Abidjan" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed769fc086e35325dd259e8f1115bed7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Accra" - }, - { - "digest": { - "algorithm": "md5", - "value": "a72965d49c125f6595366142610fbffb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Addis_Ababa" - }, - { - "digest": { - "algorithm": "md5", - "value": "31f9a89fbee57f160be9e1f918457baf" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Algiers" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7fa3b7bde7630ede748bdf5ebfeea8e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Asmara" - }, - { - "digest": { - "algorithm": "md5", - "value": "8db33a5d4d347bfb6f6cd35830b9d4bd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Bamako" - }, - { - "digest": { - "algorithm": "md5", - "value": "82f8bd3b29ff71b750f0c427e41b49bb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Bangui" - }, - { - "digest": { - "algorithm": "md5", - "value": "ada0c8f8961a54968801fcc06656ee07" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Banjul" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5b2ee58c69b8666fb927bc9f5243753" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Bissau" - }, - { - "digest": { - "algorithm": "md5", - "value": "45759772dc41e82ab3d6ef125b012389" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Blantyre" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e23929df1db5a58f47d3224dc883b07" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Brazzaville" - }, - { - "digest": { - "algorithm": "md5", - "value": "ceeb4ac153b5b727c1e6e8af84735d2f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Bujumbura" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ada40293e59682d9f75cce8ec730c59" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Cairo" - }, - { - "digest": { - "algorithm": "md5", - "value": "07a20b935b08cf9cd0975ab77fdebac1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Casablanca" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e4ad4d2ccc48c16b122b858a4af57a5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Ceuta" - }, - { - "digest": { - "algorithm": "md5", - "value": "086637a6067f16e847362819cd15ad63" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Conakry" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab281ad1ce97d19c9b703b17fa78c715" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Dakar" - }, - { - "digest": { - "algorithm": "md5", - "value": "badffd6b9648ff109f2804135a5c7ec2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Dar_es_Salaam" - }, - { - "digest": { - "algorithm": "md5", - "value": "427708bbd53c1e1a8bd23268ff6e869e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Djibouti" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a4b4553e4e8ea10e9cbbadf458a9d56" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Douala" - }, - { - "digest": { - "algorithm": "md5", - "value": "ab2ab6659fce99648be6970b5cd57bd9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/El_Aaiun" - }, - { - "digest": { - "algorithm": "md5", - "value": "a35344b43e9b03a27f8e078e52689a8b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Freetown" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c688f39e8b824820f44127f07802ead" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Gaborone" - }, - { - "digest": { - "algorithm": "md5", - "value": "91d67d6d22b0e18eaeab27c635c846bd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Harare" - }, - { - "digest": { - "algorithm": "md5", - "value": "57829438a38a564af4be4b33a80c8193" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Johannesburg" - }, - { - "digest": { - "algorithm": "md5", - "value": "4436316e134e52149c0622aa6837a58a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Juba" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ec18710169fe11bb265fe40696eba2e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Kampala" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e8e6c024b9296c90f0d7410d16a62bc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Khartoum" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f83103fb2a3a2ecc6e74ace8988982e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Kigali" - }, - { - "digest": { - "algorithm": "md5", - "value": "de506df183cb961da419c0737c66e7a7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Kinshasa" - }, - { - "digest": { - "algorithm": "md5", - "value": "686412a95fa309a11a4c583df1c750ff" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Lagos" - }, - { - "digest": { - "algorithm": "md5", - "value": "5fec668ca6bd04da5547698872c9994f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Libreville" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7cd58d83db320e1420deb434d626220" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Lome" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5e15465f7ca18b614e75ae5d7a0c387" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Luanda" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e12cfee1bb632fb278e7c5709c8466c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Lubumbashi" - }, - { - "digest": { - "algorithm": "md5", - "value": "f74483d14e883a4cc71a73d9526061e8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Lusaka" - }, - { - "digest": { - "algorithm": "md5", - "value": "35b4459dd988420c673f2e01b0b6cab8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Malabo" - }, - { - "digest": { - "algorithm": "md5", - "value": "7f9e8f75266b2d588c6b115cff3ee201" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Maputo" - }, - { - "digest": { - "algorithm": "md5", - "value": "99433bf80f2d8fb546fa3c84a4c2e9df" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Maseru" - }, - { - "digest": { - "algorithm": "md5", - "value": "49b10fb212e9b4ed0d5deba30a2852d4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Mbabane" - }, - { - "digest": { - "algorithm": "md5", - "value": "81d4ff164371491d2449cf0bef92b99e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Mogadishu" - }, - { - "digest": { - "algorithm": "md5", - "value": "261289fd32869e69f0b8ae623e6b7ae3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Monrovia" - }, - { - "digest": { - "algorithm": "md5", - "value": "929b5c3d23aaf5cf726a99b3eab12796" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Nairobi" - }, - { - "digest": { - "algorithm": "md5", - "value": "1732efaae05dfdc0c8dfc5414c6adb78" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Ndjamena" - }, - { - "digest": { - "algorithm": "md5", - "value": "96b4151452cee30baa626c7cd53e15db" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Niamey" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f9f4d5d48a4c71311e6dcbfe148f212" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Nouakchott" - }, - { - "digest": { - "algorithm": "md5", - "value": "3233f6e943b3a0296446245051385a9f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Ouagadougou" - }, - { - "digest": { - "algorithm": "md5", - "value": "56830dd8320acdad8ddffcfd6dbd0b4d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Porto-Novo" - }, - { - "digest": { - "algorithm": "md5", - "value": "03419233751acbb2bf5a3293eb481669" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Sao_Tome" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3974d87f7d3bee2ec1f358d26803d0d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Tripoli" - }, - { - "digest": { - "algorithm": "md5", - "value": "a0f0f951eb3704772140873371ca6f07" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Tunis" - }, - { - "digest": { - "algorithm": "md5", - "value": "8276b3ef33f1dac1af21caccf9149aad" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Africa/Windhoek" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b250f8d51918d0545e235cd9f8f720a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Adak" - }, - { - "digest": { - "algorithm": "md5", - "value": "698e31a470714c8ae5c06d7313d625fc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Anchorage" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b5649484e663df574d7946ced170de4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Anguilla" - }, - { - "digest": { - "algorithm": "md5", - "value": "e99fe4a93afa17dca858ea2485454e0e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Antigua" - }, - { - "digest": { - "algorithm": "md5", - "value": "ce0c41d63c7be8f3017f82a8df83512d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Araguaina" - }, - { - "digest": { - "algorithm": "md5", - "value": "e235925c56415b0700c948b2b271aad5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/Buenos_Aires" - }, - { - "digest": { - "algorithm": "md5", - "value": "72852dd266d0361001d3fcf3a1f18a3a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/Catamarca" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b59ed0a8731bba638d7af932c10b728" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/Cordoba" - }, - { - "digest": { - "algorithm": "md5", - "value": "55eb5a184ca2ece02f93ee9b642aab89" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/Jujuy" - }, - { - "digest": { - "algorithm": "md5", - "value": "c652774c47b6fe217d1a69eb0e1f1eb1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/La_Rioja" - }, - { - "digest": { - "algorithm": "md5", - "value": "aec33c666720eecb445656e220f30ca6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/Mendoza" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b2f4dfb6a4d0218a5a4c76a37145ed9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/Rio_Gallegos" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8467e5bc44d869d1ed655d0d470c9cf" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/Salta" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3c9bf37703c0c811348f662da855004" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/San_Juan" - }, - { - "digest": { - "algorithm": "md5", - "value": "5b15f0ea78f253ec1fb812e8006f5dbb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/San_Luis" - }, - { - "digest": { - "algorithm": "md5", - "value": "6eaa661c0020d957ad123e2cf49ad273" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/Tucuman" - }, - { - "digest": { - "algorithm": "md5", - "value": "530902d6a523015f18a378b3fff97f78" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Argentina/Ushuaia" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ce88162542fa4f810dcc361d1c32ec9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Aruba" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fb85e687ea4c587f4a3761cfe1e5ca5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Asuncion" - }, - { - "digest": { - "algorithm": "md5", - "value": "2f1781671ec605151a5467a9554a729c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Atikokan" - }, - { - "digest": { - "algorithm": "md5", - "value": "73802ec15c67e9b0d5c1ff2b49117c39" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Bahia" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a8a553d3c47b7bdf4751c2bd61cb6ae" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Bahia_Banderas" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d8d5e7774a6f12a2e689aec8f75357f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Barbados" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4a6a43828f677a305114d09e1e06b21" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Belem" - }, - { - "digest": { - "algorithm": "md5", - "value": "211ca7a2799e5d78f6161eb32f3eb3d0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Belize" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7d8d464ec80927385881aa18f363b4f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Blanc-Sablon" - }, - { - "digest": { - "algorithm": "md5", - "value": "4917cfaf111a7301c65616ad47574792" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Boa_Vista" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd12cc22100dde7836aa510e3c7613f3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Bogota" - }, - { - "digest": { - "algorithm": "md5", - "value": "a2fc9669fd090f98d7b96eaf21546864" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Boise" - }, - { - "digest": { - "algorithm": "md5", - "value": "6a22a54d03950b912135273e9c2415e0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Cambridge_Bay" - }, - { - "digest": { - "algorithm": "md5", - "value": "28d8d59b0983410c007d9978d49674ac" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Campo_Grande" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c01a7b2664f7ec9217d343fa300f210" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Cancun" - }, - { - "digest": { - "algorithm": "md5", - "value": "608d2bc3d83c061531492cef498e8b79" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Caracas" - }, - { - "digest": { - "algorithm": "md5", - "value": "221b0e294cab88eeef452d79ac009107" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Cayenne" - }, - { - "digest": { - "algorithm": "md5", - "value": "37180044ce42538d447c10dc3c607548" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Cayman" - }, - { - "digest": { - "algorithm": "md5", - "value": "07372970c8ef7ac382219ce6a4e483be" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Chicago" - }, - { - "digest": { - "algorithm": "md5", - "value": "891a4fe2303d3ebded57424335c99b8a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Chihuahua" - }, - { - "digest": { - "algorithm": "md5", - "value": "943c34b65c9a0a19bb50e9327ce5e9a5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Ciudad_Juarez" - }, - { - "digest": { - "algorithm": "md5", - "value": "67fb4c172a9343874417fac75d319d41" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Costa_Rica" - }, - { - "digest": { - "algorithm": "md5", - "value": "d207bec20051c4d5bb8e54b1723be23b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Creston" - }, - { - "digest": { - "algorithm": "md5", - "value": "bfede2d00e08e40dc19074737cbf8c92" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Cuiaba" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd702897d50d74d164c1b6bb67672a9c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Curacao" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b83a1b645bda9b8aede493edf8c25c0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Danmarkshavn" - }, - { - "digest": { - "algorithm": "md5", - "value": "220e338409630c6273c14807672a7dcd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Dawson" - }, - { - "digest": { - "algorithm": "md5", - "value": "396eb0e026b549860dc25113ae838960" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Dawson_Creek" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f8f25e235ea64c76a2d09659ee21e2f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Denver" - }, - { - "digest": { - "algorithm": "md5", - "value": "a700fa5e13a20ab3e06d4a5f896b6e03" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Detroit" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b21d4ee5c80545a1f95f11951e2d499" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Dominica" - }, - { - "digest": { - "algorithm": "md5", - "value": "b14b3f38015987c006d8893b1bc7972c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Edmonton" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb6ebe461a11c267945d255acc69b8e6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Eirunepe" - }, - { - "digest": { - "algorithm": "md5", - "value": "3513ff5433b92341ab1386f66b23702f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/El_Salvador" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ca820666cf896e74f044b51e1de41b9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Fort_Nelson" - }, - { - "digest": { - "algorithm": "md5", - "value": "00f0f69357c3e82f79ec19f35a21dbd4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Fortaleza" - }, - { - "digest": { - "algorithm": "md5", - "value": "e8faec3eadc42cbaa6e6c1ef6a2e9411" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Glace_Bay" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec460df83ae9eff705dc8aba0aadbd54" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Goose_Bay" - }, - { - "digest": { - "algorithm": "md5", - "value": "98738a23c0282e933dd3af5df0d9d42c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Grand_Turk" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5609d9e6c1f48e77efabbc333276d9d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Grenada" - }, - { - "digest": { - "algorithm": "md5", - "value": "df3108de8234aa995fb0a878dcfda7e1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Guadeloupe" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ed094baf90cd9d37b7f6accda0cc56a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Guatemala" - }, - { - "digest": { - "algorithm": "md5", - "value": "b55238357e4fb4d3646cf1e5331cf0aa" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Guayaquil" - }, - { - "digest": { - "algorithm": "md5", - "value": "b463a053cd2d69c650c469cdb243be5a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Guyana" - }, - { - "digest": { - "algorithm": "md5", - "value": "8c5b7d47fcf0ca23cd53d328960ca43b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Halifax" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6736758b895a989143f4756a55f585b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Havana" - }, - { - "digest": { - "algorithm": "md5", - "value": "accf46b61d7bc0b1a9e11bdc17c2f3d9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Hermosillo" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd3e15ffd1781924344f84d8e2902e89" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Indiana/Indianapolis" - }, - { - "digest": { - "algorithm": "md5", - "value": "426960d9ac7dca354f6085591e670690" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Indiana/Knox" - }, - { - "digest": { - "algorithm": "md5", - "value": "11f4125774493a478292b53a404d3ff2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Indiana/Marengo" - }, - { - "digest": { - "algorithm": "md5", - "value": "5cf66d9e2f877f27dba9cfeb263c9091" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Indiana/Petersburg" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd8382909920aa3327fd76843307344c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Indiana/Tell_City" - }, - { - "digest": { - "algorithm": "md5", - "value": "28f3533a0ecf2941758c3360fac6438e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Indiana/Vevay" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b01f37b481229b626877101f35338a7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Indiana/Vincennes" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e34f79407d3baa11298b4c7c160547b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Indiana/Winamac" - }, - { - "digest": { - "algorithm": "md5", - "value": "db8cc96ab35507b4cadf99fa5acda183" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Inuvik" - }, - { - "digest": { - "algorithm": "md5", - "value": "ea6b63ac6a7d3f2a9b318f1ea658bd19" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Iqaluit" - }, - { - "digest": { - "algorithm": "md5", - "value": "45ae71c0961ff4b80cea9d309b92d0db" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Jamaica" - }, - { - "digest": { - "algorithm": "md5", - "value": "5acffe9094055be918aca56a0f809d9a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Juneau" - }, - { - "digest": { - "algorithm": "md5", - "value": "390a65003530468a5aa3b24fca6515ef" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Kentucky/Louisville" - }, - { - "digest": { - "algorithm": "md5", - "value": "6fa95ef09a3510bd02e740cf72d40916" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Kentucky/Monticello" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a7b253a20a200552e9b221f83c0a5b8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/La_Paz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d12bbc4b2dad6d6fc8ea5ff0c196ca37" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Lima" - }, - { - "digest": { - "algorithm": "md5", - "value": "f1d9734e0a43180d9f6cff8212d1e617" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Los_Angeles" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a79ee63c892145f078d8e070b706cd0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Maceio" - }, - { - "digest": { - "algorithm": "md5", - "value": "bab9069228e6800c33e35548a07ae0a8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Managua" - }, - { - "digest": { - "algorithm": "md5", - "value": "f0eddc59a63091675d7d8d8fc486c809" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Manaus" - }, - { - "digest": { - "algorithm": "md5", - "value": "395e6db100f6916a69961fb6a1be0d6a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Martinique" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad01aa1f2a47b72cfb7c73e2ff83b2dc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Matamoros" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9ceab023b55257b295c9508e73ed666" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Mazatlan" - }, - { - "digest": { - "algorithm": "md5", - "value": "084496064c523051049d333a0e8cfd9a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Menominee" - }, - { - "digest": { - "algorithm": "md5", - "value": "3616c6dfecb7b35215a3b01d755d9fea" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Merida" - }, - { - "digest": { - "algorithm": "md5", - "value": "b12060a10709e7fc57993bf60c2bc4d7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Metlakatla" - }, - { - "digest": { - "algorithm": "md5", - "value": "7177ee3d9bdd8de6c8a7c5123fd0ce81" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Mexico_City" - }, - { - "digest": { - "algorithm": "md5", - "value": "5109eeab3a8d939f606105b85c60b0e7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Miquelon" - }, - { - "digest": { - "algorithm": "md5", - "value": "07bb86787f3896a9393b025573e61dd5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Moncton" - }, - { - "digest": { - "algorithm": "md5", - "value": "81cc2971b2c139dbee4f01346c780c89" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Monterrey" - }, - { - "digest": { - "algorithm": "md5", - "value": "cc17ac85e9fbebecd90643b1f3a76611" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Montevideo" - }, - { - "digest": { - "algorithm": "md5", - "value": "169791d3462c50758e9dc15c54eec2e8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Montserrat" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7dff265ac59535a1c4c3827fd92d460" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Nassau" - }, - { - "digest": { - "algorithm": "md5", - "value": "5cb912874f96af0bf4fc5e7291744c83" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/New_York" - }, - { - "digest": { - "algorithm": "md5", - "value": "f639812dc2bb2f6ca880d214c67d2cc0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Nome" - }, - { - "digest": { - "algorithm": "md5", - "value": "49051a00939c44b4d9f791386bb06312" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Noronha" - }, - { - "digest": { - "algorithm": "md5", - "value": "12f990513a50f45e51fb1282d02eb7c5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/North_Dakota/Beulah" - }, - { - "digest": { - "algorithm": "md5", - "value": "4051d6bc23c3763c9aafb39fc9802d86" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/North_Dakota/Center" - }, - { - "digest": { - "algorithm": "md5", - "value": "52e5603868f755081b182a1e4d569810" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/North_Dakota/New_Salem" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e0f32548d9641bccbeffc3fb8f4fa0a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Nuuk" - }, - { - "digest": { - "algorithm": "md5", - "value": "50a261a41bb7551e2b9fe7bc67b9b894" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Ojinaga" - }, - { - "digest": { - "algorithm": "md5", - "value": "08769367d15d45aacb5f2ea9b0e5ac02" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Panama" - }, - { - "digest": { - "algorithm": "md5", - "value": "149bb7e12d4313c07e0fd2ae7c5b3389" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Paramaribo" - }, - { - "digest": { - "algorithm": "md5", - "value": "49a21c78cc2d5866aca3738f1f3bde5c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Phoenix" - }, - { - "digest": { - "algorithm": "md5", - "value": "3757a8320aa25020491f9ee37940233f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Port-au-Prince" - }, - { - "digest": { - "algorithm": "md5", - "value": "080e8c8fc25e2bd6083f21726a75682d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Port_of_Spain" - }, - { - "digest": { - "algorithm": "md5", - "value": "7b6c2695b76b4fa33b3e3029415d64ec" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Porto_Velho" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ccac9a1f4225a8dd62ce3d6d7998598" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Puerto_Rico" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0853042f97798beaa0d16024fad99b6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Punta_Arenas" - }, - { - "digest": { - "algorithm": "md5", - "value": "fdc4c87e288b9bffd0c2ec637d7a082d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Rankin_Inlet" - }, - { - "digest": { - "algorithm": "md5", - "value": "aec8c8ccd11e0912801e8dfd1de3ea28" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Recife" - }, - { - "digest": { - "algorithm": "md5", - "value": "5717b9aeb3caf65732ee3c192a380620" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Regina" - }, - { - "digest": { - "algorithm": "md5", - "value": "8353698aad4b50299851c049aa35e96c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Resolute" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fb8e42b4ce95bbe711d83a5e675bbda" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Rio_Branco" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f0f74b25b6a0e2ea397d02af6ae23ff" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Santarem" - }, - { - "digest": { - "algorithm": "md5", - "value": "050d7e7031ca4af681459ad6c6c22d4b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Santiago" - }, - { - "digest": { - "algorithm": "md5", - "value": "85ba715de44a793437b5f23e44bcce5f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Santo_Domingo" - }, - { - "digest": { - "algorithm": "md5", - "value": "69536fff37d510070c626eb0da657067" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Sao_Paulo" - }, - { - "digest": { - "algorithm": "md5", - "value": "437e0b0c86ca915a4dd50da9a7c1704b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Scoresbysund" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd6920eadeda29a351c9ad8e35e6f639" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Sitka" - }, - { - "digest": { - "algorithm": "md5", - "value": "bfe3401d1c66d876c4d960fcfd5bcb14" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/St_Johns" - }, - { - "digest": { - "algorithm": "md5", - "value": "7cc5aaba5a2559a47292a82510a2c6a7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/St_Kitts" - }, - { - "digest": { - "algorithm": "md5", - "value": "915b8fa63ea4e30475c6ea41fddfd495" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/St_Lucia" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ef174ddab0593b746c23efbaf0129c0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/St_Thomas" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6832d328f8381e267f26dfb91e0f91a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/St_Vincent" - }, - { - "digest": { - "algorithm": "md5", - "value": "e62f327b9486ceebbbad89a39ac3309d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Swift_Current" - }, - { - "digest": { - "algorithm": "md5", - "value": "2cd3df227a2deb136f75218cfbaa4e5d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Tegucigalpa" - }, - { - "digest": { - "algorithm": "md5", - "value": "c4fa2cad2fafe56e622901d50e2bf6fa" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Thule" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4a7f38b838c64421ad016a9b763ec43" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Tijuana" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba66078f1ce906aac81fffe9acc40f16" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Toronto" - }, - { - "digest": { - "algorithm": "md5", - "value": "5bb8b897af56a848ba5eb0548c1f2c9d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Tortola" - }, - { - "digest": { - "algorithm": "md5", - "value": "dee05aec51b79e102657269cb1febe75" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Vancouver" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef9919a51fb7866d138915a4b158debf" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Whitehorse" - }, - { - "digest": { - "algorithm": "md5", - "value": "55f03af1c6f24105d5fe6b0ae24d5a8e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Winnipeg" - }, - { - "digest": { - "algorithm": "md5", - "value": "5dfbc20a0f795e8c0c77dec86ee3d7f0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/America/Yakutat" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e44c1d96c54af5c9d874e76b1b17c08" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/Casey" - }, - { - "digest": { - "algorithm": "md5", - "value": "036d3f7e6d22809a01e6aca58717530b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/Davis" - }, - { - "digest": { - "algorithm": "md5", - "value": "10f8571e12e98f8874e7583b8ea2e597" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/DumontDUrville" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b7e212cc64fe0ac2825238a483660b4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/Macquarie" - }, - { - "digest": { - "algorithm": "md5", - "value": "de0a7626a0a437ee1ef5d782503f629d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/Mawson" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb7bb66d58e9ab33b9cc2839faea9c31" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/McMurdo" - }, - { - "digest": { - "algorithm": "md5", - "value": "ad8cfbf06a19859e66c979fae4bb3c5a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/Palmer" - }, - { - "digest": { - "algorithm": "md5", - "value": "16f3298279784e90bde1e8238b9d9103" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/Rothera" - }, - { - "digest": { - "algorithm": "md5", - "value": "76d899d2dca5b5276a60eb0bce9d97ab" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/Syowa" - }, - { - "digest": { - "algorithm": "md5", - "value": "55f00cb63041ae4e6898c7f64b87f19e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/Troll" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ae7beafd40dd4726725b6a0c8788af6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Antarctica/Vostok" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ca7e4b504db571fdfcab1553d0a098e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Aden" - }, - { - "digest": { - "algorithm": "md5", - "value": "8be7a046d9f4e67c8c375ec25a613910" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Almaty" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ade536282fc7cf3537fb8073624dc9d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Amman" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f3438e1febbd3f0861c203c059de63f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Anadyr" - }, - { - "digest": { - "algorithm": "md5", - "value": "026959ede1cae7ac6da7e681677204b8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Aqtau" - }, - { - "digest": { - "algorithm": "md5", - "value": "e2efdf278efe512de5a972dcd70d4c7d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Aqtobe" - }, - { - "digest": { - "algorithm": "md5", - "value": "54929ad4f954a71ec9026b86a3fd1985" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Ashgabat" - }, - { - "digest": { - "algorithm": "md5", - "value": "98b887aa9064fe5020fe14fc128865ec" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Atyrau" - }, - { - "digest": { - "algorithm": "md5", - "value": "0b11dd06d37f0abb226531b730e65400" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Baghdad" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb07809f0749541b5b5a1d3b713fa58f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Bahrain" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b12cae41779919b5d60dfa98c71bbd2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Baku" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b611147ced46b14eca886f2ac93897a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Bangkok" - }, - { - "digest": { - "algorithm": "md5", - "value": "df39b7f3a0c8c25f9a50c2c871d8a4c9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Barnaul" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e66d351f31f8c3c174d5b2bd71ec7f1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Beirut" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7d91c8f7ff1dcb5d5f7df9f1768e70f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Bishkek" - }, - { - "digest": { - "algorithm": "md5", - "value": "93e6b0af9ccaae6cf50e785cee6e1b58" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Brunei" - }, - { - "digest": { - "algorithm": "md5", - "value": "efb185473882277859efc5b0aac0849a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Chita" - }, - { - "digest": { - "algorithm": "md5", - "value": "373fb0fa1b5156a708f29200f76cd8ae" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Choibalsan" - }, - { - "digest": { - "algorithm": "md5", - "value": "72f03cc5ade5ad93411ef40d8699a6e1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Colombo" - }, - { - "digest": { - "algorithm": "md5", - "value": "e47cc0035fe7bad33b075b5905c0cc55" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Damascus" - }, - { - "digest": { - "algorithm": "md5", - "value": "d805a94b8a223917027747f759f06bbe" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Dhaka" - }, - { - "digest": { - "algorithm": "md5", - "value": "fa379f08f772d08de23fc3c73e158946" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Dili" - }, - { - "digest": { - "algorithm": "md5", - "value": "c931b9e96ab8a70d45e28be63c734a87" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Dubai" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b6c6a706b671b48f593d87895ce2ea0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Dushanbe" - }, - { - "digest": { - "algorithm": "md5", - "value": "d7d01732119bad8db0f22a04381d3573" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Famagusta" - }, - { - "digest": { - "algorithm": "md5", - "value": "a49bb56315c938fc09d47d8dacb14e98" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Gaza" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e417c7055c50dcf1b7f3c1c44d03fad" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Hebron" - }, - { - "digest": { - "algorithm": "md5", - "value": "88dde2aa1626e6b9e2fe1f5ebe940b4a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Ho_Chi_Minh" - }, - { - "digest": { - "algorithm": "md5", - "value": "d513952f9c74ed97b93efd5005b5c576" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Hong_Kong" - }, - { - "digest": { - "algorithm": "md5", - "value": "f72bd40e5f51f66b344d2e08fd80200d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Hovd" - }, - { - "digest": { - "algorithm": "md5", - "value": "b604a363a3ed99022a6f552af517540d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Irkutsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "05b5858ca770290090d094e135737541" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Jakarta" - }, - { - "digest": { - "algorithm": "md5", - "value": "62f74e0cf69e8f88081f689ea1381b2a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Jayapura" - }, - { - "digest": { - "algorithm": "md5", - "value": "29c67190c2fd37b9b20f8f4adee00f3c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Jerusalem" - }, - { - "digest": { - "algorithm": "md5", - "value": "2853aa10b99014cc705524cae9e43a67" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Kabul" - }, - { - "digest": { - "algorithm": "md5", - "value": "5677d063fd3cf8b788bf664f54b9c419" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Kamchatka" - }, - { - "digest": { - "algorithm": "md5", - "value": "19930d65b4125c8128983ffde0691200" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Karachi" - }, - { - "digest": { - "algorithm": "md5", - "value": "7939b8f92097d54d59a631cca0092c41" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Kathmandu" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2a3e630208dd5c6cd3b0e9c081347b2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Khandyga" - }, - { - "digest": { - "algorithm": "md5", - "value": "cfb90a3578b8f302b2526498d2b4ca40" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Kolkata" - }, - { - "digest": { - "algorithm": "md5", - "value": "3cda5c7c06ae02cc3e5351ed398c7613" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Krasnoyarsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d8409fe44b7ecc166f541f04234793c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Kuala_Lumpur" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c4985f433ff45b6ad76bef87f5c1c79" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Kuching" - }, - { - "digest": { - "algorithm": "md5", - "value": "3e7718024855dfa30bc82b9f0b4fb717" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Kuwait" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2c00da9d237073167dc8331909c9c85" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Macau" - }, - { - "digest": { - "algorithm": "md5", - "value": "448a29503887fc63a9fb69b4a8e3ab2d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Magadan" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa4e30a94a3e14960b137b63b4278874" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Makassar" - }, - { - "digest": { - "algorithm": "md5", - "value": "e04e44fd2f98d23e5e6719d65ae36d63" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Manila" - }, - { - "digest": { - "algorithm": "md5", - "value": "b1576cf344e70afa9fcae16583aca8ea" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Muscat" - }, - { - "digest": { - "algorithm": "md5", - "value": "1e13ac7c88c934b218786855c246a6f3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Nicosia" - }, - { - "digest": { - "algorithm": "md5", - "value": "0c366d978dd517e5ab54fb2f70f8ad60" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Novokuznetsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "1fb02c26c81512adbf9bef5bd339a03a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Novosibirsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8981eecd7ec9ff7e57456298c24953f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Omsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "c4431cf76637c0944b4627cc09251958" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Oral" - }, - { - "digest": { - "algorithm": "md5", - "value": "53d3e797d407be7619f4419d0e2a85ec" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Phnom_Penh" - }, - { - "digest": { - "algorithm": "md5", - "value": "446211dc040d3b9caecce04649a009f4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Pontianak" - }, - { - "digest": { - "algorithm": "md5", - "value": "f01811604a3c73db2f2911392a9ae7a7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Pyongyang" - }, - { - "digest": { - "algorithm": "md5", - "value": "831bb610516fd1cf7aea5f693d837a10" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Qatar" - }, - { - "digest": { - "algorithm": "md5", - "value": "a234b6eb95b96eafaf9564247025a7e7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Qostanay" - }, - { - "digest": { - "algorithm": "md5", - "value": "d955c76d6f43ef75a67c5fa1093d9da1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Qyzylorda" - }, - { - "digest": { - "algorithm": "md5", - "value": "186d23960b476acbff47769fece94ee3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Riyadh" - }, - { - "digest": { - "algorithm": "md5", - "value": "9a1e45ed6f017b2265f69a2be33cdfbf" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Sakhalin" - }, - { - "digest": { - "algorithm": "md5", - "value": "77e9f4211a856b118ad3da5c366aa848" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Samarkand" - }, - { - "digest": { - "algorithm": "md5", - "value": "7e1d84318e340ab006d01461fba52b92" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Seoul" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b1a92d8e5e648243b2183c84f199c3b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Shanghai" - }, - { - "digest": { - "algorithm": "md5", - "value": "a847b7a0828f09fcdf5851376b3927bf" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Singapore" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a01ab6db813c33da08b072372019212" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Srednekolymsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "1ae5bf24945a19c663c6ac813ec95c1e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Taipei" - }, - { - "digest": { - "algorithm": "md5", - "value": "f608297b2a950703c0135cfdf8ab7668" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Tashkent" - }, - { - "digest": { - "algorithm": "md5", - "value": "318d34202f383da22d279690e84b6bf3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Tbilisi" - }, - { - "digest": { - "algorithm": "md5", - "value": "271dd3617c5a3d2452d46bb699154368" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Tehran" - }, - { - "digest": { - "algorithm": "md5", - "value": "b89b24e7d086f859e3283ae5d1367b01" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Thimphu" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d91f89cb6804a274a9f3bbe2e1a6aa7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Tokyo" - }, - { - "digest": { - "algorithm": "md5", - "value": "35ddb18b450d1016b01f2e9e910b2538" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Tomsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "12bb18c0a18e1de26befe511b315996d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Ulaanbaatar" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef68bd8e3f137d247cf2c61ab578eed8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Urumqi" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6011fb7009e9cf42cfacc5fe20101d6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Ust-Nera" - }, - { - "digest": { - "algorithm": "md5", - "value": "1beadd83fc439681e4404a445300aac9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Vientiane" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fc131b824606c8ed71148218c2e6454" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Vladivostok" - }, - { - "digest": { - "algorithm": "md5", - "value": "454aa60abecafbd2e832a00a31d3e3e2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Yakutsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "a24861e336e5a090a4d6256b2d3fd2fb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Yangon" - }, - { - "digest": { - "algorithm": "md5", - "value": "980df10694e0290916dbc74a32af629f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Yekaterinburg" - }, - { - "digest": { - "algorithm": "md5", - "value": "d58e3945d0c3065010255a3bc01c54aa" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Asia/Yerevan" - }, - { - "digest": { - "algorithm": "md5", - "value": "a13914abcc5640d15632d089797bb284" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/Azores" - }, - { - "digest": { - "algorithm": "md5", - "value": "5173b285312f18b22354d48ae19fc6a2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/Bermuda" - }, - { - "digest": { - "algorithm": "md5", - "value": "ef376b7361c34aba3e90536dfb3893fe" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/Canary" - }, - { - "digest": { - "algorithm": "md5", - "value": "25a133c43bb44f91f26c4b18d351c742" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/Cape_Verde" - }, - { - "digest": { - "algorithm": "md5", - "value": "288afde48c79b46ca40ebeb8298d0e20" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/Faroe" - }, - { - "digest": { - "algorithm": "md5", - "value": "9fdefa5137eebd9c11127fe1a99daea0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/Madeira" - }, - { - "digest": { - "algorithm": "md5", - "value": "a9b3d052abfe9bf0bec3e8e75433093c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/Reykjavik" - }, - { - "digest": { - "algorithm": "md5", - "value": "db10acee6d246a53cf2426fdabf5319d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/South_Georgia" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c356223aa9dedbbb4a79737930eb982" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/St_Helena" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9352a1534bb09c937199320843e2d95" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Atlantic/Stanley" - }, - { - "digest": { - "algorithm": "md5", - "value": "35076b6aac7b0f2f860132d77362ab86" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Adelaide" - }, - { - "digest": { - "algorithm": "md5", - "value": "c415b66f57d802e6f96fc95d9ee5e483" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Brisbane" - }, - { - "digest": { - "algorithm": "md5", - "value": "133925a92d629937b4139aa30b75fb5c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Broken_Hill" - }, - { - "digest": { - "algorithm": "md5", - "value": "3524c2585eac0bfdc3aa1dc5c7022732" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Darwin" - }, - { - "digest": { - "algorithm": "md5", - "value": "918f1c6aed315c9f8b2fc67b2e8df36d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Eucla" - }, - { - "digest": { - "algorithm": "md5", - "value": "9eb02ed277c28ecd235528bf60c3e3b9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Hobart" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5347ee32dd9e703a7a1c3abf37dc25c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Lindeman" - }, - { - "digest": { - "algorithm": "md5", - "value": "ac6f86b11324550705cabbe3093e00a6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Lord_Howe" - }, - { - "digest": { - "algorithm": "md5", - "value": "442c6812b061fb60da75716d5d16cc2f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Melbourne" - }, - { - "digest": { - "algorithm": "md5", - "value": "e2007745888f601e5157858820c143b7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Perth" - }, - { - "digest": { - "algorithm": "md5", - "value": "59c8adef52e0a6b7761fe1e400ae903d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Australia/Sydney" - }, - { - "digest": { - "algorithm": "md5", - "value": "c1b810cf70ea11ada666f5b34be46595" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/CET" - }, - { - "digest": { - "algorithm": "md5", - "value": "732004a77cb6448ebf414858c295751f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/CST6CDT" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbb41cead7a09220ad77879552ecae4c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/EET" - }, - { - "digest": { - "algorithm": "md5", - "value": "855f61d1a4315379c374f910ed3dfc30" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/EST" - }, - { - "digest": { - "algorithm": "md5", - "value": "f89399a89abf0036f3b3f14d35bb3ea5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/EST5EDT" - }, - { - "digest": { - "algorithm": "md5", - "value": "770c33e1f220a061cec97b966f0b5217" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT" - }, - { - "digest": { - "algorithm": "md5", - "value": "c696e82b251f88f582b4d67eb5c78fc4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+1" - }, - { - "digest": { - "algorithm": "md5", - "value": "1095413466df852fe8d36d81525f6258" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+10" - }, - { - "digest": { - "algorithm": "md5", - "value": "8eb02343aa15db73bf2e2dcc76f061db" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+11" - }, - { - "digest": { - "algorithm": "md5", - "value": "48a13d4f4dd50543fbcc9145b176c2e0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+12" - }, - { - "digest": { - "algorithm": "md5", - "value": "8b21da96dd302823bc211c31da699f7a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+2" - }, - { - "digest": { - "algorithm": "md5", - "value": "4746574c934e6d3875cb60e38b79c331" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+3" - }, - { - "digest": { - "algorithm": "md5", - "value": "f103487ab6d8dccf424e4f79b25c39cb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+4" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f51136d0564fdd7e3dd67b302a46eb9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+5" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2d9d838195a445a7160b95f3f971adf" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+6" - }, - { - "digest": { - "algorithm": "md5", - "value": "a04d09d3666354ec0abaca0665210ee0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+7" - }, - { - "digest": { - "algorithm": "md5", - "value": "0819231a1b5d44833cb07754bc951c8d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+8" - }, - { - "digest": { - "algorithm": "md5", - "value": "9109cf9a05809a9f2072a036bbf54cba" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT+9" - }, - { - "digest": { - "algorithm": "md5", - "value": "fc5942c4d09028b980a27c7c0de341ce" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-1" - }, - { - "digest": { - "algorithm": "md5", - "value": "d49650b362465b8298b84e680532f3a2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-10" - }, - { - "digest": { - "algorithm": "md5", - "value": "82a7e1c831c8beb52852a6e2580775bd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-11" - }, - { - "digest": { - "algorithm": "md5", - "value": "9df75a8af81da5c69ba6ecba90d68d40" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-12" - }, - { - "digest": { - "algorithm": "md5", - "value": "7a618417df5ecb5e63f1ac095720fbfb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-13" - }, - { - "digest": { - "algorithm": "md5", - "value": "a097ff40f5652d40be91f19bb6798601" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-14" - }, - { - "digest": { - "algorithm": "md5", - "value": "436f0d85cdbaa48b97e1d050ba233653" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-2" - }, - { - "digest": { - "algorithm": "md5", - "value": "02c64d3691089f1e9330f7e86ebe34f5" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-3" - }, - { - "digest": { - "algorithm": "md5", - "value": "2100cdb1fecebace1e729f3aa7172f7f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-4" - }, - { - "digest": { - "algorithm": "md5", - "value": "b55c099fa2b2fa13c680526a97371de3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-5" - }, - { - "digest": { - "algorithm": "md5", - "value": "691e59d8a514db6df8ae0dde07e77185" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-6" - }, - { - "digest": { - "algorithm": "md5", - "value": "7bf4ff6683a5009dcd658fc028199410" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-7" - }, - { - "digest": { - "algorithm": "md5", - "value": "126e72fb9d16bd1c008724b13d3734bb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-8" - }, - { - "digest": { - "algorithm": "md5", - "value": "45027768b82eaecae630321f02e5ec41" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/GMT-9" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e1fcdd86bdc00516ff7f914faa0cbdd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Etc/UTC" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ba2ad14ee35457e1e068411184d3aaa" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Amsterdam" - }, - { - "digest": { - "algorithm": "md5", - "value": "49b94cc3cb044266cde3b611d1a0c57f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Andorra" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d20db3c4d5ad6ce93e3cf3591fb421d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Astrakhan" - }, - { - "digest": { - "algorithm": "md5", - "value": "8fb9e681e4564041dcf7010f3f5fc45c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Athens" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ee0e8359554f4a747274f03d0910989" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Belgrade" - }, - { - "digest": { - "algorithm": "md5", - "value": "c0bccf5cdc5f2795f97b142b4ea29125" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Berlin" - }, - { - "digest": { - "algorithm": "md5", - "value": "77bd0d030bdf13fd8f98730a24e3c40c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Brussels" - }, - { - "digest": { - "algorithm": "md5", - "value": "b5e8af116446df9b95634d5e30553b44" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Bucharest" - }, - { - "digest": { - "algorithm": "md5", - "value": "2226671a44ef08e194f40bcb60dcd419" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Budapest" - }, - { - "digest": { - "algorithm": "md5", - "value": "2f1d66cd3d511f637e6aaa45839c6ac2" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Chisinau" - }, - { - "digest": { - "algorithm": "md5", - "value": "b022f731a55c43a3b0646521e0eb8ea8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Copenhagen" - }, - { - "digest": { - "algorithm": "md5", - "value": "af69ff380358b3ecfa59b918568ace9a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Dublin" - }, - { - "digest": { - "algorithm": "md5", - "value": "e48a2577e378c1f14bc5b21edd0668f8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Gibraltar" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a8733a6539b92077fa6b5fe6be8245b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Guernsey" - }, - { - "digest": { - "algorithm": "md5", - "value": "e947cbe85b8af75b805564803081540d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Helsinki" - }, - { - "digest": { - "algorithm": "md5", - "value": "82f47a30e275e66e50c3b6a377877540" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Isle_of_Man" - }, - { - "digest": { - "algorithm": "md5", - "value": "5853f0bce3f294b56398ff8bc0d951fd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Istanbul" - }, - { - "digest": { - "algorithm": "md5", - "value": "e57f2b6bcdd0e53ca882596695161a68" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Jersey" - }, - { - "digest": { - "algorithm": "md5", - "value": "43d4b6ddaa0ade412f9e5472eb137868" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Kaliningrad" - }, - { - "digest": { - "algorithm": "md5", - "value": "d3c38abea1cb5eebfdfee5e527c94c1a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Kirov" - }, - { - "digest": { - "algorithm": "md5", - "value": "e9cf1387713bc12ceb7de85b5e5b5671" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Kyiv" - }, - { - "digest": { - "algorithm": "md5", - "value": "345fd5ce3a87b9c0bd322b61f6331342" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Lisbon" - }, - { - "digest": { - "algorithm": "md5", - "value": "c36d2d223c51c64dbf00e2ff5813fd0e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Ljubljana" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f87f702834b27b63fc27281e74dcc3d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/London" - }, - { - "digest": { - "algorithm": "md5", - "value": "b25f3ae43dcf15302c1b0a71fdf340dc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Luxembourg" - }, - { - "digest": { - "algorithm": "md5", - "value": "e78e422ab96a8de702819e663c15013b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Madrid" - }, - { - "digest": { - "algorithm": "md5", - "value": "99d6e433f5ccd402a46c0fcbef66bd9e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Malta" - }, - { - "digest": { - "algorithm": "md5", - "value": "893e028fe57376d9a8a091e4e1dcae70" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Minsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "89c70b030d668dd67730998c28a0b1ed" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Monaco" - }, - { - "digest": { - "algorithm": "md5", - "value": "6b15f68bad9d371fc98fad2782d7e82f" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Moscow" - }, - { - "digest": { - "algorithm": "md5", - "value": "11f385db675c4ec90b4ce0935031a671" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Oslo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1dd81e15a0bb517fff5eb947e7405002" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Paris" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb40335e272681dc9dc77d63ce93dc16" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Prague" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f2f9dc4d9358bcf17f28f88cd97fd10" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Riga" - }, - { - "digest": { - "algorithm": "md5", - "value": "37274bbcf525a84d840afe61f1365c55" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Rome" - }, - { - "digest": { - "algorithm": "md5", - "value": "286ea01b0d9339ff0e0cd4b53f3d85dc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Samara" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba48ac11060eacc11a5e76cdc49851ee" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Sarajevo" - }, - { - "digest": { - "algorithm": "md5", - "value": "1919380cef6575c030b93b5f65710967" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Saratov" - }, - { - "digest": { - "algorithm": "md5", - "value": "9e6eaac58d413631f4262784b0fcc22d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Simferopol" - }, - { - "digest": { - "algorithm": "md5", - "value": "3bbeb334dfaafd7ec695a2a478c5e20b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Skopje" - }, - { - "digest": { - "algorithm": "md5", - "value": "1110ca10be512a80f390a33a916aee92" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Sofia" - }, - { - "digest": { - "algorithm": "md5", - "value": "c1979e7b673e90d7db03860323f07146" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Stockholm" - }, - { - "digest": { - "algorithm": "md5", - "value": "52313acf481d218f026c7cc632b292c1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Tallinn" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ad20e873e03e2566d1cdd2196d89550" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Tirane" - }, - { - "digest": { - "algorithm": "md5", - "value": "5fae24f620a222dd3b47c94b8a98b93a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Ulyanovsk" - }, - { - "digest": { - "algorithm": "md5", - "value": "975e4c6898e10cc0815ac6b89908b915" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Vaduz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9fed3a7fdba721c42f51abc347e93c53" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Vienna" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed17da43fb65b6fb649275dc877692e3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Vilnius" - }, - { - "digest": { - "algorithm": "md5", - "value": "a58aac51e9483328f9d36295ae809ed9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Volgograd" - }, - { - "digest": { - "algorithm": "md5", - "value": "736ca26b3fc6af375a885dc8f82a9a2a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Warsaw" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a49c2cd176bf4f7ba7785b77596f86b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Zagreb" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d9f7186b8dbce5904bb4a4b28dad0ab" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Europe/Zurich" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5ebd8a14d8d308822445d2d1b78699e" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Factory" - }, - { - "digest": { - "algorithm": "md5", - "value": "80d5d60555f061a54ccc5f87889a49de" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/HST" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9dad2d2db3df0a3dffc90184196c7a8" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Antananarivo" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7ad8d802c9c522a61b39a6eb67ad4ca" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Chagos" - }, - { - "digest": { - "algorithm": "md5", - "value": "f6820a055ed09aba062f65a48575d019" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Christmas" - }, - { - "digest": { - "algorithm": "md5", - "value": "03ef621eba95050ebf686ab2949ec1ac" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Cocos" - }, - { - "digest": { - "algorithm": "md5", - "value": "6439fbfbb3a90f645e01cb67764f8b44" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Comoro" - }, - { - "digest": { - "algorithm": "md5", - "value": "e89c3c302a4b230267745bbb6dd2f40d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Kerguelen" - }, - { - "digest": { - "algorithm": "md5", - "value": "376c23aa9f6ec14d55687b383fbf0b5a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Mahe" - }, - { - "digest": { - "algorithm": "md5", - "value": "2b28b29dafae887596054ecf033d48be" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Maldives" - }, - { - "digest": { - "algorithm": "md5", - "value": "132b9577ec0a2ff0a334282329291240" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Mauritius" - }, - { - "digest": { - "algorithm": "md5", - "value": "87078b3dd20353c2fbc3ddd282240756" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Mayotte" - }, - { - "digest": { - "algorithm": "md5", - "value": "8ff3a1f68a2923ae78d240cda7af63f1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Indian/Reunion" - }, - { - "digest": { - "algorithm": "md5", - "value": "29cb0b90193dfb5eb947584977a4d6cd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/MET" - }, - { - "digest": { - "algorithm": "md5", - "value": "1cca76c202879f547fcebdef72597ca7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/MST" - }, - { - "digest": { - "algorithm": "md5", - "value": "09c7fb1df9b4dc76a0c50477da6dc47c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/MST7MDT" - }, - { - "digest": { - "algorithm": "md5", - "value": "50211ce2211db05ca7d38f1ce6491b69" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/PST8PDT" - }, - { - "digest": { - "algorithm": "md5", - "value": "998dbbde33c5c852ee2cb75a48a6d3b4" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Apia" - }, - { - "digest": { - "algorithm": "md5", - "value": "d2ea7ff9e13d644f40286641fdc361e3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Auckland" - }, - { - "digest": { - "algorithm": "md5", - "value": "d42793d839cb8fa9d05c100eb1efdb28" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Bougainville" - }, - { - "digest": { - "algorithm": "md5", - "value": "0946632354d27bf74a1721924a7dcdf1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Chatham" - }, - { - "digest": { - "algorithm": "md5", - "value": "1435ab2a73b54938b563e226fe4d0508" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Chuuk" - }, - { - "digest": { - "algorithm": "md5", - "value": "f4bbd740440d3b3b048adc3bdbcbaac3" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Easter" - }, - { - "digest": { - "algorithm": "md5", - "value": "a357fcf734cd98cac37e4ab9370d8932" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Efate" - }, - { - "digest": { - "algorithm": "md5", - "value": "85b576e0608a5848d1da321d9d6c06be" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Fakaofo" - }, - { - "digest": { - "algorithm": "md5", - "value": "074742dc624a344ef2ab990d3b1d67a6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Fiji" - }, - { - "digest": { - "algorithm": "md5", - "value": "74d735bed0a532a2c27784916beef8e6" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Funafuti" - }, - { - "digest": { - "algorithm": "md5", - "value": "a28a88b7c6df97eb40283c1bc5f6eed7" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Galapagos" - }, - { - "digest": { - "algorithm": "md5", - "value": "11f1dc2b715cbd8821ef4f89bd960dc1" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Gambier" - }, - { - "digest": { - "algorithm": "md5", - "value": "c7a2efa6c29c9195e93eab86e058badc" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Guadalcanal" - }, - { - "digest": { - "algorithm": "md5", - "value": "285aaeaffd6d6aa07ab390858b896cc9" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Guam" - }, - { - "digest": { - "algorithm": "md5", - "value": "d02cbf7f19ee5a8a547d7fb2b426470a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Honolulu" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9fd16abda344e8c135b1b79b9f1ac34" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Kanton" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8222c970f4c95bda863ebf03d52e2da" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Kiritimati" - }, - { - "digest": { - "algorithm": "md5", - "value": "99d36547b52eaf698f39447bd45a3103" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Kosrae" - }, - { - "digest": { - "algorithm": "md5", - "value": "2c512aff3f406966539cebb97a183544" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Kwajalein" - }, - { - "digest": { - "algorithm": "md5", - "value": "cb4f9015c9d58301a5a44cd71f5b011c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Majuro" - }, - { - "digest": { - "algorithm": "md5", - "value": "51b1e8b6e86103b9f9a4f04d17a3c546" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Marquesas" - }, - { - "digest": { - "algorithm": "md5", - "value": "c106e3400e639b24f075f3775a4a1dfb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Midway" - }, - { - "digest": { - "algorithm": "md5", - "value": "75e823d542d6adb38a274cb48c431e0d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Nauru" - }, - { - "digest": { - "algorithm": "md5", - "value": "7257c7db23f0505118ff6c4f6d18fb5d" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Niue" - }, - { - "digest": { - "algorithm": "md5", - "value": "11486bc573f0d51d7ab7fd4e0398075b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Norfolk" - }, - { - "digest": { - "algorithm": "md5", - "value": "69e2dff0f1ea545d0a2296de58af2feb" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Noumea" - }, - { - "digest": { - "algorithm": "md5", - "value": "8993ee40cd7fab20f29e9956f19011cd" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Pago_Pago" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f0762eae9593b7f3eeec90b1c72597b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Palau" - }, - { - "digest": { - "algorithm": "md5", - "value": "b768842427d172f99be27fc7c2307225" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Pitcairn" - }, - { - "digest": { - "algorithm": "md5", - "value": "60d4c5e87daa5c91e54749adab5efd1b" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Pohnpei" - }, - { - "digest": { - "algorithm": "md5", - "value": "67a4e0095e862322f9fd58b4b53ee4f0" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Port_Moresby" - }, - { - "digest": { - "algorithm": "md5", - "value": "9f51051717fc75642176943d33566364" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Rarotonga" - }, - { - "digest": { - "algorithm": "md5", - "value": "fff75ca8efe77dc9a70ec3e96a7be64a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Saipan" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5460332d89aa566662b1d2f1f9e5d9a" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Tahiti" - }, - { - "digest": { - "algorithm": "md5", - "value": "fd4a5d958ef4c7e600f6f922c2160dda" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Tarawa" - }, - { - "digest": { - "algorithm": "md5", - "value": "b2aac04a4ac0988151aa373fd0e69058" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Tongatapu" - }, - { - "digest": { - "algorithm": "md5", - "value": "db7775d45e100c54698e7af0a6db2293" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Wake" - }, - { - "digest": { - "algorithm": "md5", - "value": "eeda2dedff9e72fbc3948f830ee71a2c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/Pacific/Wallis" - }, - { - "digest": { - "algorithm": "md5", - "value": "73efb0cc242058580910e1e028403b13" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/right/WET" - }, - { - "digest": { - "algorithm": "md5", - "value": "200afd20c1149b65bffb2f605e4e3203" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/tzdata.zi" - }, - { - "digest": { - "algorithm": "md5", - "value": "bdcaaded85ea77b872e0be73991a221c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/zone.tab" - }, - { - "digest": { - "algorithm": "md5", - "value": "de5322429c76f4ba9a37eff7a9c0b69c" - }, - "isConfigFile": false, - "path": "/usr/share/zoneinfo/zone1970.tab" - } - ], - "installedSize": 2554, - "maintainer": "GNU Libc Maintainers \u003cdebian-glibc@lists.debian.org\u003e", - "package": "tzdata", - "provides": [ - "tzdata-bookworm" - ], - "source": "", - "sourceVersion": "", - "version": "2024a-0+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "tzdata", - "purl": "pkg:deb/debian/tzdata@2024a-0+deb12u1?arch=all\u0026distro=debian-12", - "type": "deb", - "version": "2024a-0+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:usr-is-merged:usr-is-merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:usr-is-merged:usr_is_merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:usr_is_merged:usr-is-merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:usr_is_merged:usr_is_merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:usr-is:usr-is-merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:usr-is:usr_is_merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:usr_is:usr-is-merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:usr_is:usr_is_merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:usr:usr-is-merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:usr:usr_is_merged:37\\~deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "2ff6c78c4500ed6a", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/usr-is-merged/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/usr-is-merged/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/usr-is-merged/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/usr-is-merged/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/usr-is-merged/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/usr-is-merged/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/usr-is-merged.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/usr-is-merged.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "all", - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "01fc600bd9529354b3074cf0113735d5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/usr-is-merged/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b102ed5ed70d723577ba8b6e53989fa3" - }, - "isConfigFile": false, - "path": "/usr/share/doc/usr-is-merged/copyright" - } - ], - "installedSize": 13, - "maintainer": "Marco d'Itri \u003cmd@linux.it\u003e", - "package": "usr-is-merged", - "source": "usrmerge", - "sourceVersion": "", - "version": "37~deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "usr-is-merged", - "purl": "pkg:deb/debian/usr-is-merged@37~deb12u1?arch=all\u0026upstream=usrmerge\u0026distro=debian-12", - "type": "deb", - "version": "37~deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:util-linux:util-linux:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util-linux:util_linux:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util_linux:util-linux:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util_linux:util_linux:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util:util-linux:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util:util_linux:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "08f3410f0a4602ff", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSLA" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/util-linux.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/util-linux.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/util-linux.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/util-linux.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "util-linux-extra" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "701b160660a91ebeaaf19112dc0d36b1" - }, - "isConfigFile": false, - "path": "/bin/dmesg" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b6d1944ac49dbd9ef61deb5abdac9b0" - }, - "isConfigFile": false, - "path": "/bin/findmnt" - }, - { - "digest": { - "algorithm": "md5", - "value": "fb093a05226f31e3156e588afcd56a6c" - }, - "isConfigFile": false, - "path": "/bin/lsblk" - }, - { - "digest": { - "algorithm": "md5", - "value": "b0621270d14c3109514711b9d4316beb" - }, - "isConfigFile": false, - "path": "/bin/more" - }, - { - "digest": { - "algorithm": "md5", - "value": "3c37da928dd06de0547c7320627b37b8" - }, - "isConfigFile": false, - "path": "/bin/mountpoint" - }, - { - "digest": { - "algorithm": "md5", - "value": "8f382d4d347e85b03ebc0e5811af80fc" - }, - "isConfigFile": false, - "path": "/bin/su" - }, - { - "digest": { - "algorithm": "md5", - "value": "0fa8937daaa8a055d493fd0cf01fef74" - }, - "isConfigFile": false, - "path": "/bin/wdctl" - }, - { - "digest": { - "algorithm": "md5", - "value": "b8b44b045259525e0fae9e38fdb2aeeb" - }, - "isConfigFile": true, - "path": "/etc/pam.d/runuser" - }, - { - "digest": { - "algorithm": "md5", - "value": "2106ea05877e8913f34b2c77fa02be45" - }, - "isConfigFile": true, - "path": "/etc/pam.d/runuser-l" - }, - { - "digest": { - "algorithm": "md5", - "value": "60fbbe65c90d741bc0d380543cefe8af" - }, - "isConfigFile": true, - "path": "/etc/pam.d/su" - }, - { - "digest": { - "algorithm": "md5", - "value": "756fef5687fecc0d986e5951427b0c4f" - }, - "isConfigFile": true, - "path": "/etc/pam.d/su-l" - }, - { - "digest": { - "algorithm": "md5", - "value": "c1bbde6f9349415c9c754eccf309ff3f" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/fstrim.service" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d8e2339c2fa7b5fc324ded6c6cc5d85" - }, - "isConfigFile": false, - "path": "/lib/systemd/system/fstrim.timer" - }, - { - "digest": { - "algorithm": "md5", - "value": "68d5de0c20735efa3b4bb3cffc03dd3e" - }, - "isConfigFile": false, - "path": "/sbin/agetty" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd8ba6695b803304cb016a64c8a1b22d" - }, - "isConfigFile": false, - "path": "/sbin/blkdiscard" - }, - { - "digest": { - "algorithm": "md5", - "value": "f46baf96d0a69c4cbb0031463e7b4b34" - }, - "isConfigFile": false, - "path": "/sbin/blkid" - }, - { - "digest": { - "algorithm": "md5", - "value": "82caab105018039882ff43ea4d1ac495" - }, - "isConfigFile": false, - "path": "/sbin/blkzone" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7fa75b9891eee80c1cce813090bc0bd" - }, - "isConfigFile": false, - "path": "/sbin/blockdev" - }, - { - "digest": { - "algorithm": "md5", - "value": "623f82c406fb0127f2621e00da4827b0" - }, - "isConfigFile": false, - "path": "/sbin/chcpu" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5204313bc7cb430262af66a081eb8da" - }, - "isConfigFile": false, - "path": "/sbin/ctrlaltdel" - }, - { - "digest": { - "algorithm": "md5", - "value": "e7d7a46b062d5f20398896de2d3a2c48" - }, - "isConfigFile": false, - "path": "/sbin/findfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "a32befd6ecb8c01ca6425883e27924b8" - }, - "isConfigFile": false, - "path": "/sbin/fsck" - }, - { - "digest": { - "algorithm": "md5", - "value": "bd19d5d2a401ed9026bb9b8df942102d" - }, - "isConfigFile": false, - "path": "/sbin/fsck.cramfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b4eaa07f4bb84dd20dbe93d650d11c2" - }, - "isConfigFile": false, - "path": "/sbin/fsck.minix" - }, - { - "digest": { - "algorithm": "md5", - "value": "c9a4091bd7f3a7ef502e4e8030c0a299" - }, - "isConfigFile": false, - "path": "/sbin/fsfreeze" - }, - { - "digest": { - "algorithm": "md5", - "value": "42a6102bcfcda52a5d8ce56c19126cf4" - }, - "isConfigFile": false, - "path": "/sbin/fstrim" - }, - { - "digest": { - "algorithm": "md5", - "value": "5cadba58faa7cf8c36235433f3850b25" - }, - "isConfigFile": false, - "path": "/sbin/isosize" - }, - { - "digest": { - "algorithm": "md5", - "value": "4367ccb5e78a893dca2b7edfdf6a3588" - }, - "isConfigFile": false, - "path": "/sbin/mkfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "6bb2f7071a1c67af2b3a3686f131e971" - }, - "isConfigFile": false, - "path": "/sbin/mkfs.bfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "26e4b7c7151b5f9fdb3b3fd48972f67b" - }, - "isConfigFile": false, - "path": "/sbin/mkfs.cramfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "197be84d39457720706c4da30b0e9e6c" - }, - "isConfigFile": false, - "path": "/sbin/mkfs.minix" - }, - { - "digest": { - "algorithm": "md5", - "value": "b861e55c6005e10f8df9060fd6a4d977" - }, - "isConfigFile": false, - "path": "/sbin/mkswap" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8e98fe2b62751f4669949c713b3b4f9" - }, - "isConfigFile": false, - "path": "/sbin/pivot_root" - }, - { - "digest": { - "algorithm": "md5", - "value": "8219a59f88affbdc210d23f86b7b21f8" - }, - "isConfigFile": false, - "path": "/sbin/runuser" - }, - { - "digest": { - "algorithm": "md5", - "value": "3fb11d8ebd68583474ae1d74b3a0a70a" - }, - "isConfigFile": false, - "path": "/sbin/sulogin" - }, - { - "digest": { - "algorithm": "md5", - "value": "3ef35095938ef55dae81b97e72775e46" - }, - "isConfigFile": false, - "path": "/sbin/swaplabel" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a7e691df4a382145b27982b560795f1" - }, - "isConfigFile": false, - "path": "/sbin/switch_root" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d47fc5eb2ced50d9647fab25a9f22d6" - }, - "isConfigFile": false, - "path": "/sbin/wipefs" - }, - { - "digest": { - "algorithm": "md5", - "value": "efdf30e009de58babdda4f1085071eca" - }, - "isConfigFile": false, - "path": "/sbin/zramctl" - }, - { - "digest": { - "algorithm": "md5", - "value": "aaf26e19acbfd8962fce05e8f1103cd7" - }, - "isConfigFile": false, - "path": "/usr/bin/addpart" - }, - { - "digest": { - "algorithm": "md5", - "value": "311d80fd499f2ede288f1fb2c102090a" - }, - "isConfigFile": false, - "path": "/usr/bin/choom" - }, - { - "digest": { - "algorithm": "md5", - "value": "b42c104278acedf3cd304e14026fbc27" - }, - "isConfigFile": false, - "path": "/usr/bin/chrt" - }, - { - "digest": { - "algorithm": "md5", - "value": "372c5f2546ce00767b5b82351045e166" - }, - "isConfigFile": false, - "path": "/usr/bin/delpart" - }, - { - "digest": { - "algorithm": "md5", - "value": "5bbea9b8d190ee3ad876e7a680b8b9d7" - }, - "isConfigFile": false, - "path": "/usr/bin/fallocate" - }, - { - "digest": { - "algorithm": "md5", - "value": "e579f84feb8e262dfccb48e43558bff1" - }, - "isConfigFile": false, - "path": "/usr/bin/flock" - }, - { - "digest": { - "algorithm": "md5", - "value": "b9b827dd3219ef3fa747fc2839fff507" - }, - "isConfigFile": false, - "path": "/usr/bin/getopt" - }, - { - "digest": { - "algorithm": "md5", - "value": "edf56db284529f469b74e4bed03a5105" - }, - "isConfigFile": false, - "path": "/usr/bin/hardlink" - }, - { - "digest": { - "algorithm": "md5", - "value": "784bbb1217252aa32ecaff7dd9716651" - }, - "isConfigFile": false, - "path": "/usr/bin/ionice" - }, - { - "digest": { - "algorithm": "md5", - "value": "82110539f7d7fea4c3aaa9a12e7bba6a" - }, - "isConfigFile": false, - "path": "/usr/bin/ipcmk" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7ac9ca7af330c6864e2928bae4c87fe" - }, - "isConfigFile": false, - "path": "/usr/bin/ipcrm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b408f6f748ccef8d3d985bbe4b396b41" - }, - "isConfigFile": false, - "path": "/usr/bin/ipcs" - }, - { - "digest": { - "algorithm": "md5", - "value": "9b31c86d26de77f906606f8b52e5085a" - }, - "isConfigFile": false, - "path": "/usr/bin/last" - }, - { - "digest": { - "algorithm": "md5", - "value": "6930d9b39f63dfbc9f12a256fb8fabf9" - }, - "isConfigFile": false, - "path": "/usr/bin/lscpu" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f3e1551aefd536d7a2aff2abb3ff58a" - }, - "isConfigFile": false, - "path": "/usr/bin/lsipc" - }, - { - "digest": { - "algorithm": "md5", - "value": "334db7c3e4ae0bb8ff05645d4fc2926d" - }, - "isConfigFile": false, - "path": "/usr/bin/lslocks" - }, - { - "digest": { - "algorithm": "md5", - "value": "d43b4d86f5534af4854d96c98844ef03" - }, - "isConfigFile": false, - "path": "/usr/bin/lslogins" - }, - { - "digest": { - "algorithm": "md5", - "value": "627811f83c6c8ffb754fbcaf698779e8" - }, - "isConfigFile": false, - "path": "/usr/bin/lsmem" - }, - { - "digest": { - "algorithm": "md5", - "value": "2e91fbd59e7ef5b738bac40e356b9e6c" - }, - "isConfigFile": false, - "path": "/usr/bin/lsns" - }, - { - "digest": { - "algorithm": "md5", - "value": "495f946a979ca3489b3106cd794b82ff" - }, - "isConfigFile": false, - "path": "/usr/bin/mcookie" - }, - { - "digest": { - "algorithm": "md5", - "value": "1c47b033874b7d3c49651493b1916458" - }, - "isConfigFile": false, - "path": "/usr/bin/mesg" - }, - { - "digest": { - "algorithm": "md5", - "value": "d1e7affd999794e72b9d3024caa72c36" - }, - "isConfigFile": false, - "path": "/usr/bin/namei" - }, - { - "digest": { - "algorithm": "md5", - "value": "835c432a85f68c917b17b31ab77461ab" - }, - "isConfigFile": false, - "path": "/usr/bin/nsenter" - }, - { - "digest": { - "algorithm": "md5", - "value": "9bcc89c44f9532fdd77d55b100b34a85" - }, - "isConfigFile": false, - "path": "/usr/bin/partx" - }, - { - "digest": { - "algorithm": "md5", - "value": "075ac0006a47c4f35788fb6d2ba25341" - }, - "isConfigFile": false, - "path": "/usr/bin/prlimit" - }, - { - "digest": { - "algorithm": "md5", - "value": "3498d41035184e7467aaceae30c03ebd" - }, - "isConfigFile": false, - "path": "/usr/bin/rename.ul" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4a8b2425da9f49134b9a79ec0980464" - }, - "isConfigFile": false, - "path": "/usr/bin/resizepart" - }, - { - "digest": { - "algorithm": "md5", - "value": "75605923e11a3f86fef4d3351f842c75" - }, - "isConfigFile": false, - "path": "/usr/bin/rev" - }, - { - "digest": { - "algorithm": "md5", - "value": "84de674f9faa2ecc29ff00077c497624" - }, - "isConfigFile": false, - "path": "/usr/bin/setarch" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5661aeabe9fb16ad6764b53e3f78432" - }, - "isConfigFile": false, - "path": "/usr/bin/setpriv" - }, - { - "digest": { - "algorithm": "md5", - "value": "86323b0205f0a9f809579ceaa17ead9e" - }, - "isConfigFile": false, - "path": "/usr/bin/setsid" - }, - { - "digest": { - "algorithm": "md5", - "value": "2da6d0c2d19c712a0bc97fb17963d52e" - }, - "isConfigFile": false, - "path": "/usr/bin/setterm" - }, - { - "digest": { - "algorithm": "md5", - "value": "b55aed93f03058339ebedd0fc366e160" - }, - "isConfigFile": false, - "path": "/usr/bin/taskset" - }, - { - "digest": { - "algorithm": "md5", - "value": "a369e53b2412abaf80b555ed4850ce1f" - }, - "isConfigFile": false, - "path": "/usr/bin/uclampset" - }, - { - "digest": { - "algorithm": "md5", - "value": "e81d8ecad2ba2cf4febe148cabf5eecc" - }, - "isConfigFile": false, - "path": "/usr/bin/unshare" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e3e2dd9d501b2070df65d1ae6fd3972" - }, - "isConfigFile": false, - "path": "/usr/bin/utmpdump" - }, - { - "digest": { - "algorithm": "md5", - "value": "a2dc45b17de7c79d0b7303d0e2aadbcb" - }, - "isConfigFile": false, - "path": "/usr/bin/whereis" - }, - { - "digest": { - "algorithm": "md5", - "value": "20ba0e37d8aa11d91a8e776e29591736" - }, - "isConfigFile": false, - "path": "/usr/lib/mime/packages/util-linux" - }, - { - "digest": { - "algorithm": "md5", - "value": "80aa4c3c6685d1c83eacadb7aafd46f9" - }, - "isConfigFile": false, - "path": "/usr/sbin/chmem" - }, - { - "digest": { - "algorithm": "md5", - "value": "c003a103e08289bc8d8a32cc5794f1e3" - }, - "isConfigFile": false, - "path": "/usr/sbin/ldattach" - }, - { - "digest": { - "algorithm": "md5", - "value": "558a4aebd0ad87533adf2da6c2958198" - }, - "isConfigFile": false, - "path": "/usr/sbin/readprofile" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd346eeef6d0d9a23eaa2e1cb38c12a1" - }, - "isConfigFile": false, - "path": "/usr/sbin/rtcwake" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bfbf9edd511b77356e4053a40e32c99" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/addpart" - }, - { - "digest": { - "algorithm": "md5", - "value": "29f6d68b75690ffb93a8f321bb7e334d" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/blkdiscard" - }, - { - "digest": { - "algorithm": "md5", - "value": "b40cab924c01f098008ac90ec0b7ddb0" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/blkid" - }, - { - "digest": { - "algorithm": "md5", - "value": "67a70ec3641f58dbf504ca9fbc27ef02" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/blkzone" - }, - { - "digest": { - "algorithm": "md5", - "value": "45d92b0f5f55c9911cac95e224432574" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/blockdev" - }, - { - "digest": { - "algorithm": "md5", - "value": "67eccc80f94f42c1f5fe8f3482c5e4ca" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/chcpu" - }, - { - "digest": { - "algorithm": "md5", - "value": "4138b30d94949a43c9492558131ac749" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/chmem" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5e26a7716efd36ab0bcf97388d33073" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/chrt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a731d297f41ae7574661a9b0148dabb9" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/ctrlaltdel" - }, - { - "digest": { - "algorithm": "md5", - "value": "17c0545bd8baaaa45beac857aabcb6aa" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/delpart" - }, - { - "digest": { - "algorithm": "md5", - "value": "008aa30ecd175bce51e5bb67b9335d51" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/dmesg" - }, - { - "digest": { - "algorithm": "md5", - "value": "4d95b7457fc190891a92045f8d036c92" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/fallocate" - }, - { - "digest": { - "algorithm": "md5", - "value": "1737382da82d4b70b15c40171ecd820e" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/findfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "33ae7aa495262932fffe7e5480ce4e6b" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/findmnt" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc5f9519eabc73ba49994b9a7e4c5c02" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/flock" - }, - { - "digest": { - "algorithm": "md5", - "value": "453f8a7968e1cf28b7b0596dc200a903" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/fsck" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec75a9dc57497410b4af8d38c8fd7320" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/fsck.cramfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "3d3e71da972eabe7b3452de8d4d7bb8e" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/fsck.minix" - }, - { - "digest": { - "algorithm": "md5", - "value": "48a27f7032273b204e63616db07aec25" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/fsfreeze" - }, - { - "digest": { - "algorithm": "md5", - "value": "a3d1199321e788d10856ff3f0017e44e" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/fstrim" - }, - { - "digest": { - "algorithm": "md5", - "value": "4108e4e53c764a63f13edca5cce1b62d" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/getopt" - }, - { - "digest": { - "algorithm": "md5", - "value": "20a23b64027a1d297ff81711a413e69c" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/hardlink" - }, - { - "digest": { - "algorithm": "md5", - "value": "8d8f3564c59586d1f938845fb6d854e8" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/ionice" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c0f92933f7c22bdad5eb043a2fb4d1b" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/ipcmk" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e891be2f2b92548de3db2961170ae66" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/ipcrm" - }, - { - "digest": { - "algorithm": "md5", - "value": "ccb973b1a6bd0b550ac9c06eb31148ca" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/ipcs" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5b29d1e692a84280d3ffc002d40107b" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/isosize" - }, - { - "digest": { - "algorithm": "md5", - "value": "1cf5de014ea7f2c338bdab9d4b37d5a5" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/last" - }, - { - "digest": { - "algorithm": "md5", - "value": "541ec3db05bb8f7362f484cbc418545d" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/ldattach" - }, - { - "digest": { - "algorithm": "md5", - "value": "b6688e89400d84fb2cf2b830d6fed601" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/lsblk" - }, - { - "digest": { - "algorithm": "md5", - "value": "81e40589bcebdca3bd3fefd3a400b739" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/lscpu" - }, - { - "digest": { - "algorithm": "md5", - "value": "789b5032afd7aa0d3e2eaec94052782a" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/lsipc" - }, - { - "digest": { - "algorithm": "md5", - "value": "449715fad8493dc012dae754e8609639" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/lslocks" - }, - { - "digest": { - "algorithm": "md5", - "value": "2482b2d891280fc0ab2e8e8a73c6573b" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/lslogins" - }, - { - "digest": { - "algorithm": "md5", - "value": "2d24da8ace7952aca61e16a7a724969e" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/lsmem" - }, - { - "digest": { - "algorithm": "md5", - "value": "81adf21ae2162369e92837a2fd20f71e" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/lsns" - }, - { - "digest": { - "algorithm": "md5", - "value": "edf667c11e7cdf8b7fbc51bbc2b42eb1" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/mcookie" - }, - { - "digest": { - "algorithm": "md5", - "value": "175bc9b8c2aadd99472825ce5ded8050" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/mesg" - }, - { - "digest": { - "algorithm": "md5", - "value": "008885e5a2f49953daac95bb903322c5" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/mkfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "505d08bba4667a8fc9480a3cb2ba0684" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/mkfs.bfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "7782bb88176297ed4dfd98a209d161ad" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/mkfs.cramfs" - }, - { - "digest": { - "algorithm": "md5", - "value": "9efba1f8dd78fec2cce13eb536532e78" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/mkfs.minix" - }, - { - "digest": { - "algorithm": "md5", - "value": "de50db74e2d0675c3edcd0bafb886f18" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/mkswap" - }, - { - "digest": { - "algorithm": "md5", - "value": "4ee305b5f622b3e3ac2bf4b7228ef809" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/more" - }, - { - "digest": { - "algorithm": "md5", - "value": "36b7c58695e45baece44cfcc281cf32c" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/mountpoint" - }, - { - "digest": { - "algorithm": "md5", - "value": "cbde0f857141d18d3e92fa6c10a810c7" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/namei" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a27ccc1693be1588747be8c46d861f7" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/nsenter" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7cd7b91055bcf666a1b3dd35aff8bf5" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/partx" - }, - { - "digest": { - "algorithm": "md5", - "value": "5676a64e6ac089a1fe610cc254a83445" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/pivot_root" - }, - { - "digest": { - "algorithm": "md5", - "value": "5cd9cfbf7cbe8aa70fb55bbd2332c5e2" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/prlimit" - }, - { - "digest": { - "algorithm": "md5", - "value": "34b415c5a23e820da70f269f312407cc" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/readprofile" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebf08bdd27c0c1607e3db4eda78334e0" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/resizepart" - }, - { - "digest": { - "algorithm": "md5", - "value": "6ef5a3547b5bb7e12751a934a9eca9da" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/rev" - }, - { - "digest": { - "algorithm": "md5", - "value": "95b48054ab4f6a2cbe9acb1b9361caad" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/rtcwake" - }, - { - "digest": { - "algorithm": "md5", - "value": "ed28c8342906c24c0e9ad62be275def5" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/setarch" - }, - { - "digest": { - "algorithm": "md5", - "value": "5264b84e4a151a6da13fe17103a4b262" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/setpriv" - }, - { - "digest": { - "algorithm": "md5", - "value": "67d1a78fb6e0a2dbefbe26c6db3aef6a" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/setsid" - }, - { - "digest": { - "algorithm": "md5", - "value": "8a8030b7c803beeeef30b15f210d1018" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/setterm" - }, - { - "digest": { - "algorithm": "md5", - "value": "ec7a8c7f5232bb19dbacb02c149f7082" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/su" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f8483ea33ba62554b1cd911e107d82d" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/swaplabel" - }, - { - "digest": { - "algorithm": "md5", - "value": "11f081f4a9573a44cb830580e33e0739" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/taskset" - }, - { - "digest": { - "algorithm": "md5", - "value": "371390f97ce4a95b37ba13d4fbe02a4a" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/uclampset" - }, - { - "digest": { - "algorithm": "md5", - "value": "1b02be4cc52094b42e2459b708de191b" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/unshare" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5e08df29f3d46d637fb126b4611de88" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/utmpdump" - }, - { - "digest": { - "algorithm": "md5", - "value": "62e826654da6afa39f68a8c1799c1e65" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/wdctl" - }, - { - "digest": { - "algorithm": "md5", - "value": "1435046347b9ac6d50d26a30c9f10a37" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/whereis" - }, - { - "digest": { - "algorithm": "md5", - "value": "72ea016d4ba85000e3fcfc88c7694231" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/wipefs" - }, - { - "digest": { - "algorithm": "md5", - "value": "55c698798037c87b69586a3617cc5242" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/zramctl" - }, - { - "digest": { - "algorithm": "md5", - "value": "5dadd5ee4dd290ccba49089e5f12421f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/00-about-docs.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "af1b62df175573c864b5564f58e15a02" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/AUTHORS.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5f4e4c7eb24d92bc5bbfcc7d26ac8bc1" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/PAM-configuration.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "53ee7049960e859f688d2b642fd14c15" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/README.Debian" - }, - { - "digest": { - "algorithm": "md5", - "value": "f7b723f48494e6e82d5d8bc27b7fae6e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/blkid.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "af531da50f2d812c94b54faf9d274e79" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/cal.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "e1b80d765d8486a6dbf7ca7c39a123e2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bb7fd1ae3732779966184f543b8a91e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5292bbdd8dd1064eb61c553b4d52f67" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/col.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "353888f385cfb82eb97a693e78f3cc9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "f9ddd8222df0853d9b956a3c87fc8da8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/deprecated.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "de17051a7d5936a2e626d71cd621b269" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/examples/getopt-example.bash" - }, - { - "digest": { - "algorithm": "md5", - "value": "b566ef7c8899bde4b2925be412639d25" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/examples/getopt-example.tcsh" - }, - { - "digest": { - "algorithm": "md5", - "value": "bee83181cd8cd189015e5f226951aaa4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/getopt.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "bbfeb78b7be3381af6aa2597035e0819" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/getopt_changelog.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "070c55d3892a745e20d080886c57046f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/howto-build-sys.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "6f625a6d407c900e3388f1797fd3e69c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/howto-compilation.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "29b0bfb60f46cb16287255643946411a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/howto-contribute.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ef9dc1aa0c4c2813f5221ff4bb4aa26" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/howto-debug.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "37b465aa12b4e3afda4e990264e5c22c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/howto-man-page.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "5ad4bf0251d34263ab54dc3b7adffb28" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/howto-pull-request.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8bbd530fa9adf2cd1a74683568eb7eec" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/howto-tests.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "05930f73790ed6df5feda7dc97a4274a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/howto-usage-function.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "5a3208896aac380e1ca70b7517cdafb5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/hwclock.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "e755b2a0caedf559f6229c074e7518f6" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/modems-with-agetty.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "a57b70b42bf92daae75a130e14c60bc9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/mount.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "84c5ba4e483251d234ed5605a8014679" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/parse-date.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dc2504b2c2383a63e11e85329d7c33b9" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/pg.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "1d5b70c978dad4d8d04aac2fd7b0093a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/poeigl.txt.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c52160f9249ddf8426cb3dcc5fb7e9a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/release-schedule.txt" - }, - { - "digest": { - "algorithm": "md5", - "value": "4e489e0d897c549764fefc89bf160990" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.13-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "146056e59c5dce7b2228c35c4bc1ab26" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.14-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e0b6d3573beda37610951769aea88481" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.15-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "02c2b2bf5bed242f1615fc0b4fa72f3c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.16-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "84139ab90f2d71d395f28eb62f72d128" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.17-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bcfe0fa1a80ce8961e96b7f2f808851c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.18-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3b27cadd9570f650c03d9160da97f90f" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.19-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a8a41adac223fe6d06562f2d96775ffb" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.20-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "530fc90989fecda3d838d4601f38ac0a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.21-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa1728a130b4e9809205fdf724e5db5e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.22-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a45df0152f7443a55850d006d7f9813" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.23-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0a50f9dda174956205ef0487f330457c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.24-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b62385020a47877c93fd154b38024b13" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.25-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c674cfbcf007e4bf60f95479079dbfe5" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.26-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1a2bfd5f557664fba71fde85a9357d86" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.27-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4a70855fad53e92bf6ed25e7fef399c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.28-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0eece5266d893cf8a2115b7cbe54826a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.29-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "906c2b343d1f407d1496b6e42bf5bf8a" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.30-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a372e981f20d71ebd21224a57ca984f8" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.31-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eada85c83d8d00a342b194909a1c68f0" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.32-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "05262903f507193ee248e1133f3423aa" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.33-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0f99e2ac09bca9c3c85d9ab3c1d155c2" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.34-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "04b7ca330f3b227d8c04633fe5de6e28" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.35-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5fd9aa82f18c85b78221e544a08dc9c" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.36-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "662cadb909ee3a131eb1204e3dfeaf84" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.37-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a63398b7afc92094f0a76aaf00eaa3a4" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.38-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c8c74df7c9b2da61e91811e2cab59ef7" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux/releases/v2.38.1-ReleaseNotes.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9d1610e3b3cb00e551ac5f332904c1e4" - }, - "isConfigFile": false, - "path": "/usr/share/lintian/overrides/util-linux" - }, - { - "digest": { - "algorithm": "md5", - "value": "be5eda4a0b1756e274b5c3e0cadeecf4" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/choom.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "175f376457f6363338e8ba26d43647e0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/chrt.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a7e58ba0319cdaade1a28b89c73a34e2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/dmesg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d5e8399a5761097e4a8e9891b40dc17d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/fallocate.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "27b084f9ad8c7ded4c23b493ab49212f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/flock.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "81789c1d5506348fb0d033af4571b502" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/getopt.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2be97c19cc85cb0be17aa593f0d28ed7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/hardlink.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ff18b1c10faa11b1bc590bdc9fc4de5b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/ionice.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6e6ca6711cd561bf283aee21af15d7eb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/ipcmk.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "afd75fba2ac6d5f371e91dc2fddcb0ad" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/ipcrm.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d013ebbc61a0d649f5209199c4afffc8" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/ipcs.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "de6b79211d6fbd7383cf7b544dda9f4c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/last.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "791f732c82e24db981f0807342f70bf2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/lscpu.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f4d2e4ed8fc860b945489981b63e00b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/lsipc.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d04d5371153aa2bc079458884c33035" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/lslogins.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c0758a76a0f85b3bf9eee520a1723f4" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/lsmem.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5ee15c6bab2d3658e7449463b7e83c9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/mcookie.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "cdc2527f89d28b18e2e74c029c52a2a4" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/mesg.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "493fc45eb22a343bbbe2e39c853e2ffa" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/more.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "02d5f6d912638ace2cb745f0a1ddc8b7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/mountpoint.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ac0f1aa981c53e047bd447170f6a81d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/namei.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eb0506e836fc98e0898435bb834d1258" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/nsenter.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6c92454adca9c06746f99d174c89c806" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/prlimit.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bb285cfb09e155be331f01b6c59cd235" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/rename.ul.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f8573dce60bda80d0348ba754b06cecb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/rev.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1dfcf99a4ca13e75be21fe287528377c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/runuser.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e701443eceb8de5b13fba1aa2a670d0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/setpriv.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e132968231d9283430bd0af89f1408eb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/setsid.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "553640dca1623908dcfaa8ca5678080c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/setterm.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8cf04e2a0f659a45f70d32d2f05518a5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/su.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0e46ba556b430719a914d1ac8b78cffe" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/taskset.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9ed26ec9b112586089ae08008f87e1b5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/uclampset.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aa72fbc173aa84ef753e3088e0142d75" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/unshare.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b24d7a969dab41fff96372b8e274609d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/utmpdump.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1feb174d13ec9d2dba25ad33e3e0aeb6" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/whereis.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "29f801d94cea6a04502b90f1589cc03b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/adjtime_config.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ccfc30a14cf8771cc29a3fea074c833b" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/terminal-colors.d.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "3a38de30975160391d316600076287a2" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/addpart.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "493710ffb412462253f31ea41889346e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/agetty.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c62a0d6ab5e8d20603bc1e8c5aabb7c1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/blkdiscard.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c5761422b0f9dec715564b44bbdba1d1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/blkid.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "29a5e2eb3f6b3abd6f701e712b623053" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/blkzone.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "4f590e80196f3a6a33892d62400650b0" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/blockdev.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "aaccce8967001511ee5542d58b51d164" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/chcpu.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "1636ac49a2700a27d8d7be839f2ca6a9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/chmem.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ecf8f6238402ab81a3febe798c7035bf" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/ctrlaltdel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "365ac55c783119bd917232f823d25cdb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/delpart.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "e5db2ca7ef9b80a69ce47389481f9c3f" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/findfs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9934765d3cfbaa050618d3712d1ac445" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/findmnt.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "29811521d5ac1424e44194903cd0eb16" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/fsck.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "08fdd0b988d1a2f13d05b81c927de04a" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/fsck.cramfs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0015de5c3a6920ec6e8aa9393f637ba1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/fsck.minix.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "eabab747c9e38e8a58fd536bae08492c" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/fsfreeze.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "bb83749d7608cf608148de6ce36c99f1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/fstrim.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "478ff6045a2655ca5eabf53ea6c11329" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/isosize.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ebe6d15a0979cb64683ecc46b4d04a7d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/ldattach.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d0fdb1aa346c6df8de26894460a2dcb" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/lsblk.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d50a4183c0932d42cbcb667d16fd14ac" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/lslocks.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2eeb9ccb1ef0fdb23539714f2fd50ff3" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/lsns.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "75bc9982da88f118e3dcc4a9d0c48f1d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/mkfs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a12455e25499351b917fe788a3d0dcce" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/mkfs.bfs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "dd8e45f4f9b16a23fe96228229b0d43e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/mkfs.cramfs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "fbf949bcdf8cd7bf80c06bc0b62bfe34" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/mkfs.minix.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "194a117ed129f38a65f3003750b1f1f9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/mkswap.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d599e0b4a2a333e5872ed0b81ad058fa" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/partx.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "efd8781de65ba3a2eb61662f5cc3f422" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/pivot_root.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "9c2f2e9e9bcfac7fdd39fcfba77b3482" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/readprofile.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "c457980e5229fbe10103b3f59dac9aed" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/resizepart.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "8521cc770be7c56c14af7d57815bd438" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/rtcwake.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "301d3ecb6f34cb5e679191a1b2c55b12" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/setarch.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "132854be5f6aa4b1c45bd27c769b84a9" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/sulogin.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ec00344a9aeda3bd9b39fdba27254d7" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/swaplabel.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b1dfd239e66fd3b2e8284b23440ec131" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/switch_root.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "f5818eac11badc9015fa82ba7a819c15" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/wdctl.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "6d9aeb49e3d477188ebb2166df576903" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/wipefs.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "58c407f4f8ea3e12169c913d716657ee" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/zramctl.8.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0d1444e5e8b9f24cf7e87225e63d6cfd" - }, - "isConfigFile": false, - "path": "/usr/share/util-linux/logcheck/ignore.d.server/util-linux" - } - ], - "installedSize": 4978, - "maintainer": "util-linux packagers \u003cutil-linux@packages.debian.org\u003e", - "package": "util-linux", - "preDepends": [ - "libblkid1 (\u003e= 2.37.2)", - "libc6 (\u003e= 2.34)", - "libcap-ng0 (\u003e= 0.7.9)", - "libcrypt1 (\u003e= 1:4.1.0)", - "libmount1 (\u003e= 2.38)", - "libpam0g (\u003e= 0.99.7.1)", - "libselinux1 (\u003e= 3.1~)", - "libsmartcols1 (\u003e= 2.38)", - "libsystemd0", - "libtinfo6 (\u003e= 6)", - "libudev1 (\u003e= 183)", - "libuuid1 (\u003e= 2.16)", - "zlib1g (\u003e= 1:1.1.4)" - ], - "provides": [ - "hardlink" - ], - "source": "", - "sourceVersion": "", - "version": "2.38.1-5+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "util-linux", - "purl": "pkg:deb/debian/util-linux@2.38.1-5+deb12u1?arch=amd64\u0026distro=debian-12", - "type": "deb", - "version": "2.38.1-5+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:util-linux-extra:util-linux-extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util-linux-extra:util_linux_extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util_linux_extra:util-linux-extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util_linux_extra:util_linux_extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util-linux:util-linux-extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util-linux:util_linux_extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util_linux:util-linux-extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util_linux:util_linux_extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util:util-linux-extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:util:util_linux_extra:2.38.1-5\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "76ef77b2a5a01818", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "BSD-4-Clause", - "type": "declared", - "urls": [], - "value": "BSD-4-clause" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "BSLA" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "value": "GPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "value": "GPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "GPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "LGPL" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-2" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "value": "LGPL-2.1" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-2.1+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "LGPL-3.0-only", - "type": "declared", - "urls": [], - "value": "LGPL-3" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "LGPL-3.0-or-later", - "type": "declared", - "urls": [], - "value": "LGPL-3+" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "MIT", - "type": "declared", - "urls": [], - "value": "MIT" - }, - { - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - ], - "spdxExpression": "", - "type": "declared", - "urls": [], - "value": "public-domain" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/util-linux-extra/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/util-linux-extra.conffiles", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/util-linux-extra.conffiles" - }, - { - "accessPath": "/var/lib/dpkg/info/util-linux-extra.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/util-linux-extra.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libaudit1 (\u003e= 1:2.2.1)", - "libc6 (\u003e= 2.34)", - "libsmartcols1 (\u003e= 2.38)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "02f94aaf57aff4e2e6751ec7b877a997" - }, - "isConfigFile": true, - "path": "/etc/default/hwclock" - }, - { - "digest": { - "algorithm": "md5", - "value": "c06bc68c12cbdd9c7f60ba25ee587efe" - }, - "isConfigFile": true, - "path": "/etc/init.d/hwclock.sh" - }, - { - "digest": { - "algorithm": "md5", - "value": "03e5786e86e58fb8639ecb56c5c663d5" - }, - "isConfigFile": false, - "path": "/sbin/hwclock" - }, - { - "digest": { - "algorithm": "md5", - "value": "2ccf0a3ae635f4d3a7030f5f37bd54cf" - }, - "isConfigFile": false, - "path": "/usr/bin/fincore" - }, - { - "digest": { - "algorithm": "md5", - "value": "b10509594b2ae7d9b3799049e37f6a12" - }, - "isConfigFile": false, - "path": "/usr/bin/lsfd" - }, - { - "digest": { - "algorithm": "md5", - "value": "785ea2002ca5b26b0af2a7b4893b7b21" - }, - "isConfigFile": false, - "path": "/usr/bin/lsirq" - }, - { - "digest": { - "algorithm": "md5", - "value": "c4115bc9a1f6de22a2016fbbf512c50f" - }, - "isConfigFile": false, - "path": "/usr/lib/udev/hwclock-set" - }, - { - "digest": { - "algorithm": "md5", - "value": "1bed9e41c10557a718c2684cb6b162f4" - }, - "isConfigFile": false, - "path": "/usr/lib/udev/rules.d/85-hwclock.rules" - }, - { - "digest": { - "algorithm": "md5", - "value": "5269e9f83e1b0c99e3c4faba0f48e4fd" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/fincore" - }, - { - "digest": { - "algorithm": "md5", - "value": "385cfec0ee511fcc664e822defbb839a" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/hwclock" - }, - { - "digest": { - "algorithm": "md5", - "value": "d4cbdf7320c4bfe84a36934babb92cdb" - }, - "isConfigFile": false, - "path": "/usr/share/bash-completion/completions/lsirq" - }, - { - "digest": { - "algorithm": "md5", - "value": "5417199b91b393e1b0670042440fe93e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux-extra/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "0bb7fd1ae3732779966184f543b8a91e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux-extra/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "353888f385cfb82eb97a693e78f3cc9b" - }, - "isConfigFile": false, - "path": "/usr/share/doc/util-linux-extra/copyright" - }, - { - "digest": { - "algorithm": "md5", - "value": "4b25519dd4ecae02049659d1c762e76d" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/fincore.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "556b61045a3b3c926fbcf94c60c438f5" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/lsfd.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "a5668b78709c691933b5088480312e91" - }, - "isConfigFile": false, - "path": "/usr/share/man/man1/lsirq.1.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "ba7641477e56cf3a0cdef64ec10b596e" - }, - "isConfigFile": false, - "path": "/usr/share/man/man5/hwclock.5.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "b7a4e24188c780c43f4172e6cabecba1" - }, - "isConfigFile": false, - "path": "/usr/share/man/man8/hwclock.8.gz" - } - ], - "installedSize": 366, - "maintainer": "util-linux packagers \u003cutil-linux@packages.debian.org\u003e", - "package": "util-linux-extra", - "source": "util-linux", - "sourceVersion": "", - "version": "2.38.1-5+deb12u1" - }, - "metadataType": "dpkg-db-entry", - "name": "util-linux-extra", - "purl": "pkg:deb/debian/util-linux-extra@2.38.1-5+deb12u1?arch=amd64\u0026upstream=util-linux\u0026distro=debian-12", - "type": "deb", - "version": "2.38.1-5+deb12u1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:zlib1g:zlib1g:1\\:1.2.13.dfsg-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "dpkg-db-cataloger", - "id": "450c163f1aff2ce3", - "language": "", - "licenses": [ - { - "locations": [ - { - "accessPath": "/usr/share/doc/zlib1g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/zlib1g/copyright" - } - ], - "spdxExpression": "Zlib", - "type": "declared", - "urls": [], - "value": "Zlib" - } - ], - "locations": [ - { - "accessPath": "/usr/share/doc/zlib1g/copyright", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/zlib1g/copyright" - }, - { - "accessPath": "/var/lib/dpkg/info/zlib1g:amd64.md5sums", - "annotations": { - "evidence": "supporting" - }, - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/var/lib/dpkg/info/zlib1g:amd64.md5sums" - }, - { - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - ], - "metadata": { - "architecture": "amd64", - "depends": [ - "libc6 (\u003e= 2.14)" - ], - "files": [ - { - "digest": { - "algorithm": "md5", - "value": "c7c774d91213e966a04b2e51c787be23" - }, - "isConfigFile": false, - "path": "/lib/x86_64-linux-gnu/libz.so.1.2.13" - }, - { - "digest": { - "algorithm": "md5", - "value": "b46797e4e48336c9dbfe95eb2454fe57" - }, - "isConfigFile": false, - "path": "/usr/share/doc/zlib1g/changelog.Debian.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "34e2d8a611bef13ec8f381b28382b107" - }, - "isConfigFile": false, - "path": "/usr/share/doc/zlib1g/changelog.gz" - }, - { - "digest": { - "algorithm": "md5", - "value": "d348307d5bf18267bcbada155a715a3e" - }, - "isConfigFile": false, - "path": "/usr/share/doc/zlib1g/copyright" - } - ], - "installedSize": 168, - "maintainer": "Mark Brown \u003cbroonie@debian.org\u003e", - "package": "zlib1g", - "provides": [ - "libz1" - ], - "source": "zlib", - "sourceVersion": "", - "version": "1:1.2.13.dfsg-1" - }, - "metadataType": "dpkg-db-entry", - "name": "zlib1g", - "purl": "pkg:deb/debian/zlib1g@1:1.2.13.dfsg-1?arch=amd64\u0026upstream=zlib\u0026distro=debian-12", - "type": "deb", - "version": "1:1.2.13.dfsg-1" - } - ], - "descriptor": { - "configuration": { - "catalogers": { - "requested": { - "default": [ - "image" - ] - }, - "used": [ - "alpm-db-cataloger", - "apk-db-cataloger", - "binary-classifier-cataloger", - "cargo-auditable-binary-cataloger", - "conan-info-cataloger", - "dotnet-portable-executable-cataloger", - "dpkg-db-cataloger", - "elf-binary-package-cataloger", - "go-module-binary-cataloger", - "graalvm-native-image-cataloger", - "java-archive-cataloger", - "javascript-package-cataloger", - "linux-kernel-cataloger", - "nix-store-cataloger", - "php-composer-installed-cataloger", - "php-pecl-serialized-cataloger", - "portage-cataloger", - "python-installed-package-cataloger", - "r-package-cataloger", - "rpm-db-cataloger", - "ruby-installed-gemspec-cataloger", - "wordpress-plugins-cataloger" - ] - }, - "data-generation": { - "generate-cpes": true - }, - "files": { - "content": { - "globs": null, - "skip-files-above-size": 0 - }, - "hashers": [ - "sha-256" - ], - "selection": "owned-by-package" - }, - "packages": { - "binary": [ - "python-binary", - "python-binary-lib", - "pypy-binary-lib", - "go-binary", - "julia-binary", - "helm", - "redis-binary", - "java-binary-openjdk", - "java-binary-ibm", - "java-binary-oracle", - "java-binary-graalvm", - "java-binary-jdk", - "nodejs-binary", - "go-binary-hint", - "busybox-binary", - "haproxy-binary", - "perl-binary", - "php-cli-binary", - "php-fpm-binary", - "php-apache-binary", - "php-composer-binary", - "httpd-binary", - "memcached-binary", - "traefik-binary", - "postgresql-binary", - "mysql-binary", - "mysql-binary", - "mysql-binary", - "xtrabackup-binary", - "mariadb-binary", - "rust-standard-library-linux", - "rust-standard-library-macos", - "ruby-binary", - "erlang-binary", - "consul-binary", - "nginx-binary", - "bash-binary", - "openssl-binary", - "gcc-binary", - "wordpress-cli-binary" - ], - "golang": { - "local-mod-cache-dir": "/home/nonroot/go/pkg/mod", - "main-module-version": { - "from-build-settings": true, - "from-contents": true, - "from-ld-flags": true - }, - "proxies": [ - "https://proxy.golang.org", - "direct" - ], - "search-local-mod-cache-licenses": false, - "search-remote-licenses": false - }, - "java-archive": { - "include-indexed-archives": true, - "include-unindexed-archives": false, - "maven-base-url": "https://repo1.maven.org/maven2", - "max-parent-recursive-depth": 5, - "use-network": false - }, - "javascript": { - "npm-base-url": "", - "search-remote-licenses": false - }, - "linux-kernel": { - "catalog-modules": true - }, - "python": { - "guess-unpinned-requirements": false - } - }, - "relationships": { - "exclude-binary-packages-with-file-ownership-overlap": true, - "package-file-ownership": true, - "package-file-ownership-overlap": true - }, - "search": { - "scope": "squashed" - } - }, - "name": "nginx-7181ee", - "version": "v1.2.0-hotfix" - }, - "distro": { - "bugReportURL": "https://bugs.debian.org/", - "homeURL": "https://www.debian.org/", - "id": "debian", - "name": "Debian GNU/Linux", - "prettyName": "Debian GNU/Linux 12 (bookworm)", - "supportURL": "https://www.debian.org/support", - "version": "12 (bookworm)", - "versionCodename": "bookworm", - "versionID": "12" - }, - "files": [ - { - "digests": [ - { - "algorithm": "sha256", - "value": "d59e8e5e6b3abc22f1143c316c5248f30bb4e15291eed6953a3b90b65dfda2c8" - } - ], - "id": "f858004734b08c73", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/adduser.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a44afdb50eacfc09e45f6dac1e18ae231c179feec633c106e1060bae8ae11df1" - } - ], - "id": "6b8b1d838cedda00", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/alternatives/README" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35b4360d9126e5e5efc1ce42cea8a957ba42921de749ad8502922d536c9f385c" - } - ], - "id": "aaad8f534f57ca01", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/apt.conf.d/01autoremove" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "db749e19baf3b72ca2c157c70c52522cae23d94bc8b2dc5793fd43d427445367" - } - ], - "id": "e585be910692e741", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/apt.conf.d/70debconf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c2a9a16fde95e037bafd0fa6b7e31f41b4ff1e85851de5558f19a2a2f0e955e2" - } - ], - "id": "f8355e8483b1449c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/trusted.gpg.d/debian-archive-bookworm-automatic.asc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "74f81645b4e3156d1e9a88c8dd9259271b89c7099d64af89a2a6996b592faa1f" - } - ], - "id": "ec218dd623692111", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/trusted.gpg.d/debian-archive-bookworm-security-automatic.asc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "521e9f6a9f9b92ee8d5ce74345e8cfd04028dae9db6f571259d584b293549824" - } - ], - "id": "f02d54fff3cf1e5c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/trusted.gpg.d/debian-archive-bookworm-stable.asc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b7dc94b880f0b63e2093394b113cafd870badb86e020a35614f49b9d83beb1e" - } - ], - "id": "41d318af3ae8655b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-automatic.asc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "716e79393c724d14ecba8be46e99ecbe1b689f67ceff3cb3cab28f6e69e8b8b8" - } - ], - "id": "912dd73ac0e9051f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-security-automatic.asc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fb260ce8521a2faa4937d98a29a5347807e10614b97d510fbabe5480c803bda9" - } - ], - "id": "9dc88446aea37ec2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/trusted.gpg.d/debian-archive-bullseye-stable.asc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c854992fc6c423efe8622c3c326a66e73268995ecbe8f685129063206a18043" - } - ], - "id": "c72a62eff64c2e54", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/trusted.gpg.d/debian-archive-buster-automatic.asc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4cf886d6df0fc1c185ce9fb085d1cd8d678bc460e6267d80a833d7ea507a0fbd" - } - ], - "id": "a9a5d2a197fb88f8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/trusted.gpg.d/debian-archive-buster-security-automatic.asc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca9bd1a0b3743495ae45693c6d4e54abadcffb242d72df15eda5b28e4ff385fa" - } - ], - "id": "dbade4a11c6f5975", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/apt/trusted.gpg.d/debian-archive-buster-stable.asc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "af4f09eb27cb7f140dfee7f3285574a68ca50ac1db2019652cef4196ee346307" - } - ], - "id": "55d53774a5761fe6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/bash.bashrc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "63229551ffc257f56e3df60ca97e1f2963f3ab2128ce27a0f398b4418fa454d0" - } - ], - "id": "1d9d63f07b2102c6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/bindresvport.blacklist" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d4df081b982b23e66cac7102f9d91032f296caf13031991d90af44ee6cbf6e3b" - } - ], - "id": "085d80d5032d7530", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/cron.d/e2scrub_all" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1983c659b042b1ec26127e7874954d83cd97eb8dcfd03238a7d2031ea0182fbe" - } - ], - "id": "674a17003cf1cdfb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/cron.daily/apt-compat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9f2fdd4b4e7706dda74e8e443e1e1da0fbbb19c62a58e230e90d648b69177c35" - } - ], - "id": "7b6347aa119b2499", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/cron.daily/dpkg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe7e76d4162e80e0bc8c24bc638c56ae92c07a80db750cbf0a87e0904e143f4e" - } - ], - "id": "82b93b5b63485574", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/debconf.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "abee8e617456f9b2d30df1e5eabcf9d6f4989c2b6b4f7b37b8ffa7cffab123e0" - } - ], - "id": "8a607996c39628c3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/debian_version" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b55f578e17da3838913ce5ba993a3529ba0adaafb71af782f2d9620c5b59c8e" - } - ], - "id": "9fe343a98f5edfb6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/default/hwclock" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fb50a5f4572de4e1be94e818353d4f3e83b63588e85877e85940a32c2574632e" - } - ], - "id": "680b4f3cc7df60c4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/default/nginx" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1009f4ebecbfa7028c3bc5e2a05aa544220cb166dacdf5db21e868513d840435" - } - ], - "id": "b6583f5b177f6ea0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/default/nginx-debug" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "836614e9d4d501d0af43087c9c9300365a38d53f24f845efcf0b2ad8194cbaa0" - } - ], - "id": "64ece09724251763", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/default/nss" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6702e1cb0d7035a0d7a2beeded69f69acd8ac2b2778913b5afe60595936448f5" - } - ], - "id": "1d5306857fb4a31f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/default/useradd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "348c114422e9e28c8b24775cf39e785d02600445c0ac1c38fe7976c377fba6e5" - } - ], - "id": "2ef1ed324902d010", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/deluser.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fead43b89af3ea5691c48f32d7fe1ba0f7ab229fb5d230f612d76fe8e6f5a015" - } - ], - "id": "3a21f4dbe1604771", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/dpkg/dpkg.cfg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd81f9756beb90195877d808492a55d66c7155b1017679ced60fb278d378b55a" - } - ], - "id": "744691c8e4855d3d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/dpkg/origins/debian" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "461e21f3dc1a5f9f3fe7c4e425c93de09fe11e77f5be67b719c81c5b2202ce53" - } - ], - "id": "feeaa169dc01c9eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/e2scrub.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0a6b0f1c1f5d1c06a811b517a3d2690700bba8e961cd55dd2c7648cde3605a21" - } - ], - "id": "041cd92970aab92e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans-mono.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "144619057c0a040de247c74cf09f230d737b9c1c534f3ba8804fdd3ddeded8b0" - } - ], - "id": "86e5a279008ab652", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "977c24eb43f10d21263bbdb624649e5edf63147bd7bb4f84db97ce7d53bb9054" - } - ], - "id": "634835bf0a7d2e88", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-serif.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3e90c9c36beef46f10d1529251f8683b9c4ac900695adbb4a23a4b6036f938a5" - } - ], - "id": "8ee7570cf47e302e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-sans-mono.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0d9c177b6a85daa9957ed6750d4eb26122604da18d340e7ba31e6f4d24f963ed" - } - ], - "id": "684d0e62d3bd7c17", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-sans.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "68777b1705ec7a05a86430def4be093668e84e305cc7e11291df52403a7318cc" - } - ], - "id": "080264ebaeb31438", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/20-unhint-small-dejavu-serif.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1f2ead86f8203d809abfc9d88d92b04316edd67b6291795ea74ea8a0c3c2e04d" - } - ], - "id": "7f001420467a5915", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/57-dejavu-sans-mono.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f6285e2d336f93086acfa2ac7895ef75ef5ff34f833ba5a63c09fb2841aedc27" - } - ], - "id": "37ebe536bd5aa15d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/57-dejavu-sans.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7c596f7e202090ded38fded904c4a17d5a189b6c9cc914a2e88554116f6474ca" - } - ], - "id": "c1d5d19e0b6bdb0c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/57-dejavu-serif.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "807e5222c6d11a72ad527ebc088f42daf2a807e7718c8f7ff227cbfecafd3d70" - } - ], - "id": "897fa01141d90e09", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/58-dejavu-lgc-sans-mono.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ecde2093f005c73d7da21cdd7b80c791910050609db36cb5eea84a4ba8da5cef" - } - ], - "id": "d40563e52cf2bae5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/58-dejavu-lgc-sans.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e685632c3edbb6868a7ca5275e7c71f25486a8cfd16113a478194a5631205619" - } - ], - "id": "bcc35e9db75495d0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.avail/58-dejavu-lgc-serif.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fdc29a3ebd8816eb07ed04c2cbe151076e95a7b0b2a0ec8fe94e5c8a67931d3c" - } - ], - "id": "557c5bf794b44ca5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/conf.d/README" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93a23ba073996edb8b42d6c89ebc2ec5fd2101ce82cb65ba0db358dabf55ca22" - } - ], - "id": "b53ec743384c1bce", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/fonts/fonts.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76a5771adee7b9f36c7ae66eae78d72f325557500269107f2d98a7e3560a1808" - } - ], - "id": "13e1e0a96f8f0d65", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/gai.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "380f5fe21d755923b44203b58ca3c8b9681c485d152bd5d7e3914f67d821d32a" - } - ], - "id": "e4bf089175c0692d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/host.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6154f14d18f1c6b5a296412d9830c04648e787a70ae01761093523ef2c1dba6e" - } - ], - "id": "d00dab4b17ef1781", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/init.d/hwclock.sh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "80afeea9f353d98793195a554b6372a6c1dbdf60709da8428fbfbe7d5e186c78" - } - ], - "id": "98dcdab970ce3962", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/init.d/nginx" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a8d8dace697929e38685a94fff9a8be04f8443a4a7e841ee92d4bde3535a2487" - } - ], - "id": "5029c125e00b3372", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/init.d/nginx-debug" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f9a39dacf9cd1b775a0c79672dfa2a063af0f250e2f0a6e57eabf003f5be6e6b" - } - ], - "id": "de73b68ff4a8e295", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/issue" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e2910d986fa5716331e50a6d095e53e7e8513764d6f2f3f86299336d79c695ba" - } - ], - "id": "2c3b99b52037fdae", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/issue.net" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d4b198c463418b493208485def26a6f4c57279467b9dfa491b70433cedb602e8" - } - ], - "id": "371e05684cb1d51a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/ld.so.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "90d4c7e43e7661cd116010eb9f50ad5817e43162df344bd1ad10898851b15d41" - } - ], - "id": "f45bf62f39e897ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/ld.so.conf.d/libc.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f03e4740e6922b4f4a1181cd696b52f62f9f10d003740a8940f7121795c59c98" - } - ], - "id": "8ae92c728a6f8851", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/ld.so.conf.d/x86_64-linux-gnu.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d48318c90620fde96cb6a8e6eb1eb64663b21200f9d1d053f9e3b4fce24a2543" - } - ], - "id": "64a9abcedb012b36", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/libaudit.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9db13777d7524a39ba1182742ccebc5b0435314f862050f601e240d58516d9b0" - } - ], - "id": "ec6d22ceed2eb0ac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/login.defs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "edd383958ce315a642cdfa6aa3fbe2779aa5c674b305fe910449b90cee594c58" - } - ], - "id": "5313e4aef6f5e535", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/logrotate.d/alternatives" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fcc2510172fd914ca22762c4b2dc43d36152e65becf8e84abec59f7652da5e3f" - } - ], - "id": "99cc371c5a6e60ec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/logrotate.d/apt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4103352545278e47a88b2ca2f2d3681ca474d400d8057ba6ac4f18d71c32042" - } - ], - "id": "c4140b1785fa851f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/logrotate.d/dpkg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f0f7a0758bea8d550bdf3871de6b3af2f2f4320309d7f812413f05e3e26a315" - } - ], - "id": "d2c2b49e718b456a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/logrotate.d/nginx" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4fc6a645c530a04e834025b3705b80c6a0694f3c83872bf2c1d4dbd9cd6ce17" - } - ], - "id": "d2061277dd5fdd06", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/mke2fs.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "48801b39b849818cd0a79221fa1e2b60aa198453368fdd46071d4b9883f5777c" - } - ], - "id": "545cd216b2be486e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/nginx/conf.d/default.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f37852d0113de30fa6bfc3d9b180ef99383c06739530dd482a8538503afd5a58" - } - ], - "id": "6594c66ac3093ed9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/nginx/fastcgi_params" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f95d1d7d75e3c072907d845622a69d23110d1266c16ff122b3109b8b21f3ae9" - } - ], - "id": "276f5c3e4018793b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/nginx/mime.types" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "078266b9ee3e3c9c8ff30a342e089d7015c3e148bb9d1d41493d38615ae8adec" - } - ], - "id": "b0640d4c5ea33b88", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/nginx/nginx.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f27b2027c571ccafcfb0fbb3f54d7aeee11a984e3a0f5a1fdf14629030fc9011" - } - ], - "id": "edbcd89f8fd87720", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/nginx/scgi_params" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "015cb581c2eb84b1a1ac9b575521d5881f791f632bfa62f34b26ba97d70c0d4f" - } - ], - "id": "85f59e3cb9ec73b9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/nginx/uwsgi_params" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8aa7f3472ec88a24a572d6ffd9748ce3da223fba3b2545098eaaae768b6408c4" - } - ], - "id": "1f76915eb40259b1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d66a095a330d7e20d0bbb56a4cb28a4b1bfc92e8a5a5e9bfc3d0a51c5e3d7170" - } - ], - "id": "dbf9d90eb28a2b50", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/chfn" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f3f96229e82bf41a7fd3ec12e697b3465235d96bb1e44c39ba91157425a36082" - } - ], - "id": "dcd8dc3703b3f4aa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/chpasswd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0101e7e589ce40435c5a8709888225400a78ab6be86dfc5fef86ee23ba5338ad" - } - ], - "id": "251bfe04bdf4d600", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/chsh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7cfc173a991eddae9552cecf578c6f5044f9d70d5640c45036027b02aa135b57" - } - ], - "id": "0287920fb61a3064", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/login" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "26e75ce7c9066801b8db380ff9d8ba58a5e8cf2de5fb38ffd1db5ba62c85acef" - } - ], - "id": "fda91d903533df59", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/newusers" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d13078e71d3351ef7f63a7265ddb50b710a2598b9febc78810fbb0130a02695a" - } - ], - "id": "5f6b4e80b9b4d8c9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/other" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "87696fad1046d6b33b6d3407bb419980987331b4dcd8905f7a6041bced90c51d" - } - ], - "id": "ed264d200cf6eb05", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/passwd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d430cb6628248953568010427d663f3305856f3cb055955c2239bea226c5280" - } - ], - "id": "769efbdc1f49f43b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/runuser" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "be9329a8b26e3cfd4af879fe60900f646f8188f3fbe491688f23d4d8b491c5b1" - } - ], - "id": "c10644f049e8d4a5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/runuser-l" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fda16622dc6198eae5d6ae522bb820b7b68dbf2e73899295c4cac9744f7c7904" - } - ], - "id": "c34911a721e93ffa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/su" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4d10241676e97e5e8d8935e5c8e8f6cb2f871afb881059715f155909be9ebd77" - } - ], - "id": "09e800b54581b668", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/pam.d/su-l" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f68915c4eb637aacbfa01cf26dc469a73f70acb0495efc4b074ecbc626bcb345" - } - ], - "id": "1e844667655dc095", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/security/access.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5c8c902912f0bb59f86b86517f2127ea0c57c5d05b17c4aa62f5bc06c7043c78" - } - ], - "id": "43a1f70f73b55455", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/security/faillock.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "41df4bc646811997d0390c6d37d839d2aef4a9a1a940c44ee1a798a9dc1ac864" - } - ], - "id": "ff0e3715cc44d32c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/security/group.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0adf64deecea56e9ed5c2229db357900218b10b76f7e69830c9d209347896206" - } - ], - "id": "8dd2d457ce560ed0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/security/limits.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "112bebee710ae491e8f86caf7f81598a2ef732dea6c0789d5b8c06bef5caea5f" - } - ], - "id": "8c09c2c45a530c97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/security/namespace.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d76094c06f10839c566ef64bde5624c325aeab7991e7f5d776c5310e8f41932" - } - ], - "id": "98a3a83a2d16384b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/security/namespace.init" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7038e2676178dcda6a9bdd6b8948af8206af56f5291cb2cda7f563a9904c15bd" - } - ], - "id": "ecfecb05c214caef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/security/pam_env.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fa4136d7fc7ebd9eccd36d290456158b1956993e0e33d248ebabb460f96f4611" - } - ], - "id": "b84208edcdde4cc1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/security/sepermit.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6802adfc8efc6168f87e98e960fa7d15e516a295fef7a6472ef5359527e886ff" - } - ], - "id": "7aea6d31eefcaa2f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/security/time.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "920e2adfc551a81617764f0f07ae25919b53f48556bf83e82fb909bc96d73921" - } - ], - "id": "0f7627bda302de82", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/selinux/semanage.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "26882b79471c25f945c970f8233d8ce29d54e9d5eedcd2884f88affa84a18f56" - } - ], - "id": "9148d68bdf0feb36", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/skel/.bash_logout" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "afae8986f549c6403410e029f9cce7983311512d04b1f02af02e4ce0af0dd2bf" - } - ], - "id": "7f279b13e251f80c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/skel/.bashrc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28b4a453b68dde64f814e94bab14ee651f4f162e15dd9920490aa1d49f05d2a4" - } - ], - "id": "784ce1f9784817e0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/skel/.profile" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ae8cae2e64856b34c80276deb1dcf60f76da27bc1e00382201ba7bb7dc33311" - } - ], - "id": "e02631d88f65ffad", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/etc/ssl/openssl.cnf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cfc3399b782bb0ecb14b9727dbd5ffd82ef774d473f6c47c39e621f8f4850603" - } - ], - "id": "00312bf3f9615e27", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/terminfo/README" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1dca09550a75048731bbd17f17e027cc71ae50a86e0d911a8b3813e88d9b5ab6" - } - ], - "id": "724932e89ac70aa2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/update-motd.d/10-uname" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0fc794a9826011c88b118c5ff4e30dfcbebd73518e64b0cda7aaec3ad7e578bd" - } - ], - "id": "8d0dda00a12b80b3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/etc/xattr.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0ab2918ea6c958649c78f366e281d1c242eb4463e83c7725ad84e2a0f7ec2903" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1199f386b6f9b751", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/[" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f3d07359c5caed2e2692e775d5dc2067f207c6654421bbbdc38aa10f65b57a91" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2b0dec5458152b15", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/addpart" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "44059b6dbfbc89c0748bcb6e630a4a9af6fe33ecbb87b8a45a9d3e88287eabec" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-private.so.0.0", - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "a5e852c6979800a8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/apt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "50aedfe7bc85326f1eeb838cddeea2bc29260851f7ade4e44756cdd7ebc00d60" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-private.so.0.0", - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "4b92f6143b6007df", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/apt-cache" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "038988aec1aec295d41fcc01a7e0a372a85d0ff6a8cfd310318111b97c56f5d3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-private.so.0.0", - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "6795f3304880512b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/apt-cdrom" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "231139f082f153244419738c62d5cf7fa0152339f21b6cd0666a4c19c7abc660" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-private.so.0.0", - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "8eb9dc596d4d920b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/apt-config" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c2117516d26cc559ccbd16252778d8ab8cee1ceac4be60e9c975e5c4bbbb47fe" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-private.so.0.0", - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "3f7cf31e907f84c9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/apt-get" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "88c43d1b6084db154eb111b0992084aad9b2442aeb1b626c6eed5f4ec3d65d07" - } - ], - "id": "ee5bf6fb76313448", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/apt-key" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "86bcb5892071b371c3ab6bceb1b1910e80b1339404c798873a7aaf01ee6997dd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-private.so.0.0", - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "61d555a0bfe111cf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/apt-mark" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cc7ca3ebd8f5f398b275ad7be6fda7b49f8a7b1c7dfa3d32d9f3aa26ffda6f03" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ca7e29d2f0d8ed0e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/arch" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c52220dbef49c19fbb16cbb53e7de82861c193a27bf9c252985a8377af872ddc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "406e6d15ff389df5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/b2sum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3500cde59df225b1f7988ad6331b875265d739fba3be0444e131bb362eb0d87e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3f7ffba0ab083999", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/base32" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ae021af1f99f233eef24c17f9d43843ac36a7c5de1025af794682a89938312e5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1534b3c9b1c68b6a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/base64" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc0828b09781a8b19a6d31f23f3f6e0d4e2f216490dc1d1e98321f684cbfe0a2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "dbfa8c2705484df2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/basename" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d442ffc72c528a707d7e8bb43816e65de23a88cc8c896c9b88e1dafe4787ab8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b70cf198cc56f9c6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/basenc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ebfc53f17925af4340d4218aafd16ba39b5afa8b6ac1f7adc3dd92952a2a237" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "30634c42ca0e6c6e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/bash" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a904fc165728679b2e62047376131ed0684d039a4c576619fbf9ce0b9dd2ae6b" - } - ], - "id": "14b5b1c19062240a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/bashbug" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e500ac3e4b1a18d117bd1c4b47f3e4f96584040b6ea4a484398fff7ddc3a7d12" - } - ], - "id": "47d37b4403f8e91f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/bin/c_rehash" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "008f819498fe591f3cc920d543709347d8d14a139bb3482bc2cd8635c1b3162e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f98ae18f5dedc385", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/cat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59b34f6d71e2eedf46f1fe9552272a258c8a54bf498930e1caf444fb46d1349a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "68093f0abbfc89fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/chage" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4a17b3e85d2408cad85500bc46d6678f31efdf878d35f11e4ce9ce2b5623dc7d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libe2p.so.2", - "libcom_err.so.2", - "libc.so.6" - ] - }, - "id": "0bd6151f558da416", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/chattr" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fc72162c58c5633b64ed326766997ab5d573833f2f610ed87ad0a72f9375271b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "6a51436237f068c8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/chcon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a1943e69c04d89c4b53c119fb9f68cca10404f14826867d67cb77d96ba23462" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libpam_misc.so.0", - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "e72c9f0230b862c7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/chfn" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bbee32e3ce054742f944124cd9859b4bf872e8d602f66e0f17c2838214e78aa0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cc5ff78519f14341", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/chgrp" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "623fdf73612f898ec829e529ffd143520fb617a75bca84e242030f48d2144645" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "733db563e74d438b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/chmod" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c9c7b862a5a4be2ea1759019c2ecb4dbe5c86e4393fc3dec24864ea7d0776274" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1add6709cafca3c5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/choom" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "02769de8f96b96de9b917224b0eca3fbf757f622211a901b0ce323ee1145a3d4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b3cde48a502d8871", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/chown" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "789c357392ebf55578ea39403173f1b7dca9539e5b50ec8fc53cfecfa63ae361" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c6353ab0b65125c3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/chrt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e94e4e87ff1db23504c3fd3a9fd0e8a13227ba70258a0105425f5cf64f5562d8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libpam_misc.so.0", - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "1bdb6a74ea12e9ac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/chsh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d9b1aa09d173192d3324cf4be0e27b2119d035785d4c83e58f06538694f24470" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1ddad10cac5637a2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/cksum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6543c0d7d5479fc76c1808f9e5a033b54b67e35f2ec1663b7c354267e2adfb6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "fa18883144abc09c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/clear" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b4752cc084ff078428d3f983358cb3852519ae2e1d7ea267bed782e194d40d2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "3fe84ff3529628ca", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/clear_console" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "13b9e7eddee255a5a5b334cae7c6e844c16d205e92f7cd6d94617301e2ba84d5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f815ca7b513790be", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/cmp" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ba2fd25a7ec1ef5a4fb82eabf6be796d1afba42c795fbf59727582d4d77d6a2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b1250e857af43277", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/comm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e296487a3a8f10a1c55e56056ba4bbb2d3ca22ae625af9f0d5cebaed28e55fa4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libacl.so.1", - "libattr.so.1", - "libc.so.6" - ] - }, - "id": "c211097b68c3c943", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/cp" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e8882a91822c82375d60a4187118c4d23ee3fca18ca6364a6cb5acffc2cc509e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "708cf0619a77544a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/csplit" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28c286a599760dc61650c61671847a12645b7df33862527bc6c29c09ef5bd44e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libcurl.so.4", - "libz.so.1", - "libc.so.6" - ] - }, - "id": "a25b4a41d128031d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/bin/curl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fd54b387a71e9c2f774997d0fe7aff65416a85cb9b39f921fa13ee98f3eca809" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1dfd81bab98ada2c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/cut" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5adb8bf0100ed0f8c7782ca5f92814e9229525a4b4e0d401cf3bea09ac960a6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4c212f6faa951ad3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dash" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b047bec6f8fed78ad9c59c8eda24d6772d51baa766fc0f71f5936d45267e4036" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cfdda1fd466cd0a7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/date" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9f3cb6157563063827c7a8c1e191db13ad1d2a3c6821270e4dc520f6cbfb766d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ba8ff9448baa2072", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a895d5f077651960b6ca4ed9c53f8b36eae422ae170f61c972d0c6579e9f8732" - } - ], - "id": "055a8d9535e04c0f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/deb-systemd-helper" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f06db7d1c3440e1e3b4bcc890f22157f837e15992d20517d16c699de4a38bd7a" - } - ], - "id": "37280617bb713c95", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/deb-systemd-invoke" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d365d13eb1dff880be7361e4043d25875075776445d4edd1eb4fb1e451a2e41a" - } - ], - "id": "43f0324ffeacc8c7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/debconf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93fb257df4185cc6b83858bdae3c7aec0a4f759a848c743a0b0fd7c7091cf34b" - } - ], - "id": "15b4e28f6b4bdacc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/debconf-apt-progress" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "705b8ce793f999f21bf2f20348b390738a139116c9e483fb39165a508fde4d27" - } - ], - "id": "bf3c6a005fd96f88", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/debconf-communicate" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "085ff55904c81115d8d65f8862f0a5ad393e062da3047762e4d9cd4f5ba761f4" - } - ], - "id": "fab6a6abecc24949", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/debconf-copydb" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6c17a536ca0fcefa24a7d37f7eaebc02e774415b3160836918cff6cecdef807d" - } - ], - "id": "5bfc24b14d20151e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/debconf-escape" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ad5ab05980f95eeb3862d2e525dca617e6557f6fa5fc2ee725bd36be7e066f9" - } - ], - "id": "926ee5f0d4850508", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/debconf-set-selections" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9dd0bfe9a51d92af868012a32a8190b83a6f4b0834385d12033732b24ee2ceca" - } - ], - "id": "502cc16c7f204009", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/debconf-show" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "94eda07c69aeb2096c4952450261b4b62cb646f2c2ed40f129efc9fb4aff938d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e4d9b792beb3bba4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/delpart" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "44741cf49aded8a77eb97499f9d9e42e572918513560e2c0a033c0860c3b36cd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "39a4939247916844", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/df" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4de429713337777f44e9ef340176c2f1818c2fcfe0204ab27277595ff97dab77" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "402a6752b29c68e4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/diff" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28b969ec6262924ba1d93fc320c43e01e89d9b97d74235cc86f2d9b263ed1675" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "dc32531c715eb769", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/diff3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "54df57d9237f2d3f15a61d00fd2398d65099f64ac49129f7ce09f738a1e998c4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "1c020ded7216d88a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dir" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fc001a80992e958df0198979131b608fd5ec92e57dcb4bbc89588f4f12f99758" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2085a0de3d5b1cf1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dircolors" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "615bfa889dffb2c6cd9c76da6b4277310acf283743598eb71b9a5e058fd7bbae" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c9a8277e4fc8f288", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dirname" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7af543d1ff7a9e62d98303b6277b7466ad72a0bf8238dfc6e32273ed996ac866" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "f222b4ef60059339", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dmesg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "628e9419d3022787966ac9d6e9ae6d35698a6c9f10ae8589976bafec149fc060" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmd.so.0", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "884ae83be03aa846", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dpkg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dac2563bb3809b7f8222f4bcd91c6fd234aa2794ca446a91e7227df032ee9ae5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmd.so.0", - "libz.so.1", - "liblzma.so.5", - "libzstd.so.1", - "libbz2.so.1.0", - "libc.so.6" - ] - }, - "id": "52d3f0284956412f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dpkg-deb" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cce6c5d4988c9113786c44a72c710e317231ce90469e0d80bab9627adafa295c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmd.so.0", - "libc.so.6" - ] - }, - "id": "e9169e4d2f79b8b8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dpkg-divert" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa4036297b2b85b7dce70653e3f41437f771c1b5c78f8d3646914a2333e6d32e" - } - ], - "id": "d5d57f92589a8441", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dpkg-maintscript-helper" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d013ff1fddbe98da2bb9687ab3b86363098d9f6f716f7417609b60794da9855a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmd.so.0", - "libc.so.6" - ] - }, - "id": "77ec0c17c46335cf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dpkg-query" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b857fc30738bfc03bab2ac510980b14b409d4eecc9cdb0a1dd53d81e8d336482" - } - ], - "id": "e20d923ed40c5048", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dpkg-realpath" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "65518d737c627e3db75feaf5fa0be6826ee2964cad243d9c8367bca304dc7a2f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmd.so.0", - "libc.so.6" - ] - }, - "id": "fe36a6856f005ba8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dpkg-split" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "947e91f3ded18964b2704390f254d7bc328ede0a625b4c8874f751d3fa4e8ab5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "66b5257b96e992ea", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dpkg-statoverride" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d8ef754e86f10c000e2c75c714f35ea9ffba51103903842422a8e07a2432d7b8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmd.so.0", - "libc.so.6" - ] - }, - "id": "d52edee3c3985b64", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/dpkg-trigger" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e9219020a27edb2e0d3f161e8ebba673a19aa05a88b6274dd5962a02f2eec2e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7f54d50c564b22fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/du" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a049fb47554c6cde2ee452e5d87f6386abb63af7cdcae9cd0dc99fc80e0bcf35" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "dddbafe833046f62", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/echo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "10caa507f39367738ca977a5f2014406159064b072dbade0c0c23a40597f66da" - } - ], - "id": "b37f6756e5d3730e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/egrep" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "615c46b39130a04a08da04163542ce7ce1164fa4b35408efb43aac0a8a9f7ae5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1c8fb1b8a731ed6b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/env" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eb202b2879f44bf060ef24b0abfc42b74014ff1e0bda74a91b20411a4d399a0b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e8536d4d38a1b26e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/bin/envsubst" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "18303d60bad5cdf52eaa0e6b3ff2d21db8c975a9011d62bdd493381c90a4062c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7305bfc0ba1ca438", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/expand" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f6c1dd60fac89f4681d6e3d36a4820e1573f4bf85d7ae65261650a07ac60e16a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a4fa5561a97c1992", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/expiry" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "22998c5ef997f1f386f1a5acab96fce0c855944a9c14da79f5ca243bb19f8ade" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libgmp.so.10", - "libc.so.6" - ] - }, - "id": "d18ff86d07d9fdec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/expr" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84c037114720d0fb68eeca953bc2675ffd545770ee75fcace29052f126a5ffae" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libgmp.so.10", - "libc.so.6" - ] - }, - "id": "e646999a42e51f0f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/factor" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c57068c0d1eedea5792bfa3892bc54d4ae72a9528f4ea41ba0ee28921dffc2b1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ccf1b9aa62559ed3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/faillog" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "682b9c7b6009268da3583aad72bdaceca7083d3cd86043630659791458cc9492" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3fd8137c9fdd22bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/fallocate" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7faadececbd287e494595d6a8203bc521e4463c682a496569187a77e761156bc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e8f30f0a19e29025", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/false" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f1bdb63da98989d55e56cef651139f70448d4c8f6ea40bb02610be439e29bf0c" - } - ], - "id": "a2a302b7897e23f5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/fgrep" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1a9851874a863f39f0f6c4c915ce26ff881cacddb5d6eafb1e20016943921e1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "f39ee1b72d3810c1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/fincore" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c703b94ad3448bccc79cda80520964c8d371918a39eecc27f8d60f4e8891770a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "115af19621c9dbcd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/find" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c4c89ad3b79c785f7b170a43417d10ba1d64fd98a6906345eeeec18ce168bbff" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmount.so.1", - "libsmartcols.so.1", - "libblkid.so.1", - "libudev.so.1", - "libc.so.6" - ] - }, - "id": "a0f839dd52b44e82", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/findmnt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0ea8c0be00334f018187237baddc24f66f22e9755ad5eebb9227096115601bba" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a71b4ffd9b9d14f9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/flock" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "62cc5a8540901930b70ea6ee6419af7e5522f23bb6c08e92ac5121fca4a5628c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c4804642db998046", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/fmt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4526d6b5c40966b56b1de203f998beec4e00adf5e6105b8e064b2ac783a20abd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "13ce87c0fe463d55", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/fold" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b24a1c8e58cbf2b6b3df5a1c086c01acf0be84e2d62582d6797e085b9bcba05f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "94193225464c003f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/getconf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a4ad20f9f7b71e95b7ebb75fbd3c3c33f68b5dfa87b44a0c8044097fdb7875f1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2ba6a1e0a4bc7388", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/getent" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e84175a12b246697885a425fd67a4c9f31e6fd78d8853ef149aeb78c9c578f66" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8bb7fc3025fe6105", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/getopt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "11b9fdbb3aeee23537f0105868fc5a4fd8ace643b79572c7b3c9a3222dea3b73" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9e5cc07fa7cd2275", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/bin/gettext" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b1c70a26633d0096404a6cd40a78ea61fba5d2d2b49359950241613ed29561db" - } - ], - "id": "74f72a9ecb09d80a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/bin/gettext.sh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9b92d79f83fd2f429dcb0ff1a1687112f11b8f5b45f4cf97bb75583f4a67fa70" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libcrypt.so.1", - "libc.so.6" - ] - }, - "id": "2ea37feddda40752", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/gpasswd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f006363e644beecdb2cc9ead98dbbb0c6c5d23f49e0f07ff957235893ad095e0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libz.so.1", - "libbz2.so.1.0", - "libgcrypt.so.20", - "libgpg-error.so.0", - "libc.so.6" - ] - }, - "id": "c6f1f3e7b5ee0ef9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/gpgv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a9c5a0c3b5d1d78952252f7bcf4a992ab9ea1081c84861381380a835106b817" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpcre2-8.so.0", - "libc.so.6" - ] - }, - "id": "dbb4d69c8b6c94a4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/grep" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "67ad3a42ef1afd94119dcf214d67582be86a9464a20db5cf6cb9a67086979b83" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1fbc9fea3720053a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/groups" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "55c2f67ca4c3cca0ebac659f0075461dd671ec4937ecd6c71123bb49ed322ebd" - } - ], - "id": "0c413c8a1461283f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/gunzip" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ec1bf1611079caf2a981b570453d4b8b5b4a1efb20dd32138f393eb994b70fea" - } - ], - "id": "0b773f47ab137591", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/gzexe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "953d326212574b5ad3cbe5f87034b0c142b6e6d71bb619c51eaa3d2ce47f7e24" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d91703a1f19cf460", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/gzip" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed26d95ed2707329dd874d91692e9b90a0975511c3e56b7ed51e76aaf31d21a0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "86416586592046e7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/hardlink" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eb93339329ad9ecf68acf3e7cc3415cea3a1d25e1885b4a0e42bdb70063b7ca9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "42829c41295a7382", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/head" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce77fc236724c35505e73e97dc21e45e7d3ff6876a18eede29daa37d16e17eb9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "369f3ea18a07c9fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/hostid" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "62bc6e27cac163160d151cb5bcbb4f9ca18870b0d56d99a8f73c4eafc9c21a89" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7a6a4a02ef5f41d9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/hostname" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "92cb54cf675d996e181cf3ead7ca73afbbbb8a47e7a96b7a93330da0779486d8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a2a3a5a6a8aa273f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/iconv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a3d987dd3f9ec0610dc13b7fdccef84895628065434f44247a65ef0d2a341b3c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "47e90d5aff161638", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/id" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3702860ecdedc04dde86463e51ccf5a36e7c5b8aa7021685dd189147e23d9747" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [ - "libtic.so.6", - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "5b48fadb57f92896", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/infocmp" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9848c092188028f520c3742c609f7fdf2b16cbf5b4ac128fbf69c13b9620f124" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libacl.so.1", - "libattr.so.1", - "libc.so.6" - ] - }, - "id": "fd3ec5f73df00831", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/install" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c27b56565988d0499a82a6a9edfdc6f38a188298a96d5e6969a5309989b09317" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f65e0026e618c4a4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/ionice" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "db9909db0aa0b25b24c6897481753515b5309274a0896d436ce8ab458b30ce0f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "a336fc6045ba4f76", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/ipcmk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0bd92bdf34c64cfe09bc9fc3ebbb4f2f314893b0d242b9c15311926ed1ad335c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b14bdd9973cf7987", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/ipcrm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "418524c031425c61f8c934aa8de207c18505173106f1e874b89850c6ef0cc3d0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b0b6033f810ecb28", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/ipcs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a6f7f1afd73ebb908b673bc9627be9726d6dd50be2c08ab349e16d359defa8c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "896014556877202f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/ischroot" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8233e9e237d24c436cfe97af5ba2c95ac0b44742f9c4a3f9bdbad9e3d8868ddd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b510865a1f35a9d2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/join" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "883cbf30b8a24399864c4464e044e2eeded1c7e4f8a04416a8282c6ffa86042e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "58d998f48e7d6e2f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/last" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce5e4a0c68f71a4c975d91423ce6620653ed0fc4ebc85d942a624aaa8a948041" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "2448fd222ee33445", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lastlog" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3e5232f381e20751b61f36e1c8530434265144550ada158d0187b7facbbb65cb" - } - ], - "id": "4383ccc5c484462f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/ldd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "913f86d046789715a1e60371e7434af359a737db8853c8a24dd79bd309a1b6d6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c7d70e84b6b0f682", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/link" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "26b4d4643e3791f277ee734b162428347164435a20456643e5346bfffb60d1a9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9790c04cdc730b0e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/ln" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "accb25c9de01e49215770c23f1b95b1e2a054caac4c7cad7cdbbef19e4fadc31" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "59019b2e7588bf16", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/locale" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5e8f2d68e47bbd1e82a20a5a5b66dacd0d69fd8c1181e984fd1727216a6fc9cb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a6ce7119954c8b8c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/localedef" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed665c8993678683e7ff97a1f7c914a83411f97147a1224c5f5f4ca7627d2c25" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsystemd.so.0", - "libc.so.6" - ] - }, - "id": "a7651f6a42e2c830", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/logger" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a3af84194f3f8928094d53a48daf388d3295404c4e54aaa911d7d54a29f9a6f8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libpam_misc.so.0", - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "30ad4978a34ad0ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/login" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "924fa150fdb9389bbf51e5815b75225792894b69f575cb56f2fa91e119b96c21" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d171265c0e81a6d9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/logname" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb30d69b24245bf2ecdc9e7f53bbad19159999970b6d82c0c00c7d32d9e37aa4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "6afdf7ef616abd68", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/ls" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "219a7ef7df1f06e236b097746205385a01b3d8e238a6b7d64ca1cc1713f829d8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libe2p.so.2", - "libcom_err.so.2", - "libc.so.6" - ] - }, - "id": "9b3bd4d62299c71f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lsattr" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "321a9008c1ee66de571061b9c38b755f3dc21acb7684ffdb383df5d440a66217" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libblkid.so.1", - "libmount.so.1", - "libsmartcols.so.1", - "libudev.so.1", - "libc.so.6" - ] - }, - "id": "d3131574a12cfa83", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lsblk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6c5d418b1b2e423dd4b1fa8597bfd970143dbf5ba4915b72bddeb43b1ae490c4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "ce85a3d8f7b2e27d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lscpu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b42051d7aaf8197a45153156db4db9aaa30cbc79b3994baa729deac3dc5742b0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "5d88aa783d795336", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lsfd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe6453dce667f08ae563c28481d38876c715ef50d32288e91f4e8ab1fdcfb45b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "404ccc8df358d256", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lsipc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "871f79779481ad54dff665e34e4346c65a68c9e0fa71b0e0a307acfae3f6398d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "ac75af8442c5bea4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lsirq" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c13f11a3346117548a88745433a71a682370d7997bd70caf3e6673ba88a096db" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmount.so.1", - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "add2881eb693226c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lslocks" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "057bddaae1b5b879f299edc4d0d60ded9a8e175c6967159199826675808f6917" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libselinux.so.1", - "libsystemd.so.0", - "libc.so.6" - ] - }, - "id": "74ad53b8feb722c2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lslogins" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1d5d704e64d4f6ab75114575ee84cda6937d76a2aaebeb2daa35df059819947b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "b3af9b57ee7eef4c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lsmem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "10b85f0bbfcaac4157316ba687b319d95d40b10716f40ae0cb7c8c833fe4c274" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libmount.so.1", - "libc.so.6" - ] - }, - "id": "83e14d99fb70d02c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/lsns" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "301315e7e2e964b4e403824b3f6c7ad8db1023e4ce87e6f6c92bf367e047f311" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libc.so.6" - ] - }, - "id": "d99df74945732be0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mawk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30558484c510b77b9b336aee63eb7c6f92693fcddad8ae456faad01abdc73c95" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "76c540c99f9daccf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mcookie" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cedc25468f8df2346c58cd796c44a42560e08823890fc905b2454d0eea97426e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8bdf320e3dc524c9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/md5sum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fc643d26847e0d4eb5cb52c5ba3eabffb9acd04d33404b4a12d0347f05288947" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f514573f99435c9e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mesg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ba74b1a15a5b9b7929a595f45103d7fbe722840b7211d313dd4872893f031fb9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "90ccb902c719e69c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mkdir" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8c5a9ba6fd9a07c26bb5e0930054a48e3ec1081c3a280432f9d8ea9fb09a3333" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "3b9c8811d73df432", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mkfifo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "02d5f0f8290119d9534627cb376b3fcab861130bbf6aedc80102563d7695665b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "b41d38ed529e3e40", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mknod" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "879a70d44241bc6704bb8baae38ebd8466ac95707c3b74ca598a9487a841bfb4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9d1cade4a4ef56b9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mktemp" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9d2e9a1e3b3a8ee30f4aa0dfd6b49a609cdafa16d45f44ef830059d1e11d187c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "7c1eb48c5ad8e0a0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/more" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "83e4e0e5b9317f9a1e87790c923bf92120d89e2b05baae78c54c100c75563488" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmount.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "152ea7f8ecbe5e68", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mount" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e2b21c3e67c36f8cad348f39a0b79fb1a739aeb665d250bb278f5af277c81fb1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmount.so.1", - "libc.so.6" - ] - }, - "id": "cf8bf34b1c84d5c8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mountpoint" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a781be46e6f27ca5d7e119225429a4a12ef941eea15ed2c44eea0c8bca7e4ebe" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libacl.so.1", - "libattr.so.1", - "libc.so.6" - ] - }, - "id": "e15779817963ab26", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/mv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a656c7977301fab26cc238f1cb9eeab0b8e78e8494f617b37849710dcd5941e7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "944c8de998c758bd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/namei" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "460ab1d2a8528150dc8b94741128dfd854c64ee3ca99356ff76e7b98b373fcb2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libcrypt.so.1", - "libc.so.6" - ] - }, - "id": "8534d9a2cef0ec8b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/newgrp" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0d15727203b1da8d7d12294c325c99a2181600b89e4e4afb9de9c139d1dc634c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6c032b8dcbf84f04", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/bin/ngettext" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "144ba2794c120a0347058d48081c9c13c2afe4321f1b44318538616295273060" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7b90b88fd7d14bee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/nice" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d0b46bf87e1c5ae733a4cb0ded6d2fd66368cccbfa1109a0167c33e9764dd70b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [ - "libm.so.6", - "libpcre2-8.so.0", - "libcrypto.so.3", - "libxml2.so.2", - "libz.so.1", - "libedit.so.2", - "libc.so.6" - ] - }, - "id": "3e087e94dd8d8747", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/bin/njs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8ec52ee2fb32e3e5c088b2d92d2e933256548be3376c1c752f0d6b0e994bae20" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "caef2f4401a8e179", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/nl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d290c0aae67eee4b37a86893cb0f4036f9bf1abe8ed19ecc6a529e7c681390f3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e98277187ef8a867", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/nohup" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "716561bc24867a55b99ebb523e97ace733d12ffad0f8b55c29664431ac01d36a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bab81f8e512e7103", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/nproc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1575e239a79b0313ab3dd4aa542aa2d2e9e2a30b2ee5405fd4418fd0eaebbd58" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "49fb4be9824b0955", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/nsenter" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bf48f9377ce2851931573d54bc74e19b1bf45c5e19ba108a8b3e153cd71235f2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3700d11cf00156d1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/numfmt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e87e764bd447d6f10d0f3bd519fb62c111f9bf9242c5f7b2764267b8c26b1488" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d2aeb4acae8da3f1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/od" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "745dee49d677d31c933b30680c2cc1b866838a2698be022a3880245268124cbc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libssl.so.3", - "libcrypto.so.3", - "libc.so.6" - ] - }, - "id": "cda63e3b1e9e1a8f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/bin/openssl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1c5a4134f0f03b3f009659bb5d0983b75e7399e5eb0541963431a7f7c44ee91b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libblkid.so.1", - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "5ca59d9ee9c1fb78", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/partx" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3ed037eb7f8df2d84fa9b88c495d2600b8441dc972f10c1133f985de59413f5e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libpam_misc.so.0", - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "dc8cf297ee637954", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/passwd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8ea6d9a0444faaee0c294f471d0de1194208900d4c0b50a6607ccb5a9fcee932" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7345bb38580d2ea4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/paste" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "531bd451b4f0dcf767a51ef56d926acdd26f88fcbc2d688c617d610f1ec7fd4c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "fa24023b52c0f9bb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/pathchk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8450b6c9f16fa27a1128729068f769bbf320b5ae6b526b721bf1126cd502ee39" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libc.so.6", - "libcrypt.so.1" - ] - }, - "id": "e51ca44cf6c11af1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/perl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ea948c7ee616bb167ab8758899614202d712753acfca3eb430e98afb0f44d7f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "aa1183a097a3e583", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/pinky" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1609b99682c4513844fab4d3c58c09e7a445c382c0cab6b8bd6d7bf4504ddd74" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d2cb6f8b72aefe9d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/pldd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d5b05f2fdd58a5908ffd23b9d827258cf3ed894481923f536f2312b2229f1def" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2b430bae0d0f6145", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/pr" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "16a1af53235b0c5e51d95091859951dec0bd431c5761879ea4509aaf0c4e6f0c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "998d22fe28766345", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/printenv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bf7cc8faa85842bb662243c5f945b03e284a823742d123ed7421a7f5c9c773e2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "365bb2be0a215672", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/printf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2318326e9d9fdc9da1d2b9aca504fd4c630a8911f0750b3d8bf71c193585b152" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "473875df52049835", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/prlimit" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2bf52c99c98b6569ade8c0a2ce08750334d4d5a512d6dafdc7c704cd7dba4663" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "fd99bfc9be361ae4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/ptx" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "14b89d92c7047e3cebb7b8e7b7249360a0979349125f5e567d59924cde59ac58" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "420b3f262aca0ea7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/pwd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bfeeebae7ec8362788bc6e58182d5d1f534e6f7ec970be28ef63590b74edc4a5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ecd98b65394ed682", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/readlink" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "54dfbffc86d9c0933f4ab4434915562c43d1d0a194efe128642fdef34cf11490" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0ef4619ec67d5542", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/realpath" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dfac8897a98181ffcf96a2c0b8c8df2732c43ff7126c9eef435e58872029cf3f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3f4bf50889d728c1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/rename.ul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "11e30237e2bec38e7d245d8d9859b0e7aa6d3caa4c70233e4128b84873241cd0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e67e81d539c8ab87", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/renice" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f10132cb168ffbe1e5f42026a6eb0b57b28b47e42ffefba3d798bc3f3fb61bae" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "77fe6cbf0a0d9c7b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/resizepart" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40fefd63634b4da1630a5fa779d10bd2f1ee5caf8cba0db77e2fb1da34e31a84" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1f7c3bd74686228d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/rev" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0a8dd42a068115f058ae57f9f6347e1ef0ae2ffea89bf658b132974246577748" - } - ], - "id": "05ee9fd7b046156e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/rgrep" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "58e8be37049deaaacaf56196d507584b94e87a35a524db0c0459eb5ee6ae4b8c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c8def0e64bd36241", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/rm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "139377cd5fd9cdf4f6f049d09dc0a9e7113936790d65b82b7a25a0f147177024" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "09e6f2b3467fb092", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/rmdir" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "78b6e84e2a38fc763e71506c25cea342c7d83ff7d655577b798552f523b67f03" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8d167fd526f13a5f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/run-parts" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28d2eff7359ce3f1c89b9db69388af62e79a7f932b67416144caf2e64af5a331" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "52678fdae358b8e5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/runcon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a0f55fea1a81f1930c86f534fb5570785b2f12f3da49709e76c3148a89e0197" - } - ], - "id": "e0fc10c58d8f4f15", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/savelog" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e2f78d503670cf5bd77af072496ddbc9eeaf274abe9460e815955904b91495bb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c8bcd06527bf1818", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/script" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d62e33b6662ac52700a075d7d9ca55b936697037186b32118efd7884591cd882" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2d4aa9cb8c826d2a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/scriptlive" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "422f721527ac235ed8f095ca11a6ee56e08753ab9fdffbfaeb3e093b399705f8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1d170d0190f70692", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/scriptreplay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8b7cb3c89ca554fc5dcacdc04f503755198f9230391d8e6b80169b58210809ee" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "243a103f1a7560f0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sdiff" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "73b13fa951d414c5434c88e0acf8f993e375fb970c1a9b05b61722217f721c48" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libacl.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "0aa0226cdec3ba31", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sed" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "67ff4ae25eefd98243e80d9435b2c66954091e5f5dbcd134a42b611e54277ae2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f032760890dfa467", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/seq" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "687e90c000f4cb24e73863aca34bced2297e6f3a8943a42a63f4728011b7e250" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3ad8ab842ec35ea0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/setarch" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "548074b1fad78aa213a5da4516accb9f886016e9401f8bfc04e3c569045d853b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libcap-ng.so.0", - "libc.so.6" - ] - }, - "id": "ec59cbc7f8d66e40", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/setpriv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b7a2f9fbaa62f6752ffdd2f10c8fc397c7031c261f346d90b59b0efe9b7acf3a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4ef422adbdd9f844", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/setsid" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28bc53c5239cc490aaca3ca8a4b958396ec7a0a3bbe766d28b8c096ef39ea2e5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "99d8dc11200a7ef4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/setterm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ffc8563edc733984221de22241ff72ee65d15c06dc337b6b85b01f340e2461d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "668385c01a786800", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sha1sum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9b14f60b102b81f213eecf07586bb46b872c7ce9801e8c618942401688e086e5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "df40c94d218e8836", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sha224sum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6cd7c6bfc81d645ba13b927e31651a1466092a28ed0bd2632e82f8b27882b25e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "10d29e690821bb9a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sha256sum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "17d4c90d98dd17aead30b3154d18f5ed4fc3d7cb56a8c9efa5bc142691a6ac4a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b5c1a33e6e833a4c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sha384sum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "951c8e889d1c3a4c2c5098912ee517203a00f89f1bb3b7f5d3b36e49cfdc157d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "51f16e323170cb65", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sha512sum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df3e060af6fefde5ef7579833938dcca23b5c81f900ae0470a28ef96015d5897" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ef869ed213477aa8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/shred" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6d845fc5f747178e9a4d7443fbd2495030a78e5790f796ceadaaaf61b5299f10" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "66a8d8fbb56085c0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/shuf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4add4bb89d8ca0e3b1bd861130ddd7ae0fd9617a8055de0a38c8d2ca1ac95723" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "52472906a1efb4b8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sleep" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "26d29d4f3f2a9537f9104b0e496c6110ec266682bfd5f00b312a8fff723ffc00" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a59320daa61fb394", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sort" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "465258f620db346b6b0f85acba59f48130b7a1f87985f018da218b4ee6f5bdcd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6ca3017d57259a8b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/split" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "98fd8d3f1823896aa2613a4d38e7059c82506206725918666091d08272d78e95" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "034c9454aa0a76f7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/stat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6175f959028e67d73c0a394d5303d5f799492572f0e3317c47aabce6d19092b5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "23773e6d6647807f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/stdbuf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93386dd640d063e6cf024f4aa5707162db19a89ecd0e9d4bb0240a56f382957f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e82f9792fb94e71e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/stty" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed1a03d554b7fa006a5b4f6c5d5557411d5f7269cc1cb731e72876d23b0b4d0d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libpam_misc.so.0", - "libc.so.6" - ] - }, - "id": "3f0225c7dbedb3ed", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/su" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "209faef4b3dc0bdd04b65fe2ec50e772229085d2e3a60bdc318578b3dc3a628f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bfed7653edabcebe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8ebfcf0eb6d1f19ef5b9db1c9dd945679a65c7a8d3589fdc3f9ce2ffd65933ed" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1a175321d87eecee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/sync" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93d097890a8e11bd9c0da7beb8c9911be0bf7dcc4593b7d3657d005cf4666f5b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "0741f4bb5c074bb6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tabs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3e40de614ae3383f4339c08b2dac81ac33fd3b00a30d319b932fd5966c186dd1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "74f28923963c745e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tac" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cd67c2baaef8395ae68a396b8ce0bd24dabd9272f501f1afb7f76f7ef0cfc083" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8019c3f1503775a7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tail" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4e11647a9c86fb8857768bd622c43ed0662d7019f60f5bdd12fb15ac5f087070" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libacl.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "7f8d9b9560c6b10e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d692e11322807b9166229b6f1420a736d4b5ac81afc77b9b66a91373fb79783c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8ea1bb3b81aecd7e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/taskset" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1613befc577b68e65c940d45a1db6e79b25074dc3d8ddb1f2b3cb3c60ce5fc4d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7ad0a3a35de3991c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tee" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3bed0e2f46c111dbe46f75d7f7c12a56233f234bb33a1ddc49ea47badcb3eaee" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2d1af46087433bd0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tempfile" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a9cb09f9f71ae289fd3a93a86c1b8189048ea01f6b956dfa4734bb74dc834f7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e7b2131d20075224", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/test" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "074cbccb57d3d64badd590ebf7e27de3602853e0fca56958fcbdc94999ee332d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [ - "libtic.so.6", - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "fcac254c9d1cf3c1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tic" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ef0eaaaa4220593add7716aad74da927ca3bb10605e964330de64fecc3ef15e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "661b9a2b9cdaef50", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/timeout" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e3a63d17db7185649a74bacef8cc7362e566fe0b5a551a9b94a62811d7d6d6ad" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [ - "libtic.so.6", - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "c9ee18517622c71f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/toe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76100d3a8613237bf8b18bdd007c2881b749033ee89dd92d48b86f0ce8acfd54" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1a3fb6b8c99b574d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/touch" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4a619711b459c3b00e39b647d206f4ad877611f18436dfe696875af163bae846" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "8a98e97d294a9ace", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tput" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cf8a29847ff95b77fe6ef3d9ba3d750c7fd1c807763980e8c5f918da81acb1eb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "940222e4a29beb09", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tr" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c79bf44242829108e323378531f4ac839513ca1fba45efd6583643526e1e9fd2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4fc6436a1f625b2f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/true" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4e5f263a7415b772646de61ea89d1ab62c21b2d64a15b0d426e618fee45e6e9b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e9756ec739b84b7d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/truncate" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "203d8e500099e6fd5f50e2e0de36da0383dd10a4ff284a0c063485da58b8c0a0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "873a6209b3c3e4d5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tset" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ec90bbcb3047e5972a7614a1a99f368c64504ef50f7dcdcd0e3631f0c9ced4b6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "033005890361dcaa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tsort" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca27ae958bebe611fc2c3b097d216e5a7423c0dc7f317e9ab352fe307eeae298" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2376373b5873c491", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tty" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a9e7d2cd6211648712d10bdd16004ca9d46d53b138be94f5bf988da2f4cb771" - } - ], - "id": "1fd68f629495af4a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/tzselect" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3ca6e3da5960f8f768ad050cf705dd6fff4ed2a0b1402fd30f9529435b29c8d4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e9e655f342143162", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/uclampset" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8f55da36d5a2b69651300e505fec06aa17de2ac184809c68fc786311a7c2cec2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmount.so.1", - "libc.so.6" - ] - }, - "id": "62d75c2e3d2e9e6e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/umount" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed210303cc81299ad2bf8804d4a2f1e2853ad34f6307a3114b48444ceb6c60da" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "98322ac39d64a9e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/uname" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dc3fbc72adb7efc0605511a1cc3d0b058e05ad38d675226c9dd5407b7845626e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "aa48b680db6ec399", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/unexpand" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9960fd57f62c1ed283474722fde81d07aff25a6410256c8b5fefcedec1fe735b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "29bd5a6e57a15047", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/uniq" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "87c7a53f4293b6eb7ba8e983cb231e1562d38ad7068ca59bc63e4e42f9ce7586" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6d80302e6e0944cd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/unlink" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4b849063eae09098f9d24db0170a3c1c05cd9def0ecea5ffed3bcbfbcb30d6d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "480430ae06a3b801", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/unshare" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "68f9eafd730a7eec730688943f5b80449b1dc982ebe1550372c5733db9022683" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "790e6e08e8e1eb2d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/update-alternatives" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f54bbf8c6f73a185a69f64b3d7b6aef9bbc6e5a1e5d82efa14db4312207aeb77" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9a6a9d4588b0e91d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/users" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6532e2df9130b56931ed661a348556a9a9732f56bc72ca6da78cddcab7557339" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f4a7158a524fdbe0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/utmpdump" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "27c28e4a1f793d6393c73b5640a9e997efe908ee5738a511539564a1d90cd208" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "f1809c6094fba6b4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/vdir" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e9f289762da8333882db5efdd62a032dc6bc7d2bb6361d074f5441748ed7de13" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b020c3bf33056323", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/wall" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7480f7cb7110af0f45b6e04b50f8d1fb2c6392cf911cb3a28c516ef1b725823e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9c47d2babfba4eb8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/wc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d98b38f4597e58f327785a96e620778a0645c2cbc41c0b40480c39a922d86521" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "f168bbcfd2944f7b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/wdctl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd12adcee04e0c7c21a8db986b7043d5e8187a7097de8be1cbc450b6b7ada43f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "915f3ea23857856d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/whereis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7bdde142dc5cb004ab82f55adba0c56fc78430a6f6b23afd33be491d4c7c238b" - } - ], - "id": "55dcd68a766d9603", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/which.debianutils" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "68f82786ee5cac14200766a4ad87d98d8a014a4614c412abb49f2d8c13df8da6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "56723f3f34e09e87", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/who" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6ca7710f382d2d9e4026c2b2b4299775880e290915599ddd5d0c7d60076186a8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d015cfd92f429cb8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/whoami" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d6348606af361a755aabde53f6c367b87850ad44600e2b1f895f3515366b894a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6f1bce4478d72750", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/xargs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cf182e6211e04f7aadd80174f27124d44edf063c73828c91e31be1919551f23b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4bcb7123445c7df4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/yes" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0b4d86b6a10064b7f2f41a452ab5437f61d4f17d8b1ab3488f3f345519f4f8d" - } - ], - "id": "1cce0df8aaf13cdd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zcat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6e6da15f127e06d61cbdabb59d3ec9b28b8605178dbe2acf7d275aa6d22e2d0f" - } - ], - "id": "64cd7ff11243a1a8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zcmp" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1bcb10de5c01db497f845980ee4e79ec32f025443588a7410ba5001512a61ec9" - } - ], - "id": "f9571063cf6175ab", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zdiff" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dd5d1f5fc9709a0c0499c21550bccb4f96f732bf5d8e113cf86bab4ccf4a9bbe" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0b4448cd995bb44c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zdump" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "67ee7fadec7ea53b4c1f8cfc3c81427b29c0b1381e80b55642617620c84d0bcc" - } - ], - "id": "a256b1ffc7a4017b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zegrep" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "87ab5f4c7cb344e409d614d1a69cc156b3b1053d6ae0b59d8e2c2131f3e63e5a" - } - ], - "id": "8bd65dc6a2e11879", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zfgrep" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "61b3a0106c72648199611b79caf2e7a8c0800a8ef5745193cc0fa16455a79901" - } - ], - "id": "9c2cac8950fcdc2e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zforce" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f506d3547724df8e8dc9bdfa73bccb1a641b530fd5a40adc9b537f851d86b7f" - } - ], - "id": "8729e5c03100257b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zgrep" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e29f317fc56ce49eb5bd1e938b7f87923b91b40e5516ec9146f678519330f6bb" - } - ], - "id": "7c42a95e7fbf6cfe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zless" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb9ee270bee119238c74779fb5fa5cddc7939ec4923a22c5649bcb9aa7d70b76" - } - ], - "id": "5104c7baab553fc5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/zmore" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "969931d9eadae06db92a01b00458aa43d86bdf3692020d6f10b0fb8d060e1f38" - } - ], - "id": "56b41bee42e0358e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/bin/znew" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e537ce90c872a6c41155300a19e3194d2a1216dc4b2ecefef09ee3985b4c7a4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-private.so.0.0", - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "03e72792c40d70f0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/apt-helper" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4949c220a844071ee4709115aadfc00684578d5c7dda9c1b5a5c65a75de9d50f" - } - ], - "id": "408ceb4578957286", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/apt.systemd.daily" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "627b031e60e52fe1da38f26c7a6db2ed1f73daf1ff50b7dfc4adf5cd86e4ff1e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libseccomp.so.2", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "c90e8d832583019e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/cdrom" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb089de2ca278f191d3e338007cbd31f49a2bf7229cd1f223559459d1ef2f205" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libseccomp.so.2", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "c808423a8dfc8d66", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/copy" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0bb0ab3bb8455bb978bf92a107e091f61d30fb5b8635f5e13c486f1c4ecfe3d9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libseccomp.so.2", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "5b19db92deb3c652", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/file" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fbd2e51c6d179b388e43fb72a3a2183ebedcf85f66349e676ba35b14afa738cd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libseccomp.so.2", - "libgnutls.so.30", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "c1ca4e99b629fba3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/ftp" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "53e3de0179466aa9f6a014c49a7fc1a13a1cfec3466329d36202ce66c7a3eaf8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libseccomp.so.2", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "d2024c90535e2344", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/gpgv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84b045df697f0b111ed712f64f30009b5c02218e96d3a65f8e76c7bbb6481f96" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libseccomp.so.2", - "libgnutls.so.30", - "libsystemd.so.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "c3affb86131c233c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/http" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "16f81cdb2206c349fd65111c98f500c6e0f19b994f913337c3f0860cb7670805" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libseccomp.so.2", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "09d8e12f55bb2d94", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/mirror" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1777edc0bcf91076080c4b987aa83cf3ec484127782b34c886b74d322f31db44" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libseccomp.so.2", - "libapt-private.so.0.0", - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "51d0a02ff5f7b747", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/rred" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f4e10c5188c282719aaa76397e88efcf92c4325779d14236c1687074ad0cfdd8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libseccomp.so.2", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "a5952afa3cd42877", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/rsh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "46af945f0abb54a1a152dd7896850784e4578ad652edbe9a09aa65fe9ffc85ab" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libseccomp.so.2", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "a0fe94b63b7557e6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/methods/store" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3ca1d8d1df0d55fecdcabd5705f476df249c437464fdbdfaf3210a09d9df3bd3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libapt-private.so.0.0", - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "0b04afa7c66dbf13", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/apt/solvers/dump" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4035a2ca99d6d473f6e9a0af7b39d395bfe47e48b3a9993488fc2fae139145f8" - } - ], - "id": "b7ccdb72c4e12593", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/dpkg/methods/apt/desc.apt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "810da1fcf97636219401c67e891a04a7a4f01b2a0d73fd60bf3bbbdfb3775f76" - } - ], - "id": "abaadf1cbe026f36", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/dpkg/methods/apt/install" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0a636de469385b41ea06f639a389c523946ec7f023fe2a12c0adf8300e2a82ad" - } - ], - "id": "556854834493344e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/dpkg/methods/apt/names" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "69b7a73685f410eae149698b86fed55605c938e716c6a6cc99a1e190e1251ead" - } - ], - "id": "7358048cb836e4ab", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/dpkg/methods/apt/setup" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "605ae19f87289e8d4cdb80028dd071c4b3ea0e2e46da9ad697b6bd739ba4c6b3" - } - ], - "id": "8d4d3275d2fc33cc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/dpkg/methods/apt/update" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ba7abb071b92c0915892ece3c27aea1d6f6dcba12081531d2de256203fac0301" - } - ], - "id": "576a8eb242370e40", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/init/init-d-script" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "49d734860b46c62805fc29a67b9d61210113b6eac2409e4ffd5cf14589f4f0a3" - } - ], - "id": "13f5809ab5156f7c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/init/vars.sh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "26e2800affab801cb36d4ff9625a95c3abceeda2b6553a7aecd0cfcf34c98099" - } - ], - "id": "8ace95d0a8eef12f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_ADDRESS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47a5f5359a8f324abc39d69a7f6241a2ac0e2fbbeae5b9c3a756e682b75d087b" - } - ], - "id": "6fbc86b1804f6056", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_COLLATE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4b5576b19e40be5923b0eb864750d35944404bb0a92aa68d1a9b96110c52120" - } - ], - "id": "3ad6a03cee4cbc68", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_CTYPE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "38a1d8e5271c86f48910d9c684f64271955335736e71cec35eeac942f90eb091" - } - ], - "id": "dbc80ceef7a9ba1f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_IDENTIFICATION" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb14a6f2cbd5092a755e8f272079822d3e842620dd4542a8dfa1e5e72fc6115b" - } - ], - "id": "c94089b935205665", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_MEASUREMENT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f9ad02f1d8eba721d4cbd50c365b5c681c39aec008f90bfc2be2dc80bfbaddcb" - } - ], - "id": "3cb99007155f737e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bfd9e9975443b834582493fe9a8d7aefcd989376789c17470a1e548aee76fd55" - } - ], - "id": "90ba1441bd036640", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_MONETARY" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "14507aad9f806112e464b9ca94c93b2e4d759ddc612b5f87922d7cac7170697d" - } - ], - "id": "153341b50aa128bb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_NAME" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5976e6b3e6b24dfe03caad6a5b98d894d8110d8bd15507e690fd60fd3e04ab2" - } - ], - "id": "829e5cf9ec8422b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_NUMERIC" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cde048b81e2a026517cc707c906aebbd50f5ee3957b6f0c1c04699dffcb7c015" - } - ], - "id": "803f2c87899c2aec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_PAPER" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f4caf0d12844219b65ba42edc7ec2f5ac1b2fc36a3c88c28887457275daca1ee" - } - ], - "id": "682f15f49196d0b5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_TELEPHONE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0910b595d1d5d4e52cc0f415bbb1ff07c015d6860d34aae02505dd9973a63154" - } - ], - "id": "9b6b4ce021b2ccef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/locale/C.utf8/LC_TIME" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f58bfadf2419d6036a2c7440e574c3c3e7a35aea380375f6ab1b590d64e5e952" - } - ], - "id": "dd27d86f764edd56", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/lsb/init-functions" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1c1b915d3e45deaddd57fd4bdd1ff490e0f8dd1e842b22cf2bdc963bbd29e13" - } - ], - "id": "5151cf2d612beb42", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/lsb/init-functions.d/00-verbose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ec726cb9277a944c859b295af44683e3b9844236c063de3ff10090190aae0fc7" - } - ], - "id": "6ca65e3555d744b6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/mime/packages/tar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8c2a3124292211ce117712858ad06a036675a7f7d8f578e5b84267b1196c1665" - } - ], - "id": "ec76b9bbcb3cbc67", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/mime/packages/util-linux" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6419ac33624e0a88d6f271cc2955b07b95bc5376944df3d14986c2aa0c458227" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libGeoIP.so.1", - "libc.so.6" - ] - }, - "id": "2a0094a844b78c02", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_http_geoip_module-debug.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d74f1fec47c5391e4a0222c782fc9017cf9bf43f8e54638c740eb2b2ef28be8d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libGeoIP.so.1", - "libc.so.6" - ] - }, - "id": "e4233617fa771b7b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_http_geoip_module.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a4700c0dd4103b24ec8aa2aa8e00d4e09b80cf305c616718a048f0859465b50c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libgd.so.3", - "libc.so.6" - ] - }, - "id": "d7ca50bd57b33b78", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_http_image_filter_module-debug.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9cccb25b2fa68dac38a93a73fef28a9014e12158f5f1279d99d15d28063c5d9f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libgd.so.3", - "libc.so.6" - ] - }, - "id": "c69df1e9ff615838", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_http_image_filter_module.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6e9551ec6147c907f227fb509c5a2df4c4665e8320cdf29d45c19710409b83d5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libxml2.so.2", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "1b786bd64db4e394", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_http_js_module-debug.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57685449f1fb7c817bcc0fcb6e380aabd3776a3f4f7ed43749fc8f4d37d032a0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libxml2.so.2", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "ed6f0d9fc00f7765", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_http_js_module.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0c68e0f7c32a3c9d630642fdc429d283a1e65b8b0be6856dc6ab0775abb04718" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libxml2.so.2", - "libxslt.so.1", - "libexslt.so.0", - "libc.so.6" - ] - }, - "id": "94965582b69a1f8c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_http_xslt_filter_module-debug.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fb9d15a69e6d4114504c9f5e57b09a6961bf6ce9d02d4aa99645c615e8671e6f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libxml2.so.2", - "libxslt.so.1", - "libexslt.so.0", - "libc.so.6" - ] - }, - "id": "2fe85bcd61614eb2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_http_xslt_filter_module.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "757b8f17d5bea4133bfc4ed383292f5fce8664f6ae1cec0954b5bd0f8bdcdd6f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libGeoIP.so.1", - "libc.so.6" - ] - }, - "id": "3efef227faf8e7ce", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_stream_geoip_module-debug.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "363cbc94deb356de64d58239ecc496f02af1e355ac443e1abb901d8fdda5aef2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libGeoIP.so.1", - "libc.so.6" - ] - }, - "id": "7f2df0a255c44d3c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_stream_geoip_module.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c8a638b3bfd0a99d9c1e72091f35a3df1d7a90a2ac1d8537618d8ed4a43865e8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libxml2.so.2", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "6a6a769639a60a80", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_stream_js_module-debug.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5e7ddde4f8b76cd56fe347c2d6b82a4711431ba53bbddb17c32aa25853760b8e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libxml2.so.2", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "53063e99aee596f3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/nginx/modules/ngx_stream_js_module.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59a77b5f2666d9c85c489bd1911a6eebbd91ef22fe48b90a3b75f1b21f3844d4" - } - ], - "id": "8675a71a0effb51b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/os-release" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e2e3a3dd666f12d1ca8d92a66de516eb55126c02638313489a4cb0bb714b85ed" - } - ], - "id": "17f5c854e82e5409", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/ssl/misc/CA.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e2ea75ecacc2efa11aa1290fd7e544c8005e96b17af65d444e4f76fdb1711dfc" - } - ], - "id": "977f0ddcb1cd80fb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/ssl/misc/tsget.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "da0651537cad0ed384291bd50c0bbc3268e6c625626ec9344150de4e8db3925e" - } - ], - "id": "c36133f98b8dca38", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/apt-daily-upgrade.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b804d7bab8eb41202384f9270e25d5383346ace8b3d7c4f5029c150638d77bcd" - } - ], - "id": "9301437db591ee67", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/apt-daily-upgrade.timer" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "90f87047f4ea2f261f9117d02870de8719f808b911bb1808bf039ff3c162e5e9" - } - ], - "id": "ab2e005f22784ddb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/apt-daily.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0075e974af4e3a94757e219ba50ccb8348d4d1a8834d938f6cc9b1f4fd1db4e5" - } - ], - "id": "711a9bb7d2d3acce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/apt-daily.timer" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "85249c5a74e9c47bf39d34e78612f0a0fe56cb8b35145482b40f8f73f08b2d5c" - } - ], - "id": "2b74d4392388e5f6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/dpkg-db-backup.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "53f7ed8aadfaf61d9decda9565b65f68d5b5a66be4ee8f87741e47163839b4a6" - } - ], - "id": "96b69399c63a44ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/dpkg-db-backup.timer" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b99f79775ad0aa8c52187d9d5d82f34181012664a9d49e109a7fe86a42443a78" - } - ], - "id": "6624d3cadd0cb50a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/e2scrub@.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59a0a04718fcd5e608c9291d41ff378cd531debfa2e6d539add1b716c958a128" - } - ], - "id": "3f50eda25664bf9f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/e2scrub_all.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "23f20fb6edc9fd54bf4754ef4311f88cba45ba65c6aecfa1885e8fb99531c211" - } - ], - "id": "842a4e3025afa972", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/e2scrub_all.timer" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d11a0ceea342723aefe89e0dce95b66c2a6a6936d2da95dde51934f15d0ed0a" - } - ], - "id": "50e66d2dd565b6f7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/e2scrub_fail@.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35405e2a877fe17ccf05c96db2e037a29605f8719ba3e4b2f1670c721aa7b5aa" - } - ], - "id": "705bc6e6602454d2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/e2scrub_reap.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9d5ab55ca0f12257edd33d154e5dc523ddea4d5f2525557cbf96e30b97deab56" - } - ], - "id": "060f34521b7f2bc7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/fstrim.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b15bcc0d8fc3698701087264a834bc6c495780ed27b68e0a8e3eb10d02bef74a" - } - ], - "id": "29c1d13f51a4485d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/fstrim.timer" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f4f32cc77a15cdbabc1ed217e5d0e96dc243c397e09bc48dafdf9f91d63faac0" - } - ], - "id": "3c7de8b749707d48", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/systemd/system/nginx-debug.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "043f6de8eda511a8d365536e4311eb2d1d43603faa369ace2cc522d44b4673f8" - } - ], - "id": "9bf52e1efa79a10f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/systemd/system/nginx.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4dcd011776e596cbb73d3cffcde737aa043b5308f0bf797a23d4229de54d716" - } - ], - "id": "b4a85c5d069841a1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/systemd/system/pam_namespace.service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f008fb6fab3c7a38ae92b4e278018618082f3b17c6f55539fe362cd8139e6e65" - } - ], - "id": "d46e7c86e7537dfd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/E/Eterm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93ec8cb9beb0c898ebc7dda0f670de31addb605be9005735228680d592cff657" - } - ], - "id": "b4a048e198da65ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/a/ansi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6b03d75f3d559479720862dcf96331aa618e23c81e1ba6dbe8e1fe2e68404004" - } - ], - "id": "89275f2a958a884d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/c/cons25" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "90e9c4df466a8ca0927545cbb17b5ba61156beff8956ade40366479814641e7d" - } - ], - "id": "baedd5c28977e121", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/c/cons25-debian" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3e04bfdcc0764f4e28655701864845752cd3f77d0c52390637ebe588f91665cf" - } - ], - "id": "c72d5715973e7f64", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/c/cygwin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "123c85a2812a517d967db5f31660db0e6aded4a0b95ed943c5ab435368e7a25c" - } - ], - "id": "b8477ba503f8bba0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/d/dumb" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d5dc00724a04eb3b030addab6914380521d40f416818943171070ec64c623607" - } - ], - "id": "b3668e158406e600", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/h/hurd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b70a4941416eb703a01b5a06fd1c914880452302b0e0b2a7dea12600607824a7" - } - ], - "id": "4b71ccb5ef8fc7a4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/l/linux" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b5ffe38aff15d130b11a3d94941dddddb7af79afa1ebf286ef9ac088b797b633" - } - ], - "id": "9ae82cb15cc28944", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/m/mach" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "540609c739e14abb8b67eba975e9e4353f0023593f976f4609e1b04cc678b5cc" - } - ], - "id": "6e49061969e58d8b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/m/mach-bold" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "55f2259139e9ca8a1a837d79b602d532061aa7b3a1ec2002a26d8b3d4c31a549" - } - ], - "id": "4b26f5aa8f9bf533", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/m/mach-color" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9f2a5b2880cb0230fc48d494584daf9adee34a9ce4248cf8b0ca314dbe464cb8" - } - ], - "id": "864770be96cdbc6f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/m/mach-gnu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "085de63724bef7a53ede2061593f9693dd992eb92f5b1b51bcb6d7cd77f8b613" - } - ], - "id": "0f6c54963c60d836", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/m/mach-gnu-color" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d2b55029191e3d8b62f740326865885ef16aac2977ff8a90c5928708439cd736" - } - ], - "id": "7fa37f129ff4fe5f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/p/pcansi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "18c1977fbc80e6dc2940c3334b56cc753949dbea29007831176c3c00bc80ac1b" - } - ], - "id": "9448c241dad5cb12", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/r/rxvt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc57dfecf9bc7c444466625340bb5ab2e3f8fb41174d89da6b90b5bbcbadcc0d" - } - ], - "id": "42e5b87b978df748", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/r/rxvt-basic" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "280165734528e93ec7c770524e8ce3a3d29dcf5ca5696dacd093d1eb5ce3460a" - } - ], - "id": "6d1b878c01dffe08", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/r/rxvt-unicode" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8855f7a9c77a4447f16398cc2542eb56ee80f3e066ad0a01e7183673d0e9e3c9" - } - ], - "id": "71efd0b09ceba54e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/r/rxvt-unicode-256color" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "173d3433ab6c064a1d2e01308603aa85f873d58e9cfecdb4c8cfe7dce1fd1250" - } - ], - "id": "e91f30c60da10406", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/s/screen" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cbac29ca9641403d7c2e377f4c54c52f24e811f98d47c71b599707e00ad91f0c" - } - ], - "id": "ed9d65aa2a799db9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/s/screen-256color" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "172193e6284722c819e36338e22ffecb7e7963320903edf4d3a001a41f041a5c" - } - ], - "id": "7e8feeda6776c85a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/s/screen-256color-bce" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8682908bb4ff7a6a169df89daec7fceb8db40625f4a65151a3227b1f063c76ba" - } - ], - "id": "514282d9374201b3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/s/screen-bce" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b996938cb7001a903b77d811a11c60889e9b1ecf0f69fdaa27d75173f14a526b" - } - ], - "id": "8bbd0ef6dcfd4c6a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/s/screen-s" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f9dab4b1b272e786dccd636667771bae5a10e842ae30bb5021fc0268eedc0d54" - } - ], - "id": "9ccc07403013821e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/s/screen-w" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8cd4e46b0b64d8cdb74d6e22885a66dc09fb6df34152b46fe4540329cbe0bc67" - } - ], - "id": "fd0ff352ee4470eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/s/screen.xterm-256color" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "02e392161cb23f49a8fb1ba2f1a6583e013c0c26672f58c5eaca828db3b19914" - } - ], - "id": "33edf9c7d9d56fa7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/s/sun" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b8d889a2e0cc3773b0a93a46b616936c5331fb9cfd0b4ba1938554228939e79d" - } - ], - "id": "f4a7a24d4d247fdb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/t/tmux" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b1bab715baa64c86fdd5c5bf274106fe986054f6ca71b87a9925f566e2a0907d" - } - ], - "id": "b199c4d6e66bcecd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/t/tmux-256color" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "779a219d6ed2ed282f9416ee04fe65f92a1c90606cf6e93a61cebfc3aa96c982" - } - ], - "id": "d1f0b4f22e6218e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/v/vt100" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7fe8275bde4dc821f6b89ca2fd99badff00d02db7d92fe9a419ebe7331426e36" - } - ], - "id": "4e50e2db701df6bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/v/vt102" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "463acf11d61e842340295dfd230bfdca83d6fc3ee8b3a52aed0058b3f7ea7f17" - } - ], - "id": "2615c9870b502bb6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/v/vt220" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84e298d614f21185e2da434d327791c6a9900c81d1d7a40c51878223cff9e9db" - } - ], - "id": "4ee965572ea1bab5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/v/vt52" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28d3410e6b83a3b78a41f108098ac8772a3af3ee2b627b9f9bb4b19b363a5be3" - } - ], - "id": "a473ddcaa5ada6ba", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/w/wsvt25" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "18c85db3b0ef0ab15b7eb8dc4ac6ea14a37d851628220c8bb61e2edfa4f81683" - } - ], - "id": "7394569296bfa6c5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/w/wsvt25m" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "049fb296ba741de1b2c17e274ec7fe5da6ebe6d7c6c8771a06462b1f1c69ab60" - } - ], - "id": "d91ef7b32edc9046", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/x/xterm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f37f75156ad7aecd485c80977f50f41d908f51e3579d98ce1c27587bd42d713f" - } - ], - "id": "124ea9851b3e967e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/x/xterm-256color" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f74fe619914bfe650f6071bbbaf242c439de8a2f0ecefe9e80870216dfb844b4" - } - ], - "id": "05fdb8293fbebe55", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/x/xterm-color" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3024be4c36be53d6468fa1e48a0f584a410a17e26c3c6e7826c815b4ef56c595" - } - ], - "id": "5fa897246d3c1d50", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/x/xterm-mono" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "82098ec067be6189e91e8264278bb85fe3b7bfdeaa3754be301313be140522ca" - } - ], - "id": "9ef4a87ac0e11fb5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/x/xterm-r5" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ee12fe6d2d8e1d0b83d1042fe8a38f1aed6fd73e2c7316e6db5ec5b061b09ef8" - } - ], - "id": "1f676ced8f1ed7f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/x/xterm-r6" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a966491570c6abda6e468f1b7558c57fbb0853e4301188b6bc6c5d6cba64ada8" - } - ], - "id": "71088e163919936f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/x/xterm-vt220" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0827497deddd4ec9e9515dd9530e6b0bf92762553d1c4eedbca3459c1931775e" - } - ], - "id": "ad6bbdea8b881b59", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/terminfo/x/xterm-xfree86" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a3b927102b44454eb4c47e4fe659de2f5283f364ba27408329a54d4ad47e310" - } - ], - "id": "71a14c2c07bef841", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/tmpfiles.d/passwd.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8cdd9cfef02b7b6bf1f44e6bac157f14d6d0c28e107e3f084be41c16c7688df5" - } - ], - "id": "6ae6dd2c1300260c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/udev/hwclock-set" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "31341ab239a262184fabec413aac9562b1352df350031d8968097c60903776a2" - } - ], - "id": "1be893d99f0e9375", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/udev/rules.d/85-hwclock.rules" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e9648d1e428a759e9f31ac1b9f375a2545b4495d9b31f2b47066d106ed502654" - } - ], - "id": "a0b59a1b273cf8ba", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/udev/rules.d/96-e2scrub.rules" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dfb408bccc465af66ea1a3fe6d4b6b2bdc042bc38c96f377cf9724ad573231d9" - } - ], - "id": "621aa7fb06582a24", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/e2fsprogs/e2scrub_all_cron" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "50e5da1e3251b40fa19f7fdb614af87fe53b01ece9fc0d9198ba864b1dbefd0a" - } - ], - "id": "96a27e1caec78a94", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/e2fsprogs/e2scrub_fail" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7c4b859fd1201e0591c21ebe8fc5c2cc40012d3ff7ce1845ec963b5131934bbf" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcrypto.so.3", - "libc.so.6" - ] - }, - "id": "77372654b0de4b95", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/engines-3/afalg.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b2a3f0fb420ac463d80aa84e26f643c074f632d17617ca2e35be698274353f2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcrypto.so.3", - "libc.so.6" - ] - }, - "id": "6ec904a150a7e5fa", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/engines-3/loader_attic.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9073d2a43581f8c251a237c45961e3f5f8b1180e64d797d0c85ea656d87bd2d5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcrypto.so.3", - "libc.so.6" - ] - }, - "id": "e9edeede9d159ed7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/engines-3/padlock.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7bfcd5b7ad7391b1d94983b59ba7b6fc6e8d8801a9e57dbfa137d6e0bc66a13" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "38982e8a99e7038b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ANSI_X3.110.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cdefc9b785d37b6d1449560b56e635357e50659cd6c4c1ea9964498ea9e75612" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "01811f9878d8aa1e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ARMSCII-8.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a4319a684619fb653b7ec390b5438f6fea442e8bd497f1ee250032ebe4636b93" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "25d40626fa7b2926", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ASMO_449.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "03a206b8ccf1e642b8358c1cf84ba2618986a0afcc25d477091c18b936d95cdf" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "20646b20f53e3356", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/BIG5.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6dd444c88d0a37595f150f9c7ba7d2a55de1094c59ef2868e3c31a8196854fa" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bf91d2ee359f6816", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/BIG5HKSCS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "13ef01c19a2deb47f26bec7c49307e7cb7c6fa0b51a840f5a4df4aa3eb300aaa" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b666896f814b02e7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/BRF.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7f550ccae69a1966a2b3320b5097ac36425c524a849bc660739166ca2f23fc51" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d5421ad70f7b4567", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP10007.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7cbe7a62759aabc17bd4c2c3ee17adcad1c4e6ace468893d8c4975026402e757" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "458ebc4157344367", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1125.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "699cb40f56740291d0d39d4e9c0f149aa88c7b15378488257c9d669c78c68b1f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "abe2f4302ea685ff", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1250.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "db65da5841aeb777aca14b32a751b05880bf1bfce51b2ad1ffc582bd16e727df" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "11c14e0786a84231", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1251.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dfb34078b64dd48540179930a26b9772c33365d955b645558c8afe1f3099d079" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f3f812e58a9c6c58", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1252.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c5451f5c613a8ddd9ef84ba7a773c49c53824546b181995b51c097a5df7e1714" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f55da5dbf0f53dc6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1253.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eba950569054013ea249aa1ff55751efef4a251086998768502331afee4abe67" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8de62a63fd7f2fc3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1254.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7dd91146edb9a1715252f81372ae8179ab40df5fda71c7fba7dc25f66e5c0334" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cc71d74ea94087e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1255.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d4a4c3b32531afec86321a8b95136a8e280b2670216731c592468ee7312aa82d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "983149b596c97a6d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1256.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "abddf713cf98a57470a650ff06d15507e5bcbd3aa98d33bce1f3946cd5258046" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a1058078f597ab7a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1257.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04d460d75fa70fc7731c6af34370d73aebb8b549b17eb91d47f3757298c26710" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "323c24bb4a881333", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1258.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4fba9b37428a49bf0e11ac8938f2bc8650ef05cc3634d732852d11739d9d0f62" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c67a1c94c1646012", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP737.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe07492d2135472e99440a3deaa209281122ad6f3ab2334f2580e50ffebfca8c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "494f4ba57c30d762", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP770.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f1a874aab8bad3f653476e289c58b11ec5666761f6893415c6558b075822288a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "dd2f420f329dcd2c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP771.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a1601a816098b649b3755e55b2d967c325d7f3b31a6eb72148f84b52e0157225" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "daa5ff0cff0fd700", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP772.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2673000b5e2c03f215f323846d46654897a35009803815f5187ba2b536222dac" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "acf68815b2493181", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP773.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "01465ca0b686db80f0e46591f25eb59a2890d0ecc4f101075d8ab773477cd0f1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1a823face6b0bce3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP774.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9620b30e0ef514af5ebf93e034a6411b2ea949b68746161e0bea77e98f5467fa" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "261431c020027032", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP775.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "421d72d74077e91f2d46e5aae32b3e5acb6e0dc38929dd2a8fd197f900c2285c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "679c1f4ff3773e7a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP932.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "66519ab1f9649cce667f604347571d000d006da7ad3bd6fc407808010c8c7867" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a004eba1021f95ee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CSN_369103.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "09d217f15c1d3b8ba7df7f20fd080a72b4122e9e50a4e0448f6ec65d6d5c47ff" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5a763cfef453ae7b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/CWI.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b0d3a1988acb81f5310518df051897c3ae6ec3bbacdb1b2ae6ed5f059bdb7c9f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "fea0e0209df1997f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/DEC-MCS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "31e856ffb487e12fd076e3729521a2ec5d6ca376b8ada2ce05740b1a510491a9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bed473906cd10589", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE-A.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "126e35dfc96e6ac8bb09ae1a420156cb16a7a565de88660dd3027141616750d4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "64b494c46e404bf7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f553a2e99fb247d670afc582e177ba549f93cc350d5a88f29a31f8a8cc2cddb8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b50234d8f5bae714", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-CA-FR.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "70e188058860c90ed59b89c40ad05fae11188d60e95f2b3849846ef47c023dbe" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "04f4014fe75cc9c6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO-A.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9213b07261d351866788406071d9990470326ed1b8de4f6870b31bf5a3dff903" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f66a51c5626df0a9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4aebae5fe90f310282a9fe8007079cb0cec0cb8e2c9b60b4e6ecc0d77294f71" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6e55b486f8002aa3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-A.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2912998d05ed1f8fd3aadad58227772a1ae92c1efd1df564745015e565b9d4e0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "80ca313522b103ed", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-S.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a834c54ac14b8fc591a9c8527502c5e4976cbeda59518f6cfa717e3df8b8b34d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8769d9fbdf633bcb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c2add37491135b4f55c1e50b8b18104a76196bf72e567d4858a727daa825e171" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f176223d58ab3ea5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE-A.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "03865d6da74958ee5e7004cd5c49759e560afb03ee707c0f16295e08912d0afd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "038464260a531a0d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "44661721e2f81338ce0dc96f03a33f359d21f78d72cf4ce33f93a669ff8ba1f7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5ac6a03b09ee8051", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FR.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6c56dc029ec6bdaf7a8dc5e8dbf3c22c9f99182f88f43a5e3f9eab545f7b0729" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "62ba8b51e7d741cc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IS-FRISS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "23523b19c178a2ab8836fb40d6b9e1514e79947dc139df9f353d49efa1cfa0c2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9d4efdc54b776f47", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IT.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1262ca992e590834ceab8c8baf27ee10480213d9a81e0581bf241cf7689b6f75" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0deccd209af40e37", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-PT.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "280388f990cb7dcc84abd55b2d602f2a177d0da15e0200beeafe9817895d481f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7c6140eea0aac218", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-UK.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a6b4a725af776202a448799d4f1ce1827f5ca8a8fe3e1f4cbbd3a0779e763945" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ba1ccd95c9a3cce7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-US.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "efddff60c1c54fbba78121ac09af1e737318fa76663ad6a5725eb37c20dadd61" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cbfdf35535463583", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ECMA-CYRILLIC.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39f1ade70bb2d7b9b72eec03d5573c743cbf7686e880a773997504ddd10c3b75" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libGB.so", - "libc.so.6" - ] - }, - "id": "542615a1dd8abfb0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-CN.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c0e14d13a294d83a4fb96026fae944fe5b4ee82fee8a54e274106e0dbc68a6a7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libJISX0213.so", - "libc.so.6" - ] - }, - "id": "8191572186749eec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JISX0213.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df0b50753ed4e1c4856df5e00fda2dcca997d834c4bfda7b6cfc3a245ec543b2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libJIS.so", - "libc.so.6" - ] - }, - "id": "4bb1b9f74db13ec7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP-MS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "701e52bc5d67a746a198719b1cb3b0840773b00b6e2cd74e7748efba945c972a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libJIS.so", - "libc.so.6" - ] - }, - "id": "9b643bc16f8289f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c71190fa59a6788e3b9ed3580c2da6f6457f6155b460362b5b4dfbdb513568f1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libKSC.so", - "libc.so.6" - ] - }, - "id": "1be0f2b4ba72e145", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-KR.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1cc5417cb286121997451a5fe02fcfa7547a63057d71e48f35b8072f7e0662d8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libCNS.so", - "libc.so.6" - ] - }, - "id": "ce7bdb7784b293e9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-TW.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "78377f8e52f47a8abaa442343333c221c10a5ede0d17889c857b375a2a871ec5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "05464beca56d7655", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GB18030.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "753718dc09a4e4e522d12bc67f54884a4b852176ab87e61c2aa19f21d780b8ee" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0f3c6dbe19f13549", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GBBIG5.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8441e446159523d6f818a94346c79eeab8f7856143d5513be34b241f0d32e7b2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a8094b6be5633efb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GBGBK.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d3e4c5a8d621ae3c77cb6a7c1509a20c8d0efbe34ae59d7851daf578e2d794a2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2bde0e096b2fd471", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GBK.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a66eefa2301713d8321b1a66f89026f67e78aceb68993f2917fc7ad0a31e7942" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c856001d6515df56", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-ACADEMY.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39cadec843821cad9a5901de54910d2b75b252c3b0b2568c0e81fe055b12550e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7e5c5b9b87654350", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-PS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a377e67810eade7563be2207f73357cefc8e27c4d2db2a51d1db9a3d05497b82" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bb3af0e4910cf818", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GOST_19768-74.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30d6efe7b565ca144e56e1e111059509e1aedd2ed6ea4337b5d8b556d44a6752" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "611d5a766811b343", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GREEK-CCITT.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0e563b9192dc85cc0a06ab46a26e3fb1515f9148a528ff6951ffb345aacddfc8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0da956a0a874e9a4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7-OLD.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "78fff9736526dffcfff27af7411e88881005e5a332536e9fa6bede217f399804" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6e1db6e39601cad7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "68f1667308a44480e19d9d947de9bfd4ee64fe462cdf1ed6805046d079d6913f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4df7b3b7013fe20e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-GREEK8.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a61bef213e15a79717f82153b2b5bfe704d08bffdf7c221355358f584591720" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8ca4ed0aa244f698", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN8.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0fb903647f92c56398e229c18dcb89bcc382bbb790d60840bac663c4200a5e90" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4bf365bba2dc2673", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN9.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce22833137d3af57014a6c94bccf43cf6f96313737cf082b2a0c0d7550e25d91" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1ff4fba0a5eee537", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-THAI8.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a613e0507ecb2249c660dca6f2e661ffa30eaf3d534cd63b6b63336155f88a9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "475aa54d63229d99", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-TURKISH8.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c4c9dc3b0b0a54917a3d23c9006970995651d2b7f86409eed0bfaf9ac2ccfa20" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f957a4e4d6ee3d22", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM037.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "de437ca55bb5ed71ddd4fc445ce1487fce3bfef0eca44c7c0676f414990e305c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9eeb081b6268596d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM038.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "42a6d6651994cf529721effc580c8160dd1596f273b5f0b780a04c9907d71b32" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f67c1c350fecedb6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1004.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f6097df692766578d580a6b4b320cb072ad0071be6af2b375c364c5bcd4d8495" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d6d42f1e1f97a35a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ab3986f20c00588e6fd147ddb437b0d01e42c2326286af1779a2a7b38beff8c5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7d5206f699ef1d97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008_420.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "362c2cb65e62bc38d160115bf3e97d43c798458f42ad23aa3ff7c08a271c63b7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c6f4f5456ff31b71", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1025.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c55d4c2ff53feb2e7f08b0417804fc0f83bb91ba3628dbd52241aba809c47e49" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "594a624e1489cdbe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1026.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a492b9608f0bc33323b3eb8ee3c9673715296c5cee3cee5844e40bcb3e854f2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "99f0489e125a68fe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1046.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a36c4da34e8f85107ba2352a4611e394b8fd4e838fa5762d17710188aed1c89" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "085a8892ed1d218f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1047.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5eff0314d9076389e485d1b5f01328b5875202978234227d49b570d9853726d0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "057d223119c61a0d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1097.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "048b91cf9eb6bf1cd50f56daafd7d0893c17922ca220f590691b484e8899d4b5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c09b3415e31132d5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1112.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d4e861c40f55225becdc8893487e74062d3d24cf571a3167ef94b0c0797f4223" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ae260ccea3941c5a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1122.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "00119998961d9d8fcb2e0f4a045c955451a4dbf05cd373ee970294ebbcc7d8fc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2054d5ef328b9483", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1123.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "921d0a0e658a6310d2c809f86fcc901a989bec32d6d28499d0d52e5e516faad1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5cc0c0f3f2cf62e4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1124.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ea7dc23c8fe58e487b9ca72d37e13f924d89015cbdf5da85d2580839e02cce93" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "57a5e0c51beccd90", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1129.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "65fd2fa51d38f6d5871872defaee4343ba7e993e43110fbf7483de4303a94b41" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "22a2c5c0efeadd30", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1130.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "763ec5622c25eca99c14075cc313b76a051e7a5cbb02c7cde41b16692b1bc2bb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b9ba6ab5eea7a944", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1132.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "947745969306e977c2f9c4b3e57e4dde45859c4d9fceb083ae9bcf908f6f8221" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d5692cbb62f8e2e0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1133.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3f15f4954cb2b1f02881115ebfd74aa9d50362ea02664cb99a5bfccc71fa6a28" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "62cc4949ba9cf92f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1137.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f52c2670f9b402314b64b680930995af99c0d6f19637622c2d7098f640b34c5b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "39b83ddefdbf9c34", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1140.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c1b23c68d91be2a7ec2e88ce3ff826a6f492eb42811f46a551bed8c637465b78" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "162c7a1ef024fd07", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1141.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9fa3f9801f0936c0b0db222d5ea787f430a89bfa00e74dd3bd3c4fdfd9bb64b6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f3ed4f1f577baf94", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1142.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9124d4fafa5bf4c3fcc08097264337c562e58eda6bf50e50e8945590864ecefb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cf935bacfcbaca27", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1143.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "95b121fb3868f61867bbbb39a3e5a0d8445b4617f3369d6acf8a5a8b6c618c1a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "166f54d2acebfcdc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1144.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb496776c31d7773a13b30a8cc6ffbe13c3ea7d854414fbca8e017bb223feb2f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "610f6fc68c828be6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1145.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d3584a119cbd36f5a396cf4ccaf98b2d626d0516655f253a263f9b186a36bd1c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "356141258fa87935", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1146.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9351988101b7716841864f9d65685bc5c8e35f75f9ebe9c924aa36e337047bc8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c8b276a5d83bfa03", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1147.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5eb0a332fdf2cb4fd8fc0864f549a0cede6ae0616c4f9ddacd9d010d97767956" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a73985023ccda046", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1148.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3a8d116fb3f712c135c331230fe42d6f6e611ee2e81663e2c9a0872a2f184f6a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "42ff0ffba57b57f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1149.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "89ff08b83f16344b3b25e1bd735e52705a73fcd3c8bc99371ff05e24541d2387" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6d521b3b8c8014d4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1153.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b5e0f9cd3ccf91feeec2d50a4d737fe72d886c72c4f61e460e2884242bc0e7c5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1225d27af090e762", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1154.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "86d5443f9a1a8993e2b03041be43cda84444b3efd27667e1c9508e292df72cc2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "187b261e84fe3635", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1155.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "58eba450de403c4655e3346af8d6ce4c439547a27084946267a4661b891cfb2f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "dbc09001a5deedcf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1156.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b1197ce7e2e172c8835ba85d6f2b2c5b5591ca29b57bc5b5830a852854207872" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "392970718e603b63", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1157.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "78614c0670d48ded4962c013ca84b097a587bcd597b0604ca887e20871f843ef" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "58eabd01cebbcae8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1158.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "66578e7c6b197e8052ad0a7449282839bfe7fb04ec4a47a06fa1d041aa7d7b21" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "219b661b34d3ad38", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1160.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a77ce698bf4a2f93f37716ffe4220a98d911ceacb6e5f0e121003cd2d8bbba83" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "20ca22c80447fb46", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1161.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a3bfd9d5e81067f0f9f7186944ad5d3530dbb9062f4d5bfd4ee85aa378682ac7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "445edf4fdf99dcaf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1162.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "88e8b4cff04df644849f65398ccaf52c35bbd950a9cae6ac63bf8259c82f31bd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7862e72ad319eb35", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1163.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4fdd2add9ffb2f584798f58215d075f71078633f7b52a9b0de625f55135788b2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5cecd0b6d6273767", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1164.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "54b56aa1acb091d2440d70f3b02383c6f68fed68b23a16d7151c2694b7311dd0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7070106f7546b096", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1166.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "74f08b619e777314be72fa5c5ec59c9d3ba1514255a727c1bb6ff0fd7f047300" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2f22e11e6caa1517", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1167.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5de30b9edb177994f1edae867f6e3f70821f9560d2fe2ecd6688d0cfd5e29ed4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "424e6cf9bb18005a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM12712.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8c49f0871a7b0649087ed6923b05438eb005f94aa80054eb4ba99e1895b77738" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "fb9c4b0d8fb77a58", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1364.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "335d5b5849949297e3a0ece414a184f8713057364dca22ecf0aea9c0a30dd410" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0a95312840c64a32", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1371.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "65b454ad98683a215dc8a31cf907158088f37f06913c3829d3b33c57d5606aea" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2f8a777414e88686", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1388.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5247e5eb24b7d02546668fed063d9502a4d5e1a31676f2616b9c804f7e7798b3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cce7e15c749f672f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1390.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3cacb428dc9eacc72937852b1ed2e41440ea06b91a85e7b79e4956d63b7d6e32" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "209f4ed15c58dbe3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1399.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3298c96fc60cccfc991ab77c14e4cc9bbf6a5164700b9e18b36f4150f059d039" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4dab34d53b3f98b9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM16804.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39a7836671ae29a27249b169219edd49be781bbb0a1468d4574d80909adb11ed" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "20bf6553835ac43e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM256.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8ff72372b8ed45d4ed1e3df3cbab65590ef17f4a6facfc793259b43489e7cbc4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8dc3ad117c343085", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM273.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7380941ef2c1c8009a78a1026bcb206fff5a7b8b7ee2e1700a1d75a578a2d975" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5be79db29146cef5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM274.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fcb30879b986d1978e10699768cbf0be8623b89cde571a1dc8a3a2111d6a8de7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b909a012416ceb44", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM275.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0d7e551b4f181ef364ff67571d3b5a0512a4b6a1f0061cc172d2244a717a13f5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "184ecefc4a371b49", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM277.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a87cafe1ac9f3b8301f215f7ada9f21446cb3b603ddfb1ab3e0f6dd8126cdee6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8e2f7b9afbd4b7be", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM278.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f438b62f45b911af6077057c4d41ae139f330ffc0ccbcae37544cff8fa3502b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6d2421dd1fd52a8e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM280.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bfd3b602230ec2de187084dfc831728ba5ff48c071337e1c456f03ac35628827" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cc4047fba545d68e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM281.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "15b347c71bfc62aedeaed9dc8302efde9bdbf89f856891d4b6c0d5e2ebc761e5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "61b3172bfbc6f293", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM284.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d8f5be97c5b7186f049f87286b39a4923e8987517220835444b008d35ac778f6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e1ec6b5dcbb26a21", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM285.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6bbbe29ebe027507eb9f27b7409c53d4de2f6d65657a269a25038bb066df29f6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1a1ae551f4c7ff74", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM290.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "372619b87fddacfab436ec2e7de20b0323be256f056933e5d8ac96236736770f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "61cfdcf5dd443c6f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM297.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cccae766e06af9f8399b90939249dff3b1873de90d886e93594a7dc9b6e0524b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "33dfef81d22cefa7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM420.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "31304f4c916f11e891bd236f32b9ea6edbb5447b06fac03793c2c0a63496c4f0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "46395c21b9d0d648", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM423.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3ed0eaca86c417c9e508c1ac0fc848dc0c29e91fbcbad36e2eb1e56160684bc0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d006fa9b3cee4286", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM424.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24fa82edf8de3af8c79415c65b5806d40370f0bc991ff6b7b2f03b4402a01d07" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3783790f5f023b26", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM437.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f260a74023a35b516715b377711b1113357b68be242452e8301f326791766af" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8f4b5c668dac8e40", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4517.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "250fb9dee87e110c70520b97bb63d3986bcc7db3a968d97af3908ed374bde6d0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "595872336fc86e94", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4899.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c57adbfc1ffbc3a8d4ae333845433d0fd645b24b44e67f3cedc2c0004375e180" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cf8ae387025ea93d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4909.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b15395b4eda24688f4d525db08437845b79215c9313983fc00bc37510d2aa10" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "df6afed5c0fe8f8a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4971.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "01c47434ba18dcd3728cdbb4a83e5b85f4a4de91427801daa0b10c5133406be7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9a26cf23df2de1a3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM500.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa5e4979a63d987b1f1ed150c70e486cfbd186beedc21fb9df64d4941e2f3088" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a54a1693a3b50d23", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM5347.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5e04434a138f2cdb159de89cf87988fcc9a094175239881c0ea710b6b914f99b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "51a4c396732a4bd0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM803.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "703df54b72e97a2ea1578fee6fa5f6bbe48c3f98e4de1354b5253efb2bf96b49" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "dad75d83e08259ae", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM850.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "29e350d3c06ea8e6deef36204578b1a143772b038c75ff781f9c49bdcd8c68f7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "dea1d374d24082e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM851.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ea7caf26aa91fe38ad6302d5092d741ff455ddc66f617d3e3a742f1d4f58f4fe" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7875481ca9c3138e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM852.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "691c55bef4d72f1d3cfbfc6515d755ff09d7cda4a72fd3f56fbc9726bd27fb67" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f40690ea968463e5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM855.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a55b7d27340fc0d12e6eada330578cb41de13a3fa0ed7e229a1bee1268075199" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7202dd7c9ed872ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM856.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40a003732663e90f3a2e4b71264ef2fdd41678db1f2541f9d06fb92e39c6be8c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "13ab315c58ead573", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM857.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3c2cf41483d2e7c1847f791173f11f44e78574f61044a68471e83c4f301ab822" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f9f4f70421b91aa4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM858.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35f35f641e5ea907af0c0b19e4d7060a5e398f91412982c181575cade87cb00c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bafff67f1fb1bc3c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM860.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cc120c8b92baa7c64f52f00314dd1980b84acfa91a472a2fb78b936d2ab217d5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "310108aa8196229f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM861.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4c6389af0f641a5341636c7aadee6b09ed36dc37ceb1aa2064639362a0c23caf" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b0b14199e2ca5b96", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM862.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f7e4f9ac3a55c951c5e9aab5db52475d42848d773d40be0ef4f57163c7c61b09" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1ca1fc7a428c50bb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM863.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0a79e51f3a9262f46a49ce735d055d822b964249ea4620761159f99d3e91fe96" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "16677a39abbc807d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM864.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35c9f73e4beb41dccb121e5ad9a6accc468fd021e582dad1beeffdee3baca578" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "59ca8ffde01913ca", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM865.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "678ec5a4a21ffb5233bbb311a5196ec38bb021ca77244813b54b1390dcb3492e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ae962474bca36260", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM866.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9b425aaaa013128b1a0b7a8483559c6e652b25273cbffabf1266f911e63127df" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e6e1244ad3424c25", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM866NAV.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04b37240c9e0dbcd48817626ce0a60f66e64ba6e8e2fff6ff21a7d94a8ca4b66" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "39eb13f3a501bc49", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM868.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3578fb761e02aea9d824b0a02f78ab5a0ef2dc8fbf10e39f107a405c0c5b323f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "19b2b86ea40a09eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM869.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "97a9b1d0c85019f0df2cca45cf68b877af412507617c88c10577025a3cb6a0c0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f042764f237c808a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM870.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0116bf79ee615096716aa4c6c020e423846ef36db9c5487a1a80747be1e374c4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f78f41fb14e507e5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM871.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1615305b807cfac809eff2b8e3a946bcd7d604860c0e9c3619a49a5a3788b98b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "acdf1e6b986ab7c2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM874.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f579f3045cf4fc55c91a3da03829c224c5d1cae697a9480db5d87606bc980894" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4b9ce4075c0e3839", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM875.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1e4e4b1c270ee90b1df84ba797c82720897784741847e1164990bf4dfa2d564f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "58ec4b9132d36c70", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM880.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd26bb698d9a0525025d9f1856311adfe4f1ffe1cd1f02f5168d8f6799533f09" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d6c05af47b3c3e5b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM891.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dfbaf91f8924953adf6382b6f196d147e0352937800df03903f707d6f33de45e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2f62c0af18d17401", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM901.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce372e066e0807d2eb0aa63d30a478b72c0486023743367de7ac1f0e75833c7d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5d64d34ff71d7d2c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM902.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e8c65b6fef1c617540ff764f4589b51d7d872fc0c8b0a652c03d7a20ddd8b587" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "22621234cacae08b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM903.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0e0d1729f0a0cf157c65080896a866ffda200926112f514435dbfaca0e5ea3f8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7f4c548f83e46a4e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM9030.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c3d5f20cbd0d6570f700d852f319ee70b83ff3a8c74e9e62d400a9b093665210" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "92fd3f85bec1e22f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM904.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "29e2c4bf92dca0de007278aa9982ebafeb6025dddec49f0f63f1f5fd075a811c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6fe0df782bc51302", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM905.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4a2d9774e1b2eca67ac5729b303c79f778d7e53fe9e0a2677af8847600255fb3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "caa81b3f7b112816", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM9066.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2dd468631d405e7b88088ca288c6aba8f8bf59385e08dd304a931ffc73a06eec" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "eb7f990f46793286", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM918.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57bee6081ee4dd36c788e390c3941da044d742fd57c909d40d8f6ada4bafc7f4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a7bd1be33631993b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM921.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "817683a3921a27bd77541cbe232e1ed4279d1408636804d7817fd96c61fbbeb9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d2bd3275cb42a3c5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM922.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c552e9606265e9d2cfb68dadec9ca8a0ae0770d964dbe6fa79a424c78cd01ce3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "727c69be38a7b462", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM930.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d98ec3daad9c4ab0b244e972906cda562e79be90ecbdc46992655fba33c0c8b6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0d9f0aeab499ec21", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM932.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b1352eb9048ee142f4a34295393d4761506fcb88260e19de954d96b03eb2b5e0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e3d12f035f4ca504", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM933.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d32165550d70bc0067ef003f839cc2cce03318876696fb0e99f45b7aca82cb7a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1d3afd2df17af4e2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM935.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "83f19700fbaee863fbf58715f8cb6aab88672562df5e824bb84bd3626eb1eb03" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f0353292b0f17c83", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM937.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc0df34da8594e4899d8d56ce65a95ec7ad8aad8cd6ce14313234dc8a57dfd75" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "47959f466ee01470", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM939.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f72bac9263d608ccf00b9dfae1f0a5084d5c3c4674a2139859358b29d6581f34" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "eec34aa0a4bbf652", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM943.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "62ed49e8b9854e1265168291d9de453c5fb4580a201c4ea3aa3ba0fff4af4fc4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "de4d24e7cb4096e8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM9448.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1a8622c668521fb4d928c8cb119b1c9361730095951e697f7f188ce40af6a1c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d82abcc89ea7c8ab", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/IEC_P27-1.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ebaa72b4dba956ec5f65df1e9013156607cdcc83d2a404027c969d3835ab191" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "513e416c8cc40bb3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/INIS-8.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cc4509b8bdc41279706cd6cb75b4cec4d177fb767e7403ef713d43fb48cccd8b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5df300610630d903", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/INIS-CYRILLIC.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a71419a028962082803b0b9ede98dd831c9b8c94780a09f7af451ab40b72f94f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1f71bafb35d5c3b7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/INIS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1162791d430b80246da4d12ddb47dfb97d6e1aa26866fe58e9602b922872c862" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "83bb042903c01edb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISIRI-3342.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ff56a476ffc149c2d18298f8b5ff17a84036611e4c50710a13eaa86a58f6043" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libGB.so", - "libCNS.so", - "libISOIR165.so", - "libc.so.6" - ] - }, - "id": "351c4e46697457bc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN-EXT.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f47529a0a54a9396fb625a6d9d5fd8ed9094b1d6e0ee8e92a87a3b5b8362f12b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libGB.so", - "libCNS.so", - "libc.so.6" - ] - }, - "id": "2f5cc17c6eaef928", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "87b59ebeca0105ab8583cc42608004af047dcce67e4addda1a7b25bbefe41cac" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libJIS.so", - "libJISX0213.so", - "libc.so.6" - ] - }, - "id": "1317640e9b23f010", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP-3.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04ee222caa155181a3c96adebe24f786cb99d1e92eb6f5f88aa59e99216be334" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libJIS.so", - "libGB.so", - "libKSC.so", - "libc.so.6" - ] - }, - "id": "d2a33a12c07dcabc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a013b4e9b265757ea29237ef60380519dd2bf071b2c3155905f9c6557bb42553" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libKSC.so", - "libc.so.6" - ] - }, - "id": "7378c9918890d2f5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-KR.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7cd9e5e50ceff968c18216c0f48240af306af75db79fb10afc742647ad3717a0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "332f3ef166624a57", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-197.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f28c1ff16957ccd47ce97c6fcad12762aeb736462a962cb17ca8cfb3062b37e5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "138eb06700dac679", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-209.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "56fe9b9374121c4a001e53c6085278ed6732fb75ee5f36fa8ebc86bc9f7ebbd9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0a69e7d70896b689", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO646.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "77761ef0bd8f360c98c4e76323d3c0e7627d05dc0206014d17b76f2ca0c7e571" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e5f3a96dffdac7c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5d6cf38b2ef1b4f84ab14cd65bef81c7e50317ab743d423735744eddc5d2174d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "b4cedf15959261f0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-10.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "125cb9cacc9049082bd662178d9c49af8e8791788cef65edac556dd227de5ea2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e7b047a7cf6e1cf0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-11.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7e2c9924eec88e8b4a99c974a75096e0563e1ae13de29bd27b63a7ebccf2c0fc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2ad37549043de8cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-13.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84845a893a4b4e0ad3c01acadda0ef9eb1795f19c1991669c164baa176dffb0a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d910f18b9964b9f4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-14.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df08e25dcfb527e3220c7057246215462b2a4b4277bdf4fe1c15ef8469cdac7d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1a5750fbfbf5b47c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-15.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d0b3613f7c24c10c7aadac469da04a7ba83e18d613e7f940023444244ac5ef46" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0f0cadfcd247e563", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-16.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d21f63471fbac6075aa5dfa926c5172da881875e8f69cf933408c64ada97ec8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c5f20ffd722c23dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-2.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a71db610647ce6a600eaa258261360caa3d25b4b33c23d0163135e6d1d66efec" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "49c398a74bd1bfa6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-3.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93c3005b867f04b00b9bede6b3dccaf6564b96611bd6dc1cf31dbc9020b8c7a3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "dd3de5f1199a7381", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-4.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f1f3420d00761d59a2541089b40068f4d4e0cfd03b7c929dbbcb66b111dfaec" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0674b3e6b71ae2c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-5.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7e4725708c4da543dcad574074af39f4c77683383ad08d74a59c57a842e8c890" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "537bc85bd6a7b4e2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-6.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8592ebbe579a1e90d76eab0888fcf8658d5cdaa07f15f3ec1fa9e68605691ba6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1b0fe32c4a2540b2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-7.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "241a2d55ef4e2e0f324e9bbefc5348922115d263977439252cd04e3f0c6de641" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d4806e8f8e3855c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-8.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24cdc327b2c24fd572d58a1937f8806fd2953381b121e17e58544776ffb3de08" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3311a023d59acca3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ecf08b953c6eb8229d74aa4427b5de46684512127ba7e35240717f516e22f507" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e5725aa9f149ba6e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9E.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0d98c644bcac445c1e4aa1d70fedbfae0fa0fd0faddaecf025356893e29b4224" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "47760187bc380b82", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_10367-BOX.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bcba607be12169cc1cedb50c71e48d0859c8941534a7e3f3875db8897cb7c84f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "a1ac310acb71f3a2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_11548-1.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dd49b779053f993d00e543927bb38a54664058be4e5141ba10cd12d066ed2b6a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2690e5b6bb370f29", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_2033.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b3291f33c24968058500ab664beb39e857193c14e1400cc72b7bcedd1c686d6a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3981bd06df6798ea", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427-EXT.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9da4473267b8164e6586af2df1477e3e90ca97380d09ad1739a7b27aa80774df" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1a0ef52927d5d8c7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c329feb04a66ff742e8500fb6dc96f8aec47eaa167f1609bc1dbc90fcb9e02d0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "35a845090a7cc804", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5428.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fb865a70e029ccb364d69d733c266f1e28d2c1002efe65f72a2eb5d9b8006229" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6b977109811a3791", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937-2.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "980c604f2829d93639ee38055f995d1fc877632d608dabafe46fdb69ea568e30" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "021766ee23104e37", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "86e986983f346be5a852bc0e5d1f2608874e2e1592160bce7cfcb505096bc008" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libKSC.so", - "libc.so.6" - ] - }, - "id": "7b78019ea88e3949", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/JOHAB.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe41aa4ec19668197e55931b5a6a621bd844cfb1a372dbe64ccdacfd5887e8bd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5f0d0319437f4b63", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI-8.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "56a5076c9c571caabe639b937946553a93d13543873c6b86610f3ece9ebdbc7f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c193ad867067eace", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-R.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "804c85f668ef9a36fff02a1cc8dced28ccd1488003c15d6e12debd9f27b6bd42" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "54adcac4c5de2a4e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-RU.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40f6625bc2809288d192118e04346cffadcec89e58fdbe2b3f7c2497f553a53f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "29eb482ad65b5bee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-T.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3a715d829e5feaa495c1ec9430183f5f6b2bfa3e2038f2b628687792abb2cba9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bf08006982009e60", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-U.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0c95178abe57a8dc369db02602e1dc4c5c5939adc53c5fefd0075cd0078ba738" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "13351823b137ac1d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK-1.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9493f59d03f95ba5a7812097c1445ce9b6ba9e5cf79f4ca170ddcf2b39574b2d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e43237ea80bdaaee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f070421f0e172918715382d5207d8fb81b00c9f92f1783319a55123e9714a9cb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8967c1d940019ce4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-CENTRALEUROPE.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "08fa539e0e9d0d70f54713502723c9ce08a6d1342d301ce37818622a7e2142b8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "05879e1b674ec02d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-IS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "23ff51f594be319850833bc7f6f9f6255ba2470492c2a1c146628dbf66dc4078" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6f692e0da3277606", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-SAMI.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cdf82893177d87b83b969caaf20b666f6e62641142c7c00d1fe2d5cba328133d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "6bc21c2e55255131", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-UK.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f4e652e8ba2fb031a9602894bce9caf6686ec9e8407546ab727600f02d807151" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "eabdaa07cae9c174", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/MACINTOSH.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "31555e1027a35fc18772a2b80b28dc7535461a4df3dc48f3c4e9c014aa111230" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bec5a2248fb9b5dd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/MIK.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a09978f4fb24bf8c19ef1ff0f19740ae0d296c9b57e714589480374e0f1e21c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9be4899f7de6aac7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/NATS-DANO.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c4dff35de211e93f9e7de66d10b1b58aaea3b8eb56c7c7726d5a97dde56a12a4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7b03b2e23c3a5f0b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/NATS-SEFI.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e40927a178144513c84be5d223b6989f83cf609d8b0846e976dd1a95ce6004f1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "40891930ec4fc841", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/PT154.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "394138ce927fc7d3b848b8ba77ce478d429b0339d2f44968be161a5cf544ab78" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3ccd794e50c9e6f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/RK1048.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eab685634a462572318238fe3a20351ceb00b24d0f4255fda9883d5312c537b6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "69fffa52e80e2b55", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/SAMI-WS2.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "67ab82065b42d2249cf86de13be948ad81904a8903068ebbd2e991b6c2fad70e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libJISX0213.so", - "libc.so.6" - ] - }, - "id": "382b5ff442ec5a6e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/SHIFT_JISX0213.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47d64c4334ad193043ccd1d108cdc3b9d1c2e58c37511d494fcc94cf596116b5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e1b30761411525c8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/SJIS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "46173a2a8f09e6cd49126737fcbfadd3e9ae88291f774ac9fe5fad7d854474e0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9b222a87a7019e7a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/T.61.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "782134367665dde468a24f68df368a9610ecb62b98586a43586864dc5a7e0a9a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "83286c2d3ec189f9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/TCVN5712-1.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f8f6f08c9cb865c5f717c2fc68b070f10dee67bfa0c3b2072f5a2ec77e77dac" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f15bb5a423e75d1a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/TIS-620.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b87cb96d7e4a58e5afb916843b50280f7d76d4ba29a2bb29efac25966f14f9c0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "225a4d7db4fe159c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/TSCII.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "79da29b8b24e6b65660de1cb581c13652123f9896082a4af49eb6d2e8d4b1a02" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libKSC.so", - "libc.so.6" - ] - }, - "id": "fee9e405d4c7413b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/UHC.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "856436cf933c34f761d6dab0a380b8c77d392a9afd79b58ebab18f8f0cbbacfd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7003de0778079167", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/UNICODE.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "142bdebefec1cc263daf8e464bd1598a7af836224e8155e544968cf9d6732a06" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1f2d3e3f66896a7e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/UTF-16.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "31bc6565ecca9734b08143a70d62b39301f2a1165a6b4cae281d25e56d2697d0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d3319c910fba7561", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/UTF-32.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8556df7a0c619e689b4c1f1da656f1bd36c663a00335311e6909d8938772d55d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3dd537b4553ddec2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/UTF-7.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bfeb1a68ba521b9c00278642957c5449e67fd87708f064993415d61677c7ae57" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d0d76982d3ac4539", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/VISCII.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57793b77fddf602134707ff717c99beb44941904f103175971dd653aa57fac85" - } - ], - "id": "24249d5bf2c8b605", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "52c227df9d53248238602c1ddaccd2c8ddc4cc6a61aa45d7c425af590b8806a5" - } - ], - "id": "21a5858a330a7fb2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f2e27de033d617a30619daa611be070c2a3c6d853e6498781cb88b55fcf04ed7" - } - ], - "id": "0173b006692b8ebf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.d/gconv-modules-extra.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59eac74d87e012f127e8ee334183a4ec08d0268e6efa4bca1961677f98d0bb11" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3f6ed9907d569cbb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/libCNS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0cc308f4241d249a008378404c1e5fdee0fe7de0243763a96f855aff9e0e4bf1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "63f0e1a583eb29e9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/libGB.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f60c4792e123f526093bc798aaec4a8102d6d7404bdce035ef4cae48d182ff1a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "736a79692343cd42", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/libISOIR165.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2dae8c4d59a0e648383eb41748a53356ef81c3610e7df6912b710a413c80ee16" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c51dd15f8541a8b7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/libJIS.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d00dbf5e125e89904c0f0cafa77c068b6b2f5b666e73a3f8b1bc3c98eef618a6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "45465314abd93578", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/libJISX0213.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5fd4e0b8b0930f9ee0d9eb5c47a11ab4b7f8809e9f5819092e267e97ae82eb3d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d07e0cdc24060f7e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/gconv/libKSC.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "607220c71e61418fc2342319632114521b68062c239511ce5463de82e9fa24f7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libkrb5.so.3", - "libk5crypto.so.3", - "libkrb5support.so.0", - "libcrypto.so.3", - "libc.so.6" - ] - }, - "id": "98bb87aca0173315", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/krb5/plugins/preauth/spake.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "761534357b1aad4896ff38ee7549b177a4c611c1a06ff8c19b3be41f9c638087" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [] - }, - "id": "decb8750bff6ad5c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d2d48baa08434a3cc68ac76e5bb5b64a025fd800d128aa5cebbf7578b30c5d36" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3e9bfd493e5e7a08", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libBrokenLocale.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "afeb3e830f1ed8e05c7bb6549b2fb2d9297d51ce1c12804473021f8d509d9056" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c5be140e535f8d6a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libGeoIP.so.1.6.12" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6b465f547b06f1b3ac7aef08d4f2233f1417417c3e4e5a5f80f8dec806b0e2c7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "5b0756d4661b888a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libLerc.so.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8b5b42015e42a27044123f5f1e6a2cc2c00dfaafa44d6bcbf384d08fa3ef9c72" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libc.so.6" - ] - }, - "id": "1ac8e658eb2a3ec3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libSvtAv1Enc.so.1.4.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "688d7edc1a02a0e7993722d57a42821b22435e249071554625a5ec4784787d3d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libxcb.so.1", - "libc.so.6" - ] - }, - "id": "34b283b166fe81a8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libX11.so.6.4.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "833aa73cf8f645330907d5923fcbf380e0895ab2551d522b41b0308747a51e27" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ab7ae318382c7a28", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libXau.so.6.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "911ecd1cf42f310e788652f2719803bb4632e077b6e292af31b876c836bba264" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libbsd.so.0", - "libc.so.6" - ] - }, - "id": "e7bd4ca31b409ed7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "99c08ff6fd5904ea39a10bdb946dd7f2a86e80a5ff64dd2b135d14669beb2ddd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libX11.so.6", - "libc.so.6" - ] - }, - "id": "5762e1ce1c325c60", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libXpm.so.4.11.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d42d5dc330e6611ca46530de9341739f251533689a49a1ea01a9155c8d505eb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6" - ] - }, - "id": "2b8ddbd241b78680", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_bad_any_cast_impl.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b57071c3d82c8425ce67a0698ded95e155e87cbf1cc00d09128543b5cbeccf37" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6" - ] - }, - "id": "ab31c4632537cd57", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_bad_optional_access.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2c0211d14e52be88be9ec25145b2ad5de003ab3922a4af5a55015774e2d34ce3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6" - ] - }, - "id": "51b25057d14390b0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_bad_variant_access.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ea0975d58ff10b9d21d3ad209daeca5b1995263206fa1a00f488fe760ce013a9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_raw_logging_internal.so.20220623", - "libabsl_spinlock_wait.so.20220623", - "libstdc++.so.6", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "aecdd42bb0faccd2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_base.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "626cef9a56a5bf1d6e7d059ddc62e69e4e58cde9b4273a8441b0e6e4577016a3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [] - }, - "id": "666e3f1896325310", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_city.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b50cfd36e029531da1aa1187db6cab373a5d6ff102aa520cd2e2ba768a097c1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "97c31bacb5437f0a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_civil_time.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "16e62b211708519e3be2bd490db8f40ce622aae3e0981cbaaededa5a6f9a04a4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_cordz_info.so.20220623", - "libabsl_cord_internal.so.20220623", - "libabsl_cordz_functions.so.20220623", - "libabsl_synchronization.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_throw_delegate.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "df9e9fba981191d9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cord.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1de9dad3b7e8359b032354a87e523b909bd47774db5db7e6e86f4c8957a70f2f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_strings.so.20220623", - "libabsl_throw_delegate.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "a25eb954c3379ab7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cord_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fbd1becf4eabe3f56fd756d1b5443e96dceb440d73ce64cc87001194e1e29fc3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_exponential_biased.so.20220623", - "ld-linux-x86-64.so.2" - ] - }, - "id": "a1ab6192f3ce23fe", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cordz_functions.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fbf8aa2c6fdcf78b5ffc3d0b181f826b3b11ed89e53acd820e32729069e252d8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_base.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "1cddebb4790738a6", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cordz_handle.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1584335779ac75478239205244db245c3d130e87c1b71dd76493eb120480abcb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_cord_internal.so.20220623", - "libabsl_cordz_handle.so.20220623", - "libabsl_synchronization.so.20220623", - "libabsl_stacktrace.so.20220623", - "libabsl_time.so.20220623", - "libabsl_base.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "c5e1042675e2b07d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cordz_info.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a176ccb0abb541900807cf520093326fc79f2de2afdc24c9d917ecc6f24d355a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_cordz_info.so.20220623" - ] - }, - "id": "5ab755bc9dc2a3fa", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_cordz_sample_token.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "69fb78d224e6ea1f1b833f0414bda86a61334b826e4150752e934a443996bfff" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "5f40110818f7c068", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_debugging_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8d410c553b1762ea64fa32e38c018fe000692fef4b4a0cca80df639c26a8343d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "efaa84f54232dc0f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_demangle_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ec3a5c658c619fe1f475a5d8192ac7ec2e8750bfd42103eee3fee3cabdd8f262" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_stacktrace.so.20220623", - "libabsl_symbolize.so.20220623", - "libc.so.6" - ] - }, - "id": "01322e4ceff958b6", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_examine_stack.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5295d5f5e998111152fd180e0d842b2bf74fa6d877650a4927c4e21eb2c3d5f8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libm.so.6" - ] - }, - "id": "59fcbc57df7ad1af", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_exponential_biased.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f765d84ac3d29c4234415b9a20b85920dd469eb5222bc1d5179ca6d4ed1948a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_examine_stack.so.20220623", - "libabsl_stacktrace.so.20220623", - "libabsl_base.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "f28d390475236aae", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_failure_signal_handler.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9409c89ec1d9b21861de95077de097a256fca80f70b89b8cf5ac8ea8837c80bb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6" - ] - }, - "id": "464b13dde0841538", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_commandlineflag.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "05527c45ce2a368559954f048ffc1660343972296894f7014978836659e76554" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6" - ] - }, - "id": "5dd7d6acac133f64", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_commandlineflag_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40a71f25ab955bedfdbe588eeb8b1265eb315355e3e01a02e20e8fa43274481b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_flags_program_name.so.20220623", - "libabsl_synchronization.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_throw_delegate.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "8684de2b270e1713", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_config.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6c6ea4c3aaa052eb17463f7be9a5a323c2080fd67d3b9b64a494ac285a0c01c9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_flags_commandlineflag.so.20220623", - "libabsl_flags_commandlineflag_internal.so.20220623", - "libabsl_flags_config.so.20220623", - "libabsl_synchronization.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_spinlock_wait.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "cf7ce6ac528c0f13", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6b1d3d1ccbda701fdd9f26a0873953c92c4bf30c9ba3f27acb1cbc61e6d4930a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_str_format_internal.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_throw_delegate.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "0fbbca986ff1f5c5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_marshalling.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ad0ae778ed300aeaa45ea551f7877c4b930ab1f7e9309a3b6de7875fd20a18f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_flags_usage.so.20220623", - "libabsl_flags_usage_internal.so.20220623", - "libabsl_flags_internal.so.20220623", - "libabsl_flags_marshalling.so.20220623", - "libabsl_flags_reflection.so.20220623", - "libabsl_flags_config.so.20220623", - "libabsl_flags_program_name.so.20220623", - "libabsl_flags_private_handle_accessor.so.20220623", - "libabsl_synchronization.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_throw_delegate.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "9c5a3db04a210101", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_parse.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e2f343dd3bc998d22e7e5f968b9f43085fa6cef17ff63264b99eb6f26ef9f601" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f77100337e114f9c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_private_handle_accessor.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ffb7f1c978e31f86badcb80142475f4f5462607e93fd61299ebdd116c8e437ec" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_synchronization.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_throw_delegate.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "e9f37adba8338d55", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_program_name.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "046eae6db68b2bff00b998cb4ab149b3654aea362a480e94c4a01f9f182061bb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_flags_private_handle_accessor.so.20220623", - "libabsl_flags_config.so.20220623", - "libabsl_flags_commandlineflag.so.20220623", - "libabsl_hash.so.20220623", - "libabsl_raw_hash_set.so.20220623", - "libabsl_synchronization.so.20220623", - "libabsl_strings.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "b86af98b9b4f7819", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_reflection.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f3cf198beb550b0eee7d00436ae4f900561e0a6492cfd594e29fbfe579dab3b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_synchronization.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "073d4e37a5fe0ddb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_usage.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a9c2d32dd6036615a9ac4e64ca83b1fb81baa07d55d1e3d05d677403796633e3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_flags_internal.so.20220623", - "libabsl_flags_reflection.so.20220623", - "libabsl_flags_config.so.20220623", - "libabsl_flags_program_name.so.20220623", - "libabsl_synchronization.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_throw_delegate.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "b2fc5d3980172367", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_flags_usage_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0928ef5811f65e59077134902be5c9442d183aaf472d84aca908c5aa73398b27" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_malloc_internal.so.20220623", - "libabsl_base.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "1a0e3795d60b043d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_graphcycles_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ffcad484b42649cdef06a693727b793133dae73b22751604518de18ad9c8fd44" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_city.so.20220623", - "libabsl_low_level_hash.so.20220623" - ] - }, - "id": "94845f723d5af694", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_hash.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9967e9a092c33fb0c94fc2455d328406ed4c585e961e9d91d60be9cdce2953cb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_synchronization.so.20220623", - "libabsl_stacktrace.so.20220623", - "libabsl_time.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "238a6a585b73deca", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_hashtablez_sampler.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d0d6c39381c9129fd75cc9a2f4dd651ad6e5f30b60b38016e0281363dbb54d04" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "e3217d6be4054488", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_int128.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6aabfabbf26e7c3ade28b98fb501ea44913a92a21e7a32558017a787a560e4af" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [] - }, - "id": "08ae7fd4a9d45c13", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_leak_check.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a54ee18a16faf4870853751638358d7964f1c3b482ced1b10dcd8a7919a5035" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6" - ] - }, - "id": "a7bbaf5809ed65b1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_log_severity.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2bf96a6ceda82970d3b1e088bacd0dbc152c188e63cb486dadaedb1ec648eea4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [] - }, - "id": "ee5572da3bba0cf4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_low_level_hash.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "243b334ae092886b6023b0fe295160950b44b039170b624f43af45dfaa8f35a1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_base.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libabsl_spinlock_wait.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "6e9226ae36b95453", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_malloc_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e9bb4b3c9cde86a34f51657d56f5c83218dca019a9e2b1973b75f8647509b4c8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_exponential_biased.so.20220623", - "libstdc++.so.6" - ] - }, - "id": "f1e7275d79226593", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_periodic_sampler.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a9eb1de3d56a47155ea37a6c3dd7c958ed28d74afe5c036712ed7959a3ec597d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "23fb784277750a21", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_distributions.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "085886ec91381ec0d62ab46e241d45d9b1db14ac204a5f9b2c54719309e1ad70" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_str_format_internal.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "21d72de5bdafa428", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_distribution_test_util.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1bf23e3f1079056170060874c3bc5287da0768fae960657b6c612ab4c242535b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [] - }, - "id": "fd393ffc59bec6b1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_platform.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "969cf064e2b53570878721da496b68deeeb4235d7e1c1d2ba183dba2c677b4dd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_random_internal_randen.so.20220623", - "libabsl_random_internal_seed_material.so.20220623", - "libabsl_random_seed_gen_exception.so.20220623", - "libabsl_random_internal_randen_hwaes_impl.so.20220623", - "libabsl_random_internal_randen_slow.so.20220623", - "libabsl_base.so.20220623", - "libabsl_spinlock_wait.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "f203917800058fb1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_pool_urbg.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28eb414dc22b2d9b219208976b15c89faeb59a27c16cf8eebe69c7d3084c348f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_random_internal_randen_hwaes.so.20220623", - "libabsl_random_internal_randen_slow.so.20220623", - "libabsl_random_internal_randen_hwaes_impl.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1" - ] - }, - "id": "89ef15f0f1453c4f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_randen.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "70337cc68ee59e68b3c0657017b25155b030404452e4ff2e93cd33533a596969" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [] - }, - "id": "4e76473abc7ab69b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_randen_hwaes.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2705ef79742881556a9241f2171ce032edb2e8f4f45ced8bc70c4b667c137517" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_random_internal_platform.so.20220623" - ] - }, - "id": "53c3ab5bd585fce4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_randen_hwaes_impl.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "15f38000ebbb9356bf0ad96fd8a31e43b1ee68f4c138704630948f7fa398d3ed" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_random_internal_platform.so.20220623" - ] - }, - "id": "a3542f2e392308c9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_randen_slow.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4694a268a1711d1c619c0bcae6500bc9c150b731f1ed1664331e23c734c45e5e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "7d1a1d226ff2b0c9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_internal_seed_material.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2371da20143b6c3b8c1bf2be5e513752a452804b26ca5f40dd72015aea546c64" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libc.so.6" - ] - }, - "id": "6caadf9d106f038c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_seed_gen_exception.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a243c18917a640bc5e8030a83649c628a1cd556f97955494f7a3684e80cb1ac4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_random_internal_pool_urbg.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "99207515d01bcc8c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_random_seed_sequences.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd9f746a8a373d229f9160706d849084c1a2e2f543c05ca40f0ccff6a24711e1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "f8413cd07b6fee6c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_raw_hash_set.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8290f27d55d50dd48675e14fdcd500105d27afcfeeee75d12c2b8a784dc62d84" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "79da7a779c8ce7fe", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fdcc51cbc96782e457b25a95a62b8efaa0948cdd7c42ca3ad4124d5cef22a129" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "143c26a125b48c7e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_scoped_set_env.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f188612feb24d712c4ec03da2867b9d2fb9c0e296acaeeb9cd209b9e795ec67" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "867f95a359aaafa8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f54cf5feb78baf60dba7335c588db952d4a55450d1e2cb70c8f74e14d6ccb2e3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_debugging_internal.so.20220623", - "libc.so.6" - ] - }, - "id": "4c3aef561c2d4e01", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_stacktrace.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0fbd8fafa58a75a0d53202799c1ff2099e5db4398f9698c04b0bc3c76d96e50" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_cord.so.20220623", - "libabsl_strerror.so.20220623", - "libabsl_cordz_info.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "66c11e658e447e8e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_status.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2e266f950597dfc0e29f7dd6749b5124a58db2bec5ec519edf11a422d92f4fa8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_status.so.20220623", - "libabsl_strings.so.20220623", - "libabsl_spinlock_wait.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "0192efa16bab07b4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_statusor.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fc726bed54a74afb98e3741a945584ed6665688c10f2a079cb3a4ce8b0639a58" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_strings.so.20220623", - "libabsl_int128.so.20220623", - "libabsl_throw_delegate.so.20220623", - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "7ecf35224eedf7e2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_str_format_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "83e778f6dee79982c0720d6975f7fc8e8bbe1560c438fb2cd35912cc4700e38b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "81f88a92a270a5b1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_strerror.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "873e5c289da10cd26b7578b9b9f1755d207bfd11ebdc09afc41730f953e24207" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_strings_internal.so.20220623", - "libabsl_throw_delegate.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "a46917fce42adbc2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_strings.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "36a85badfcab2fad529d952fdf168cbc6336fd790f3c7cd94ad28c080faabb73" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libc.so.6" - ] - }, - "id": "395b16cd809f53f2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b6e338e4d6527343bd59f16edc3583a3245caace78c55973bf75a2e36b63db5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_debugging_internal.so.20220623", - "libabsl_demangle_internal.so.20220623", - "libabsl_malloc_internal.so.20220623", - "libabsl_base.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "96ef7404826d2629", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_symbolize.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "46cf47700627e5d911b99bd360b5c5d847bdced5a4cff82a06328f14377bffe6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_graphcycles_internal.so.20220623", - "libabsl_stacktrace.so.20220623", - "libabsl_symbolize.so.20220623", - "libabsl_time.so.20220623", - "libabsl_malloc_internal.so.20220623", - "libabsl_base.so.20220623", - "libabsl_spinlock_wait.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "eb8afcad78d9532b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_synchronization.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c8cde7450992e9c942caf31f4255c85635e86e85cee572bb3d34b77b6c96582a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libgcc_s.so.1" - ] - }, - "id": "18f7d292c433a584", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6e95555662c97f71aa2cc765f936951005088f3020e792e599c3fe42fc5fdebf" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_strings.so.20220623", - "libabsl_time_zone.so.20220623", - "libabsl_int128.so.20220623", - "libabsl_base.so.20220623", - "libabsl_raw_logging_internal.so.20220623", - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "fb3be7048d880ffe", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_time.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9e87420739b68d1df72d3371e9191cad00d90d3aa3b2c9d5a3b76b58e25dac71" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "592fcb8a9451fddc", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libabsl_time_zone.so.20220623.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4b46c012b15c9753a3b86b05088782edc51a6627017144da85e0b95428d15869" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9516c31b397a00a9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libacl.so.1.1.2301" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "56be0d939fcb6f95fae2cf04e631d1ed41e5cae31ff8c8fe3881cf1539ab56d4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d3f56b6b3b893dc8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libanl.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "33fc3b6330266ecaeae4178b410b38bff6d8233d4932283facc4a614e8e754a4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libc.so.6" - ] - }, - "id": "a368a7ef7f98f395", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libaom.so.3.6.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "12d1d6a5980e70084f464de916512da8f295a78dfd8bfb09b65ce178a48edf11" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libz.so.1", - "libbz2.so.1.0", - "liblzma.so.5", - "liblz4.so.1", - "libzstd.so.1", - "libudev.so.1", - "libsystemd.so.0", - "libgcrypt.so.20", - "libxxhash.so.0", - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "02af9dd83f6c7c71", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libapt-pkg.so.6.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef18dee859d453fc7154dd02a80a25066589e5c20080db0a3bff366f4f3243d5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libapt-pkg.so.6.0", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "369cf862a2a618ed", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libapt-private.so.0.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39509e729d615086edae4e4ad224b90b1a4f5a9f5a1d1c5a1cb233ffa64c1968" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "30404b045dc5ad02", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libattr.so.1.1.2501" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b7f736521202c63a21cfa13b708588d1fa9811a04aa9651802a7c1bad20c59ed" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcap-ng.so.0", - "libc.so.6" - ] - }, - "id": "0c5c91e59a1c0e77", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libaudit.so.1.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6e08f557127a72d141cacd840c3f92805a1e7a20ca70f7120bf8128bc7de87b0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libdav1d.so.6", - "libgav1.so.1", - "librav1e.so.0", - "libSvtAv1Enc.so.1", - "libaom.so.3", - "libyuv.so.0", - "libc.so.6" - ] - }, - "id": "f3c5b21f6969740d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libavif.so.15.0.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "95dc76301b7f77338283f71d049e451050234fa9f3235bd8eade2de6060b9b10" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "5d760083f387f1e6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d0dd623a89c3cd7c085757e41c940a39916a571a9b22b50bd736accd3f3aec53" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ae37961d223ae093", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "928b2613f2d3d73f78bc05c81d79c04cef7e196564f733c0ffdf893602d83aaa" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libbrotlicommon.so.1", - "libc.so.6" - ] - }, - "id": "82332c556788ac52", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7bbf3903f31428b5f0f0a3207f5f2e495c1c44bbd778ab79aae144051531a58" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libbrotlicommon.so.1", - "libc.so.6" - ] - }, - "id": "5e8778950f469a52", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libbrotlienc.so.1.0.9" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c34693b27401e6e74d7ac32184c79bfb0cca936d3b1be990d435124a6a5686f5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libmd.so.0", - "libc.so.6" - ] - }, - "id": "0c958db3a6cf4fd9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libbsd.so.0.11.7" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4f501c8bd22390e42422691093d8af4e744a3e854809b809948055e8b08bda5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "73c5910215d924f3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04e8d7114d50d62ef8572b2a11e2171b8d45fc002237eb7af64648d94fc68cf9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "ld-linux-x86-64.so.2" - ] - }, - "id": "118a190e329a357d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libc.so.6" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "52716bfb942aa2e4cb3ae9973ded3cb7685eae954baf36a7e7dcf67f88ad96d2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "509cdb17a73f6bd6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libc_malloc_debug.so.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4949e728b2cd55408af7cdbf4702e53d3cab89a27b72f5514d1d05feb8d23882" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "ea10964b9f99c02c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d367d46837f85e21c02e8b927f282e680e6a34b61a7c7f3bbf53d9a3e395a589" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4a766554db0e6912", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libcap.so.2.66" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2af7b6aeb8685c319a4783fc3732c7166f1c71f56bdea79a619e1fe0cdb17074" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "24be1c02fcf042f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libcom_err.so.2.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5db18e8a8894ef4746eb8230855b638a5e52e782b2f10deede5f1dad846178bb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "89f111a3ca3d877d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dc65c00ae5dd3e63230519976803797113e77b0ff38eefeef0881933f846ef56" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d294c3c99a416438", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libcrypto.so.3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e49ffc8219d9c2c152ad2f691f14bffd5af3c5f1f65f717411a6d79249f15ad5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libnghttp2.so.14", - "libidn2.so.0", - "librtmp.so.1", - "libssh2.so.1", - "libpsl.so.5", - "libssl.so.3", - "libcrypto.so.3", - "libgssapi_krb5.so.2", - "libldap-2.5.so.0", - "liblber-2.5.so.0", - "libzstd.so.1", - "libbrotlidec.so.1", - "libz.so.1", - "libc.so.6" - ] - }, - "id": "6cdddbc3cd47ef9b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libcurl.so.4.8.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3cd1e5fbe29b1fe5b9ab48e6c8173256db2004e93d338dc64c6b615399657622" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libdl.so.2", - "libpthread.so.0", - "libc.so.6" - ] - }, - "id": "b4e7495653011f1a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libdav1d.so.6.6.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3601dc1fc553a861cee3f969d9a384e0b157dcddc75e59c4efcd08ee836c601f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "731426fd43b64abd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libdb-5.3.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d176696493041893a97519a6ba67d363f245ef5248eac9d0edc3c3cb56daa8a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libstdc++.so.6", - "libm.so.6", - "libc.so.6", - "libgcc_s.so.1" - ] - }, - "id": "620476899594a191", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libde265.so.0.1.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0a55ae111a947fdf8d71bc8e6454d06bf5d36c8f96ae89482233f76bec342d1e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "fb6cf4b1d2d726f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libdebconfclient.so.0.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7a20781883ba5f05bdf0a259b026109142b9d9af9169e489af608b51c4e233d5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5264d4bb318af5fc", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libdeflate.so.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "73f7563f217379ae3ebf6b4883a956ab31cff56de1f0f0c93b9403a68ca28b02" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4b7561f353d404a9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libdl.so.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d52b8d3eafb703dbb0cdbe8aef885547cbfd397ae74bf4ec6b986ab93b156288" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "013865048b3b4fb4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libdrop_ambient.so.0.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "177fb5cefcadc4d5852403009c11564b6b0569f46ff301d48e603f8d526df7e1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "38b24f0a0cabe21d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libe2p.so.2.3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d1633f035639f571895a48a2f9cef073517d8617c2df10b91e686ec24e87c976" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libtinfo.so.6", - "libbsd.so.0", - "libc.so.6" - ] - }, - "id": "08a47e176293a783", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libedit.so.2.0.70" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a60b748760fea6f1a27baab72ea5149d1aa41be28f9cfac9e37ce40bf5fb7ca7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "988e51fbe007a739", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libexpat.so.1.8.10" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5d4d2f89b2f4ede76ae578896a3875fc7010fb5e4452e7e634793974cdd68159" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c1fa88c27c3dc02d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libexpatw.so.1.8.10" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2aa2ddd18eb231b993557fedbb5c8766e00e33e6fabfe72cf8c6ee27059629c3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libxslt.so.1", - "libxml2.so.2", - "libgcrypt.so.20", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "9c4ecdfa86a69c2c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libexslt.so.0.8.20" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a3662684a3467c654f4959a182a058cbc87253781bb850cc095183c01d7dcb93" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcom_err.so.2", - "libc.so.6" - ] - }, - "id": "b161bb53a6146b9b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libext2fs.so.2.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "983e72b7e964f3db43fe8a3dc8b338e731fade6ca38df6867aebb58186aaeb68" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "860ddd890da03b33", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libffi.so.8.1.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eba9fe8895df08cb98d6a294825132a52b65b53f4f1bce26bb3f6ee6ac6b16ec" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libfreetype.so.6", - "libexpat.so.1", - "libc.so.6" - ] - }, - "id": "df55289fec7e9496", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2a75dba58bf6cb144f03d8bb2fdacff544dbc7578d9fa97b8877e205a0c802e9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libz.so.1", - "libpng16.so.16", - "libbrotlidec.so.1", - "libc.so.6" - ] - }, - "id": "2fcc048af1a8a5cf", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5f01233f3f71c05dbd33faefad11f267d942cc97c8080e9ac1f735558bae85a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libabsl_synchronization.so.20220623", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "154b924a9d0fadef", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libgav1.so.1.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8b7e66a8f391da9240ea76f9a7863fc1beeca38eaf308ab509677ef19d3aaad0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bcf23722316d24e7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libgcc_s.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe29e63f2d536bdf48f17237e8c71e34d0b3c43dc202644521787f86b15b0179" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libgpg-error.so.0", - "libc.so.6" - ] - }, - "id": "7b3e6fc4eb113058", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libgcrypt.so.20.4.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f5712ad67f02703c41700dcd4c6fb7ba93e928df25164183c5260513330cc54" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libpng16.so.16", - "libfontconfig.so.1", - "libfreetype.so.6", - "libjpeg.so.62", - "libXpm.so.4", - "libtiff.so.6", - "libwebp.so.7", - "libheif.so.1", - "libavif.so.15", - "libc.so.6" - ] - }, - "id": "a611a9ef7abf8f76", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libgd.so.3.0.11" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7376c9af0afd6e7698a64ee19de3c8a0199418664974384c70435a51c7ff7f3f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "863ed514e1748eb9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8b9e95cefe3008d84787936017d5c9f74e6c34b7eee75ace5220f8f0858b4e14" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libp11-kit.so.0", - "libidn2.so.0", - "libunistring.so.2", - "libtasn1.so.6", - "libnettle.so.8", - "libhogweed.so.6", - "libgmp.so.10", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "211ef2731601cbd0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libgnutls.so.30.34.3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f93b4f9a2d482d553f743d1fe6ac6b219f88f20d59b528d46a61610c5d0ac10e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "97e2f03edd7e9088", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libgpg-error.so.0.33.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f988476cd05f952c38f672e69766166be01614a84007d94b8db1e05a3294378" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libkrb5.so.3", - "libk5crypto.so.3", - "libcom_err.so.2", - "libkrb5support.so.0", - "libc.so.6" - ] - }, - "id": "c1a2f485ec023ae4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "421173213190ddce22b1644cc144325463dd0a874eecbea20f7516b72eef89a4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libx265.so.199", - "libde265.so.0", - "libdav1d.so.6", - "libaom.so.3", - "libz.so.1", - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "d5184b578409a123", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libheif.so.1.15.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "480675ed8d58f9266ced954eb746c74a6c4ae3479bf5dccbcbc56ff0c814b9e4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libnettle.so.8", - "libgmp.so.10", - "libc.so.6" - ] - }, - "id": "a8a26dc24224df9c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libhogweed.so.6.6" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b9574df8f21b38490cbd5829c0273f08d89252ef7edf0440f4cc89137f57db6d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [] - }, - "id": "9a314970efaed4fc", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libicudata.so.72.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5aeecb98673108afd7720560315839ad9000b603a8e0870f9e048659b269ec2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libicuuc.so.72", - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "fee8009c2f9d81be", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libicui18n.so.72.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e4a5dd04d340be25368068cc94eaba8d1379d07a5e10cd6414934e07ce52120" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libicuuc.so.72", - "libicui18n.so.72", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "4a5d03ff6c49fceb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libicuio.so.72.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dbfffe6de9a3d0a941f1aecdbfdc96eedd669f3acb95dd6963fefd854287e9d5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libicutu.so.72", - "libicuuc.so.72", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "ddbd241b5646d9f6", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libicutest.so.72.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "207f7150615dbdfd82a03eaf97010a2eb69f2daba3b510a7e7f33d6df711d00f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libicui18n.so.72", - "libicuuc.so.72", - "libstdc++.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "0ca025d0ae3f2545", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libicutu.so.72.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b87b33099db47a35b50f918ae86800247acc9f3f6d2fbe449aea3ce83ab9cf1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libicudata.so.72", - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "27cac36770f0d992", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libicuuc.so.72.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "864f32ec2dc74d90c51d389a02b30003465b84e2090bf940039c0cd4b41b8f63" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libunistring.so.2", - "libc.so.6" - ] - }, - "id": "03e698f377b588e8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libidn2.so.0.3.8" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "92f86d0ba0b9c6e342d61abe8edec5810d0d9cedad41e28a61fa1ecdbc040710" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "84a4f7772b764472", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libjbig.so.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dad87949ccad2be7e40a02986306087fdcfb35ccaadd59aea923a3f96d290eec" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "e51ef711bbc1a1c3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libjpeg.so.62.3.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4cbad8ba7a8469dadb8f64c221af46546e04ae195960ef159e7c258cec3a7d0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libkrb5support.so.0", - "libc.so.6" - ] - }, - "id": "6ec694b8c2d5ea88", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3b2f8f3f07a1f8083f1084c6d61f242071fb6e6938a318dbf968b345507c7b71" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8e410cdbec023710", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libkeyutils.so.1.10" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "42dd0c49c0954a621d370e4c52f5a0151a69414ad6004d4078b66af466c5ac4f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libk5crypto.so.3", - "libcom_err.so.2", - "libkrb5support.so.0", - "libkeyutils.so.1", - "libresolv.so.2", - "libc.so.6" - ] - }, - "id": "fe4ab638457db507", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa3ef88850c545cae1786a5027d961a3800906446b8ac8784b772df35601ab4d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f63c193431f1bfbc", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "64f183c14330855843841747ff1975ed87e767de2e2f1b1cc4d7abd2302cb7a9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c5249466000ada6f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/liblber-2.5.so.0.1.8" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "062bb940f27b45cdcac5d3d66a727f441755b17f59842641ceaebaf990e1634d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "liblber-2.5.so.0", - "libsasl2.so.2", - "libgnutls.so.30", - "libc.so.6" - ] - }, - "id": "8c396ca5c347b7bb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libldap-2.5.so.0.1.8" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0f0ce52208a22570370eb2e96d250b3c088cb024f15cb7c48565e749eeab7cd5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "884de14037686350", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ab16801d2741fd99932c08718f0c0411a778bd863192eb5a054de358e2a82849" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "04a8ce6c4eee9595", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/liblzma.so.5.4.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f1ea1b2d14e8980497e51affd8556ac7bec2160f7821d266ff032c53feeeeb5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "36f0b8b759362216", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libm.so.6" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9e8462f7650da0b39ecfe1680fa87fe393f0710b324250931ab36fa0135b14cc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cf679dd4719e99a7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libmd.so.0.0.5" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4e47b5878df9f36fd2fc125e33900a0476f446f393e9fd532f329819c9996412" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "072ab00d53f6a53c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libmemusage.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "934e64b8270b82774ae0dd2ff0d6bd22e26315ed67269f8858a1b2ba2d313b50" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libblkid.so.1", - "libselinux.so.1", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "4d19bc13374b0b3c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libmount.so.1.1.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "94933eac27df3338fade5b44499d062a9ec582d5c7cc457c116099f91a1c11cc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "ld-linux-x86-64.so.2", - "libc.so.6" - ] - }, - "id": "0bcc0f6280ce4663", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libmvec.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "63f8ec7a41906ad65a800d27294cdbb34bf6c709252a575ed513a3c048d71019" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "461325a0ac38700a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libnettle.so.8.6" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0755967fa1026673ae658dab001ba739e670c85c684795a896c58549fe38a547" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "3c0abbf4718b55f0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libnghttp2.so.14.24.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cc8e2d57a7d58faf121412fc053489c443af923bd05524dea7b3a61b40f39d0a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "cca23a045f329ec9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libnsl.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fcf313d1df85f74b7062e7b3d216f3ccdd3c374888c2201bb5cb44a964bcede5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2ce088ebc8fcfb1c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libnss_compat.so.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5dc6bdfd35f059d46ffb2be4e3a46222437995529f66dba57ceac00c4f4cf4e2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "580d7fbb746d2339", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libnss_dns.so.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "decad3e88922384850236ea01b49a4ce427c8babff6462496491f1faa1f6a04d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "84864414770e8bc7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libnss_files.so.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b992db15bdf6845b2f8a777b5f60a0fa90a230b9d1251abe5e06f96923aef440" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libresolv.so.2", - "libc.so.6" - ] - }, - "id": "e90cdecd8c19b881", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libnss_hesiod.so.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb2bb9250f348587ea3b7594a0a22055312134e55d065434d1f7e22e99ebf1d5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "cb6ce3263dae54c9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a0a560ae54a793a11ab78d6ce12b902537932b2d7aab2352250391a035977ef1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libffi.so.8", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "fb5c2c761f54ef1d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "418bc3cac3234fda08c444121df44bb47179a67774cada7c8272bb92a46528b1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "3fec4a84ef9d028a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libpam.so.0.85.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "419083b6f512b9d541a31e9dc3930e58d09753248bd50749281b410317eaf5be" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "a94dd860df67966d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libpam_misc.so.0.82.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "001ce3d6e8326b4516784af87057e8b1528845c9b56622da2ca754809c2f1afc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1aa4f59785501820", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libpamc.so.0.82.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3d97077615cd7cbe8fba2f4a6a09f596b4d30000c2c6f834279d12110217c867" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9a69144f85bcdddb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libpcprofile.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "19c626251526131ac9340826c8f7bcb693c6ceb9d5da55919c3aa45d972b704f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "26d0e8dbcf424e73", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.11.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f34e8ab44889b11e572ca7a3026a005ce846ba97aeb66afb5526fa737fb138d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libz.so.1", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "d4945f79215765cc", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libpng16.so.16.39.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "20f0bf67e12445271935d9c05d9a9d8fd567046132c6873388eb1c0a8681c28e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libunistring.so.2", - "libidn2.so.0", - "libc.so.6" - ] - }, - "id": "0caac1b768f3af94", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libpsl.so.5.3.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2a3c88f33f875bd04daf10b24773dc2a42ce431328bb37aea324e525af2da3e6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d52d79a125a8f9fe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libpsx.so.2.66" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "42024f0ce531044588ffa1fb2fe59baedcb92557655e9aa01363dcf911cabdbc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7566666e8193ffb6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libpthread.so.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ea5a8ed4c9d680ad7225a715225fd5ba8d383d1cb4f68518da923a8f70e14930" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libgcc_s.so.1", - "libm.so.6", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "1a8a742249146df1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/librav1e.so.0.5.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ceb93dd91164e7387288b7cd4252d5ad7698f45439d597d041354dbde490396d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f76b5709477df188", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libresolv.so.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "272cba686dc083b91fc84bb2c504426be9fe40890c511c789a3b5e22adbf5d91" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f18c3d917da13b21", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/librt.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "60631c5df675831d9e9338e5cf859f3df713f8b04571aaff1ca65c9287832cb8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libgnutls.so.30", - "libhogweed.so.6", - "libnettle.so.8", - "libgmp.so.10", - "libz.so.1", - "libc.so.6" - ] - }, - "id": "bac9f2816cc570e4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/librtmp.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0e214d8cc294d6ce547946b2b1145d394a06bba3aea7506f0f37b38d32d660bf" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d4d2a5bc44760d3d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef6d9a09a11ab5f31e44fb6f9346427977e2606c0f85b9cc1204cf269045c97d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "edca8666b8c76bf4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libseccomp.so.2.5.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0207e4908ea384e186c75925b0e56996a3eccecd48c99252aeb757d0d3451c93" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpcre2-8.so.0", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "25847f0c8b7812d0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libselinux.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ac3c76b0cb514de3df3ac847886feec2806da99db31ae99863b9020639bf1217" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libsepol.so.2", - "libaudit.so.1", - "libselinux.so.1", - "libbz2.so.1.0", - "libc.so.6" - ] - }, - "id": "a7db1a0e7cb1ddfc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libsemanage.so.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e458e8f707ab5d0f9304e3a512f03cdb91d52e1aa342b4435ee1fae5c7a0aec1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "be5020cf04c04513", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libsepol.so.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "069dac3c6f2e04f24b16544391ea372feb659e39c197aa65c67d75ed82cae72c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "8d3af5087d45eb3f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9ac001efe53c87b844b464f329ab66e871caf40287b6351df28c8b668c998f3b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcom_err.so.2", - "libc.so.6" - ] - }, - "id": "56deae7a09ad3727", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libss.so.2.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "66f751ec9d3d5bff254a498e020d37f9bbde8e0193ba11d1b78f29153ffe694a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcrypto.so.3", - "libz.so.1", - "libc.so.6" - ] - }, - "id": "14abc0e8b84efffa", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "97000013333c4f8825ded95c5d795af1a47f367394823aeb5d3b96fdc0c452e1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcrypto.so.3", - "libc.so.6" - ] - }, - "id": "dc3fe6c998432f13", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libssl.so.3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2b7d4c5c549898f3fff509105d7c5b283f0cfcaa83d38954dc8690bd5aba88ed" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libc.so.6", - "ld-linux-x86-64.so.2", - "libgcc_s.so.1" - ] - }, - "id": "fed7881414a071df", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "03101961301651091744a1d75c68ebc072aafb87f6e399b66a8532ae6cec6998" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcap.so.2", - "libgcrypt.so.20", - "liblzma.so.5", - "libzstd.so.1", - "liblz4.so.1", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "d6ba238f2dc7330c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libsystemd.so.0.35.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ac2f39cfc5a5ae22d74854e473449608bd3b7ded362acd11e4af3acd4a723bae" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "74e27c32616172f4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libtasn1.so.6.6.3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "952b7ef313dd8049359bbe580b7f4ce5019ae70cdfee9f44e8562ad473dd39ed" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "59b70b61a8130095", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libthread_db.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cd6083dcead7e94d1a5168b6847897e8ccc28b90ce61a8de70ff51d3ec9f88ca" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libtinfo.so.6", - "libc.so.6" - ] - }, - "id": "f8c3f6319ab033da", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libtic.so.6.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0ab59f14c0e89fb47b9bb1e51b60264fcf62d6f8564c3dbf3c7725ebe844a2ea" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libwebp.so.7", - "libzstd.so.1", - "liblzma.so.5", - "libLerc.so.4", - "libjbig.so.0", - "libjpeg.so.62", - "libdeflate.so.0", - "libz.so.1", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "7623b6e8db2ed211", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libtiff.so.6.0.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5c19747909b3815b996ac20b94bccb1faf1c6ff1ad240b05792ee4feab733a88" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8be31f323abab169", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libtinfo.so.6.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "763d084998a8600ad7431024d4e3baee4eaf61c78e8a41f211859a49ad388d4e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "86ae984519f140e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libudev.so.1.7.5" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc5951aa3d6eaba20ff9688efa3420dc95785aae3709ec48ff6df46d6f409ee5" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "5df21a027caff78b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libunistring.so.2.2.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e01e0d7692d2e320d5de3cf2e47d87d9f1ea0841227ed705210e350580a862dd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8310e12ad6fcf307", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libutil.so.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "94176513740e4b8d24a68e6c37a43986b488f2910c9eaa34f69bd7ba8c49307d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "a44a4619faecb717", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4fedb320592cad963eab7f598d3acf3fa9054a2ccffac95bc97085b134ffdc3e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libc.so.6" - ] - }, - "id": "7969637f1e355f35", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libwebp.so.7.1.5" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40d78df44817cd89c2ebd891eda7810b8d4bce99f1e7e5c6813ff89884b57235" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libnuma.so.1", - "libstdc++.so.6", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "fd7cd90e4438b0cf", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libx265.so.199" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35e218293d7c1f65b765337b92c6425f3495e80f5973058d8847fa08258cb97e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libXau.so.6", - "libXdmcp.so.6", - "libc.so.6" - ] - }, - "id": "9d489b0c5f610c28", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e99da16f0a4d9d5cb79a4f4e1677d8504fab75f1bf058e2e9f5e433ad7243b44" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libicuuc.so.72", - "libz.so.1", - "liblzma.so.5", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "d326779f532490c7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.14" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d00e0b2a61b2ca4615d14d7fbc542ef9e184d40cde112d2b36bfe0611eedb9d8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libxml2.so.2", - "libm.so.6", - "libc.so.6" - ] - }, - "id": "e45801159a9a46fd", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libxslt.so.1.1.35" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ff91ff0dc073ccdd9a123e48b0cc27a1050462403697a4ff2bd78599b7fd77bd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2a1cff1c83de65c1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libxxhash.so.0.8.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ad2b96fab5a97f84c677d090dd788fa273ed8d8bc6e2110f42e66ec7c681df29" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libjpeg.so.62", - "libstdc++.so.6", - "libm.so.6", - "libgcc_s.so.1", - "libc.so.6" - ] - }, - "id": "c2484f4b00bc9fe3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/libyuv.so.0.0.1857" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7e2a72b4c4b38c61e6962de6e3f4a5e9ae692e732c68deead10a7ce2135a7f68" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "bde62cb275dcc1cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libz.so.1.2.13" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "37412b7ac11063c25a375bdff6f4fdb340362f926cd9c3a55962e8a9c9bc702e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7feacc2fd841eb13", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2477eeac7bd460375698b0c974b9711f045713f00e5f0fc7faf3374e844cd961" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libcrypto.so.3", - "libc.so.6" - ] - }, - "id": "1df1d52a3d0beaec", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/ossl-modules/legacy.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "750ee369fbf3c34f72a823ca261d33a89bba98ad1d4a967f4f89e19b122eaabf" - } - ], - "id": "04ff5c9cc5b680e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/AutoLoader.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6ef5860c36e82efcf2eeec6fa66dab54b39d46f6149def35b7dc03747773cf7" - } - ], - "id": "7e407addd1082cfe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Carp.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "18d60cdd00207b238ef28d11f55a6cc45119cfe0eaed19b85b17ac0e1f167f25" - } - ], - "id": "b07f143d735a3215", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "366bdeb192721fd69f150688c3abf372680b24deb173923f0d25ed6d13aad89e" - } - ], - "id": "cf700081c03af554", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Config.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "09c5e2ee35ee18d9043d95273f1cd37bc82e80567fd1372a1eb134c809c39504" - } - ], - "id": "9105119b142926c3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Config_git.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bf66232868febb2b23fc92488a8fdfd68ff2eee34e678d43270f98528b5e8415" - } - ], - "id": "09223c18f069c079", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Config_heavy.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bbe4069304d3596d24838ea03db375d4107f1eb65425d3efec06d699201835d1" - } - ], - "id": "a126ecb38da812c9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Cwd.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "141cf3a83e2897893288f5dd69f1b292d3ce6afcc1882074c79d71979bef6983" - } - ], - "id": "3d0eb2f866a7ac98", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5abe102f802d0a400b5a93d089e7e7b06c5e40b67c8dbdb9885609482f4e7b0c" - } - ], - "id": "95ad6c60160c6d1e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Errno.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "98e5e6fdc6e14139741dc91db55803b4edd60360fd5e65ce0682c2ee81ad0860" - } - ], - "id": "5f232825a773c963", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ee888b1e508a74d79d35d123b5aa352171ede62e05eac8b137a93ef93aa07c26" - } - ], - "id": "6a00f2ac2b9798f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3f1771fbbfae12cd25acb38f91451791df6625a3eb9d20fc45bf34ae2a2fb7b3" - } - ], - "id": "0aebba30347f6cf1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9aeea43fda475ea4e2b75633b2e25528f45b2510c7df4809449fbf938de58bd8" - } - ], - "id": "ff6391b0ca9fdff6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6655a0ce9e781f127edf969333aed5dd858a6007fd3db5591b8d28b5b6457017" - } - ], - "id": "42069a0c9e1777cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ed8eb2a8f5f1c3d40caec1f3104174880f8c653f87daa9927facaaa8e0cc9e5" - } - ], - "id": "f2ed267afd54c853", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "74a9072da4d42b8c3fd4955a71e89f085d8ba14c41507e8f5bbebee7a7fbf2c5" - } - ], - "id": "996c27d76a261d01", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8f8c36f5b5ea808f6392b53fa451204c38ed16dec6433bd7aec776405c21dbf9" - } - ], - "id": "0303f677ef4887d5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1603c39f407ac8e20943852f7f9be6d30195d209a048477e62fcaecfd08688be" - } - ], - "id": "228f3322fd1678dd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "91ec6e83b34fb8501aba443335f86843d93dc5385604baaa002588c99c75b9ee" - } - ], - "id": "0d75c84fd16cd024", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0987cacc3fc9a9557c913f60239043f298ccbb639c226d6177f040fef34fe95c" - } - ], - "id": "14b704e6cbb78525", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9f2a0721e617d9002dfce95bac38310bf9c895eaa0378f0e3dd859be0de03f66" - } - ], - "id": "94160d9cbe71bbda", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Hash/Util.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c4b67c89af17aede223b6c8a0d8f90b5387695276d292be8c2c5c00e0e4a4de9" - } - ], - "id": "dd71032bfbae90e8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76ba6813e6ef96673578a20e549fc6517332183a1724b207c7bb913a613453df" - } - ], - "id": "544472a16a0414b6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/File.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2edbd1352e5d45a7367e2b9a1f8629a4d2afc641bccae5050cae3d5c8018f7af" - } - ], - "id": "17487893681a0013", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fae5cb4ba8acd5bc759c99286d6082420f3649a740b2588b5a44d3bf32159b1d" - } - ], - "id": "7487f426b7170cbf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Pipe.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f3668e163030a8bd176f5c5450cd7fbfee8c909b8d6d7b7c39694579c34b49d" - } - ], - "id": "092686918093e067", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4b521d8a65e6602ed58d72d34ba56eb2aa7fb8b083dea3b06c162aed8a4d0d71" - } - ], - "id": "e8beae01d44ca185", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Select.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "15c63c9b680b5e430f2152d188d4c429f142af742b24c4192178c0b313b2062d" - } - ], - "id": "2f07d2698ecad51d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "25d068b7fa896741b231e064ecbe3cd993f6107a723108f876ff267c07b3f2be" - } - ], - "id": "3fe1c3633571adb2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/INET.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "32bc321600afb92e331285b12aef6b5c0ded11f37b7a04c9c5d0fce4895cfa13" - } - ], - "id": "c7553f64a1d9596c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/IP.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8f4b6eab7eab67f6d00dbda52dbc00788779d52e2fd05ede560f974819dfe737" - } - ], - "id": "eab60a4bf4e9d90f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IO/Socket/UNIX.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a8bd307c818cb74e4ad35876a957d56ed0e37053936fac349edd70d7bb63547" - } - ], - "id": "f41ca85adcdf30a1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open2.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "253a07c5018bd032e92c8188a2f1679dc7e91a608dffaae8ff222d1a37083d86" - } - ], - "id": "56981fcc2a472a29", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a3c1db0757e795e87cbad99f15e932763671bb041f9a65e9b5063d764c91bb1f" - } - ], - "id": "672a077e990838e0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/List/Util.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "830131da6187e80574db3f2513f74730e503cc5e44194f59dc158288906ed5e8" - } - ], - "id": "7401cd5b7751c931", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/POSIX.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a11bf11a40eda52ad200d2784333a720c5d4864e2552425f8e017ae8525f2204" - } - ], - "id": "bb3a5b2d6b7e836f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f6f2b9bf40423e54466311866dc9f67a1318396d2d162cf84722e28d715a0ca9" - } - ], - "id": "83fe5897d7c9aad0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39ac19481f0873c5bb198d2f6b53c802c73a04844aff0b86b8aef5add9945f20" - } - ], - "id": "60796df1cfe817fe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Socket.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4bd270e8d78b12b63366e5d66b1ff3b0800aba9fbccd89a57d90597dc52e6a10" - } - ], - "id": "feb9a1977319a719", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Symbol.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0553dbed5aa153a91190b2e4a38b004f2c063451696a28841a414792b3807a09" - } - ], - "id": "9c0cc4c00dbc807d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Text/ParseWords.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aed88ea52e2b90e771f7d4f92ab27109661f4fd1e29efa80bbc62f2804f1e44f" - } - ], - "id": "f788a1ad65a4c1b2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Tabs.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7a607e7741691146b8d3a93ee6fac737e998d54c9de2caa8f3c29a575ecde9a6" - } - ], - "id": "53757b98e8d68185", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Text/Wrap.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a131e43412178c8558a71c2ddbb230d685c2a750056c52eee0a8f4e20fa96781" - } - ], - "id": "e3ee23d042502278", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "49c4664510158655c9b603e3005c44f84d35d4f88cc8f04829e9a0f5803ad4e4" - } - ], - "id": "c40b3285f1e963f7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0aa31306561a2b3d35aceeba2f2cc0dbfec80275d9c18c792cba0999e6668ef" - } - ], - "id": "7c8f9898ff988624", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/attributes.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0dc82fb4fce46d1705077ec5918fdc4edf505cc7c3c24160735706a41c2b55e8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "380a92ea5153a573", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "37e0c65317a78096e600ebce7d44e943d22928f86eaa47e83684e80ec2ea80a3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [] - }, - "id": "bdeee5f0690a59ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a0e37f5e6c8834b1afa4c26529580c40dc2911f7dedc0ebf20521aaf274bfc84" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "441cfffb46742417", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d72dfc5007ef42eb5999e47c5117910c5979911e613f07f494546d97646afc67" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9eb35fb1e6702ee4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Hash/Util/Util.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3bcff81c6214ae2a5f129fa8fddf9d698302200076782f4dc6c1da41c09e39e6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d8ea8ac34d575709", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aec2e15fd63da26a277c96df506e7b2b52974dd1e5a2c01d1b980289f26deefb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "d8e3663822bbb8cd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7a369bd2d275dacb888ca48936ba4652d428a8fcc05f08508b665b903f73aa0d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "9ee3ea07bb881c39", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59ee5664628862435507abdeef72bdce6277973c1d1e1b717575346b2e8f887d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ba7e8ff244462f26", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/Socket/Socket.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce4c6e8e66b0a6c85184835464cdf117ce8222f6761f70a918435a53f8f6c166" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ffceb152d3b8ca58", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/attributes/attributes.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0546b440b2467d4062184de77ac6899e829fd65a0ffa6b64052501f85dcd1608" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libc.so.6", - "ld-linux-x86-64.so.2" - ] - }, - "id": "30a375fecd7c3173", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/auto/re/re.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "081a2a231e2765996d306b46b4148d7e5bd80e6c7b0294081c6cd8a15a537ce0" - } - ], - "id": "71a9365d9a4e999b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/base.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3b4e56f2f831cf2f6cd0d73060934c432e7fd734dad3edf6cb69358866eeea21" - } - ], - "id": "480b54e795f72bc7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/builtin.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6596846e8e83a530ffa409267a7ea948dda9c4eeee39e9aacb6b80f2a739c286" - } - ], - "id": "ed9f0ba8d3c20c2b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/bytes.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c7def62cbf7d031c4fe319e414117043f2a273885bff93bd18e11935d00a6677" - } - ], - "id": "488c4f6435900773", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/bytes_heavy.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5decbf923c0f5f065147a7a1a89fd351a26d5d5efd8799ba4ee992a1d00cd837" - } - ], - "id": "4e79beb228860a71", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/constant.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e127dd7784813df284e6951ac7b95af95d38a291f5e70e7bd9303e33a3db4b5b" - } - ], - "id": "009ec8c9fa6f2a9e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/feature.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce0f1efbe6ef77f3becd4e898bb3df04ce6dce6c1e93da9eff9adf53767e2b80" - } - ], - "id": "6937d4e18492c540", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/fields.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1c387bfbc4bcb4046e7372c534372c7150315499bc5641328d5c3c1c1ad50373" - } - ], - "id": "b3036a26f8e089b5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/integer.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b28d06f3b158c0c0314b75c077a1ead056286f25b09504e0cf69b597da73e730" - } - ], - "id": "751497748584edf4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/lib.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4cffa8a5b6d6a0df11c865529aabc3d0b0172ad55d0f18d2a4d2404cc477fcaf" - } - ], - "id": "a6e7c94b70272747", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/locale.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e777f5a165a2430ba3ab9805c45a7a27c9b417bd5403b1c92b77a453471f2dfc" - } - ], - "id": "125f3609c8bb07bd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/overload.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5387b33943963d2e47f05b3f37926f2d454f9ded33ca857e56ffb33b3adb999d" - } - ], - "id": "7477750a95e4708c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/overloading.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8eb521a3af26eaefb34a168f6a79034b2e31840b25eb94477f0dc0468572e27b" - } - ], - "id": "a7079418142b8904", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/parent.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eb869ea443fe18fe7e3c7a0143c2af7b5525b11da470c6ac36f41f6b3c1c81cc" - } - ], - "id": "3d167779f062c5e5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/re.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e6ab7416ca86e9f9195a4c86a893b96b9a20d9b4512c23c2d8683a58ea6c8e80" - } - ], - "id": "79bd584d011e5d4c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/strict.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8f153c4f0f6f6e241de569ddc84ef40f5c7e4308e4e6121dd6b0741a4049cae7" - } - ], - "id": "0aed519b7a034f4b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Age.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "21d1d93ef1c05fb9024214cae5cb8dafa7a7bdc089351644cb8526ac0612e0c8" - } - ], - "id": "04632821f2f73a2c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9ee746bca26044792c00ea62c82f0970a80884362ea8a07d658509ddb4e48e2d" - } - ], - "id": "d7e3fcd98c65480d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bmg.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3bd9fc8ceb046b698981778f4f9fbc8aa1d454bafa2094e1ce2498e0953e644c" - } - ], - "id": "6c9c36705a20af68", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpb.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0c87421a1a003c23990ba64ad0da84ee72b51cc2e3c8ac6a4412d5a11a10a924" - } - ], - "id": "ddaa668e07c6b11f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Bpt.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "55f478324b11b584c5e95100a460341ac9288f1b81b1cb6612ca2002b5f765a7" - } - ], - "id": "4826a451d3ed4764", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Cf.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "58752d1c1cb8cd257cf020351ee149cb35b8ee86efa542a40b5d8154d5203f0f" - } - ], - "id": "765fdace50677a06", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Ea.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c052b166c85ca16146e0f11ed97a2113aca69785736a511ef72990d997ce82f8" - } - ], - "id": "73f034355b64a756", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/EqUIdeo.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f9028a6e0b46b301b2bed2fba41b97e2f8587b03e86dda46758aac41af3c07a" - } - ], - "id": "3672ce0b4c82e5c8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/GCB.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "de33198a5c31546b2e40093a5bf12d2827277df74307d423af06b09780371af8" - } - ], - "id": "bdf05004ad314f7a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Gc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "452430947bda95360c59cfc3be307723f5a48d5e3ee8c0e050992a544ddf6605" - } - ], - "id": "8e53b05f9622f535", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Hst.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39448fb8d785f2c5c64b53442961b9811a1c4093ab0c30d8a59637c95cbefbdc" - } - ], - "id": "13aacfe0edb50dc0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Identif2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3e48075fa17d1f242c6c4b4611a6f64cb292fdb211730e1c2fa597b8a6bcb686" - } - ], - "id": "34bb784007698c12", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Identifi.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b40bbe84ed119b66e90396aa147aa0f1eb32cbb73742872c3f7cbca6db8b12df" - } - ], - "id": "f4aeca7cb293885d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InPC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e2ef3dd78b843efe1ed0960f0806f22bd8edecbb501fcd4e473f151dcb92879" - } - ], - "id": "c593e54c69f2fa07", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/InSC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9077aa87253180a1cd1bddc0af8e0d77d40f4688fe93d63b11ea8fa964b9c256" - } - ], - "id": "c115c31354dd667d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Isc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb0cb96ea42fcc85a941716e2fc321c93203250d5dd85e9856c23dbae0984026" - } - ], - "id": "0b9542f79d719c95", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jg.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ac893684c99e1bb8a4c100fff8e063500908d2b7b22db9b7d25a4d02d5e8881" - } - ], - "id": "44507440695f1c76", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Jt.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6fcc45f143d75c8dbcd1744185f7fe8586e896037aa4942f0c20a24a9bbcb0f9" - } - ], - "id": "655e53383478b39d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lb.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4dcfff5fba1475a66859fac8a630261c0de317d2f3e146e505e451de90d61742" - } - ], - "id": "6e1bd8ddfa37819b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Lc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fa000e7a8ad0257b7f9a77af6d0016353941d297a337876734f507f0fe34b9a5" - } - ], - "id": "f0eab19d4887d7a4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFCQC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f3f2864e18bbf57b23ff1676644369386169d4a42d3ba5c80d781e541480186" - } - ], - "id": "dcd74da176d2587a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFDQC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "16ff01b773a1dd5b9fd2a8c470966a07df7be5d4c5055020baf4365c6edb990d" - } - ], - "id": "6e95275fb72b4c75", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCCF.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1d30b5f860336ba6ac2b3f42d54f9dd1b8d532c9b659608aca104d8ed84440fe" - } - ], - "id": "82e0e952f460e025", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKCQC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7dd1c6c3497070015fff7c4e0eb28ec64e90447866bbb265b3cfbf38a7d7f4ad" - } - ], - "id": "561906e13c99a675", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NFKDQC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "13797104a7e696041d1d5e200cbae982cfaf7f68e3107b47e3896156f1e6193e" - } - ], - "id": "4ca6c0e0934c5fde", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Na1.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "468b5b00233a23b93507f34cb0cae851f738c9f4c93eccec9ceedb388508203d" - } - ], - "id": "67d923f5fab0800e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/NameAlia.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ee4882beab5fc457796b38ed6bc2475890d879848fbda8e6d6192080438ddb6d" - } - ], - "id": "02b7658326c0abc9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nt.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d6ab3fba4418e69ec9b36d067aa9965ab5d4693e4038ace7089dee5c5c673be" - } - ], - "id": "9cac689a37da7fd7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Nv.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c069033c9783c2ff47815442623a74d9539367c9992b2b15cec75589a1ed3756" - } - ], - "id": "c50c5d06a3418a15", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/PerlDeci.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9ef894c24a132c88f6e337216acb62059f8e264260716c3a296110b8a3be1e8b" - } - ], - "id": "16f4e5b6b4d7a76d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/SB.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0cf06aec82a4f893cd5209e1332da573e08867a6e330f6f969a3b6db98f3923c" - } - ], - "id": "7a5bac0b436add84", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Sc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f12674de6870cc87a61bede6b2a1035fc44b6def1896de46dd5e6be08a9b8558" - } - ], - "id": "b2d515e5d94791c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Scx.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cd10c6c509af63ca4551c76e70e8f4c73078db92f74ac296bba05222b49f1969" - } - ], - "id": "bb10d6ed3c8974d0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Tc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a519b491671c8abd525590675c85d8844d3f0fdcc76cc3c2d02d626bee1e0e0" - } - ], - "id": "cce9a2954a07d148", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Uc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0dff031fb4b12918f113addd9cbcab12d765bfd57a5f25ef442e90b66d1ba448" - } - ], - "id": "3179571a101d3609", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/Vo.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "17a88bc60fa6475e1386edf1d211dc5af79528ea97519c815720bad1f9894404" - } - ], - "id": "6156e7fa929bf63c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/WB.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b160288eec63b501be73ccf50b8b985b21c63e0f76577019c88231647bab1724" - } - ], - "id": "840c38bd0b358a1b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlLB.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "37a6d87d365586c8c194690b1fcff9a6f50197e0625ca5ebc4f8f4f0c81aa6d8" - } - ], - "id": "663b0157fc64f872", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/To/_PerlSCX.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7f9153f249d71aae7aff08ae6df3aa80d6866a134426297e1eb8ddf1a570b0ee" - } - ], - "id": "b78c906d3801155d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/NA.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "70ac410db73c813073a291c9fcfe995bb19911933d20ae6c9e7c89a95295dad1" - } - ], - "id": "5681b3068ef39c6e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V100.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b931873ebbe1255be99d3b83632044d89b725568b26db41ac84a61ecb89ca42a" - } - ], - "id": "59632152b76aaede", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V11.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f8d2c5d4a484cb60c1ce877ff1b481dbca0efc69ea9245041d68d14a7cda4100" - } - ], - "id": "189c9b2e99dd8c23", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V110.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b6fb4aee4cece812817568319f526035d779e21ee6487f263609b48d62b694e0" - } - ], - "id": "f58e956acc78f57f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V120.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0ea43d544b27c30a9918258b88fa8c15236daae7cc918c728c54a193cc0c2218" - } - ], - "id": "1f01fa78f58c9738", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V130.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d741ede24da4266103c7ea46975aa9c1a14de048a4b5ba92997c4a8082b4d61b" - } - ], - "id": "6e60ac40b69ac037", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V140.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "01d425a3d7fcc0fe413b3f6f7ae9cee306e66daf2475c257f6370e1dbd567f79" - } - ], - "id": "2c15a0fb8d891171", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V20.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "180475249d1851f3777c21d4a613989cb08eac32784c58ebe3cbb6db4fea8ce1" - } - ], - "id": "6cf97b9969ca953e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V30.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5003b1ac1b0da16d76b1bb505145f0bb53ccff00d6dee5e000f05421187a21e4" - } - ], - "id": "06eb69023b09db36", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V31.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0b5158785620b6a420ee6952c23106d0d6d53641ce687bf1c9a2fcc6793f809" - } - ], - "id": "11f10c058083927f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V32.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fb925a10ecc4ee5b16256c4e5ee08564e9f35a7beddc4e7d9b09acaac6d92b35" - } - ], - "id": "e65585c1d2fb9790", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V40.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c40af9bbcec2b4fc14aa8b150d03821360f7288fc4c64e6f3211dce665d4f76b" - } - ], - "id": "bcc629d5585a72ac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V41.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b418871e0b8785f1523bbde05de42f1bf0945589c031364a000096c78d315875" - } - ], - "id": "b420ebc1fb346edb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V50.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef28581334c9580f62828980a22fe564a12761cb7559cd1dd4f19c6c324a1a9b" - } - ], - "id": "9f106044fa776056", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V51.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8cd81de2cf96751421ed5d39759496c87daf30aa956f727140d0567e6d08a981" - } - ], - "id": "b3417b0732df1c72", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V52.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ae6e0d0880f087e50c0785aa3b4cbe6b454699fd7cebda83ef53aeb69f25a843" - } - ], - "id": "e72a28b2170b155a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V60.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ac5004e503d07c74b099652cebc58b18fcbb27958cb77286a667194d06b5812c" - } - ], - "id": "bd43c61395125f13", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V61.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cc44a40c9fbaf4a2324c5aa9e8927b22bae3133e12ae8bd75d07a0ff0dce956a" - } - ], - "id": "5599a12c3404d984", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V70.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "884832c9d9b1dcf0cf3e737e6dd62bd8f0b1140f5a1d9704f4636f581ff4fd5f" - } - ], - "id": "75d3d66386b345ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V80.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5d7e911f1b5ae16161816372bdf634b82c55b715890a1d528a0abdbc33497103" - } - ], - "id": "58f40a97cb356225", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Age/V90.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "707533f2f40884d88e2e556a6281a533fb3df1533d80e31de90b57dc432cfe5c" - } - ], - "id": "d661160f94cf000a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Alpha/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6265b94e22986a6891a97bfe3606a7033e7b169511b4010e38c0c23f11ae6ae" - } - ], - "id": "0b33bb8adb257bfa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AL.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59508c02a02ce760055d2faeddb70b1a27fb002245b8d3a707839b94735a2b19" - } - ], - "id": "74ff2a50f60a9131", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/AN.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "68ea788d2361ba4991118fa96f1ede1ddbe39e08981b60d7fa532b48812ad7f5" - } - ], - "id": "1349a57ab9ca6441", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/B.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "032795a755dd2e89bf1145b292160bfeab377971794395087c928a4d22c4933d" - } - ], - "id": "355512cd93e5232d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/BN.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "50b208da518b3b2b4499af8aa3d304a488ec25f86bf73a4b04d1edb87e91cf5c" - } - ], - "id": "1ab26f46b5daf248", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/CS.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8d8cf2b83b40302180212a070c66cf7d199320b3af8aad2b263c568044739880" - } - ], - "id": "33fd39a1762e5c40", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/EN.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1abd420b72ecff0619fa4d3dfed8f620af22dae5d47509c4de9b21d1149ae19" - } - ], - "id": "0f3432b26d625246", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ES.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dfb6d180fc405d718d3932e03053a97a4c8928c4bd01041b4c4ed36cd8193f83" - } - ], - "id": "053c875703955ae5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ET.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "acd5ea9c02858c9a02c6ea5abe1b4ef152919f50b6feec2ebb27be0825b315fa" - } - ], - "id": "b83cde665ba4ee59", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/L.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a0f82d50ef6fef065095a7253e2ab37f5de1156378cd81d62ba5c790f92d9133" - } - ], - "id": "6e222fa390dc2663", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/NSM.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3733efb581e4b0581b57ce4ba4b6ce9c566cc072c74cc237eb0d53689e484ec0" - } - ], - "id": "5ec66e9e6e85691b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/ON.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5d57102c0beb5bc0c21ca7858346a4f1e14ab30d75fc5c5c4dbf9476482f1479" - } - ], - "id": "012285826d1c531d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/R.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84161956293a4eedb07594484d6fbd27ee4741b2448116ad37bb1be330528b18" - } - ], - "id": "679b8f1deba80238", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bc/WS.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a2126403caf7922360789c50157b7d40b59bd1b3c47065713432686c1a57c5c" - } - ], - "id": "7dda94c61e0f68d4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiC/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2584ba8d39f1a1cdfc89c08a717093caffd6f4ef34399d87ae6170e546d53cb7" - } - ], - "id": "efc8b907cef945e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/BidiM/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f7eda654046dec1ffe77cc9662f498552c53a98e699401cc564bdb24a5dff7d7" - } - ], - "id": "92a461ae9127e47b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Blk/NB.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f98e67ad62daff9cd9b6f0c1fd950dee0ee400e648f40012575989cb0be86371" - } - ], - "id": "e881b3c713ecb83c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/C.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3f85c7291a634c904caed73568e51212c5deacd3fc129af4e53567a8e62c900a" - } - ], - "id": "c5287a0e0a2e9d71", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/N.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59198ffbc20c684da82f872e07387b80d99fccd8a8cd0c8da619cc14da916283" - } - ], - "id": "804095969a033144", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Bpt/O.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7016982073b26f0f5e3c0466499ebcc32737625063be2f3f3fa1fe4b4ad42a3" - } - ], - "id": "053cdb702b4b0e52", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CE/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dba4c8df279309cafcd993a39aa85c62799d8a29d546c78ffff76787d4b4a1a4" - } - ], - "id": "b594342e8ad7c15b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CI/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c12dd0f9fbb3f923be8fded751341bff86b91543230c36b4e8fb4a9fb5787d0f" - } - ], - "id": "7b01e955f334fc58", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCF/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c2a40b6f529da723d2a717af285bfccec5c5255f64462e60cccb0f5d6c1c53e8" - } - ], - "id": "4b61f7ee4f149824", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWCM/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9f3296a0fcc6d210ffbf80ce24a0bd0445569673d4736cac58964debf453e44d" - } - ], - "id": "d908fac492f4d8f6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWKCF/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dc400c5a2d4641350fa4066ed737078ba3eaf34238e52ab244e9ec10b0702bb0" - } - ], - "id": "fb0cb3f1c0ff446d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWL/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3ad7e860c4166dc71ad46e8a1c602388b341a64194fefb26eeec480b5b2223bc" - } - ], - "id": "3e720b0223deaace", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWT/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "416be5de9ed7a59e141bd41e7eee0627a9ee3ff017e0e8b78a91ff8ab900b1a5" - } - ], - "id": "d6a3621ad7e1efc7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CWU/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "62d7976050f6e592bf5e1c54086dd936956a9fb84b7d198192822b1b553d3120" - } - ], - "id": "3ffbf43e19bacade", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Cased/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7814672d1edffadbe1abc468998f81682119ba5879ddd4e3f3685e420761c5b0" - } - ], - "id": "a2a46c1366abb912", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/A.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4dbc6c2e3dfd970fcd6bdb582a441d319c8f75f70843ca2fc80d3a083ced0df6" - } - ], - "id": "fe75a880881e08bc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AL.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "26e1ee186afdac9bdb0bc5fc893303c7608f1578bbfb835b2a6cac3bc807439b" - } - ], - "id": "eec8f259189b60b1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/AR.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dbeef5f182e80524db2a9cadadc02c89ddf232bf3fcde427dbca9b8a46b4be44" - } - ], - "id": "bedc4f540cb3de8f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/ATAR.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c5e3e6eccc691516eb291f08074ff0509e027deba6de8a9647d531f6d0b4bf3a" - } - ], - "id": "9b54dabed987d517", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/B.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1f5f06ff0e64202f3111ebef5174a567eba3015592dde4d7fbe6bad61d2c5221" - } - ], - "id": "f244833c5742421d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/BR.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6e6c4d1a7d592dbe3ff3f3f2cbf5ee5969a651bd93f8319c7552b78c2df9c096" - } - ], - "id": "0a9a522b88abcbed", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/DB.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6faf7200d14f9d900eeb0a671644bb277a5d99dbfd37d0543d088f99a5daa9e4" - } - ], - "id": "06b5c4b1f5c35fcf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NK.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e16fd95edab94db209783a9d6bad9b81b4eec3e5e290a2d135531ff414bf385a" - } - ], - "id": "496e6c8db203414a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/NR.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "facec6c6a3e58c5b23f8e6370a0e101f7ef163c3dc94ac960dbb7394dc32fc48" - } - ], - "id": "e6c3d6db6ecc3812", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/OV.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c582d2e4cae21b36feb6135bfe2ca8f2e820760e9fb84d57aa26a2e014be4719" - } - ], - "id": "96794fc68ef7d52f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ccc/VR.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bcb0762081e63daec0975bf92793afa21d42f48028bd0234cb2c9ebf33865b67" - } - ], - "id": "7276c6f2b9832880", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/CompEx/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5771e1891f1b522d38f2a19cc1f08a9e913a94828eefd72260a66f8fc4a2d5b2" - } - ], - "id": "d90e7dd8c89872e6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/DI/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76fc3d5928f8bb83e830ad85acada6c6ac1914b32428c542f60c85780315598c" - } - ], - "id": "7c125785ac4d1d72", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dash/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "494e13bec7ef0ace977bdf92830e8ced744e50120bf0e504087cc528ece47dc7" - } - ], - "id": "342308a4c3e62095", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dep/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2df5a602a0d5c415fbe4b05ccf9ce1513dfbd8d2f257150bb5f33e2e2c9a4481" - } - ], - "id": "2fba72c57cf1b099", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dia/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b478b4bc5bb7b098b7cbaa6c7d68f2f040cf9cad2419d0aa9e7a186b0b9f07f3" - } - ], - "id": "1881b60b157fe7fe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Com.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7abe0fcde0e023baa95cd6fda121777269f5e5b3d720c6f03e4a20843799c435" - } - ], - "id": "b66120c6ccf70618", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Enc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "942625445bd6f1a9b464cf8a2848ab53d098668018a580828938d24f386bee3a" - } - ], - "id": "b78c4ce3f21475b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Fin.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6eab0e37213800dc7728f7a9cf26129f649c008f40ab0fadcd822bf0836dd41b" - } - ], - "id": "58f8aba7f44f4c3b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Font.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04f36b96a91783fc496b3578af372a5865cf39c5f634381f63ca936ff22783d7" - } - ], - "id": "79cc1bc651d6e347", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Init.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a5d14a521f98cc7c53b2ec730a3ddf6f027822f354c7d3e14f33c619e04fde1" - } - ], - "id": "1da7dfaee897a856", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Iso.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "43e1567f52310799e58e6aae5f1c82286add27d281a3cbb2d27e6dcb4432f56b" - } - ], - "id": "30b7dab202b6cdf1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Med.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "399b14d27a256da2ce826b7a5e4b9111fc24d10e91d54fa363f53820e83cdb48" - } - ], - "id": "43aa3c3d5f95c0b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nar.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "578283ca263af805fe1ef899de535ccdcc90a090cfbaccdf72dfd13aec09163b" - } - ], - "id": "e732e995d5487bd7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Nb.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "09d353e355f8ec24f2bfed8bfb67cf9b7dfacb9d218ac71c59e35720eed1e194" - } - ], - "id": "01e943c60ad20676", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/NonCanon.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "710d11d0b7cf8ee9192aac5cb5fc1da6e741aadacaa514f48e53cd94740c0afd" - } - ], - "id": "05ef27f51f39fe27", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sqr.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "487a969ca0c202ad0ead2d327c44aeafa33499d7cf0f9f95d805af6776cc2ec5" - } - ], - "id": "9b06ef5eac2bdece", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sub.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9ad87ba446f876f5c8dee7707d2808370e272eec4125baf5390b31885e91bc85" - } - ], - "id": "bfe26dd8e7ed5bc4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Sup.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e690429d658456bd1c8da45b3f7ec792fa62824ab2a77b10c779320800c46132" - } - ], - "id": "7dede89456f6459c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Dt/Vert.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a1a90e0a886e0bbd5e233a7aed77cd62894d86c170e0d3efca8325afa9bc172" - } - ], - "id": "17fce434f8abbc98", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/EBase/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "755401eeddfe610f45f7561b3462c187c074892d4db5a1946650ea0b877e1074" - } - ], - "id": "a4e2b9df2823dc54", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/EComp/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9be166350185b3d5d0d61eae1d3e447c95c8da2dec80081a17b631c1ed695a3f" - } - ], - "id": "6abbb6e69018555e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/EPres/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4ac3a587278a49bb885c4d43e99c3c606f2e731f1bb7a5fb44035679f5552db3" - } - ], - "id": "c5aaaae176b0eac2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/A.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f920d6910991aa559b8ef815952ceaae27daaabc76192280c0590fd1f65872cc" - } - ], - "id": "7f80f4007f4ffad4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/H.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a685fd0060dea0e784b2c3f8f3c2138a697e4bcaf9041ff9041fcbe2fe5269fb" - } - ], - "id": "5228aec4a57add52", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/N.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8416f456b700db85126a3dd1f7c48d79c0d479d261ca2e0cd64f1159ae7922d8" - } - ], - "id": "03bd46e8ae80d39d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/Na.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8bde8da7fd5944eaf443dbfbcc035b3d3d0582e21e39226fff24f2c819c6f2a9" - } - ], - "id": "be5412312c7f7b45", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ea/W.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "09e4cca146e294c571e40e0ba82f9f7b5c5afe663b0e9fc47b7eb35c1df1ed49" - } - ], - "id": "3ae72181bb4d5f1d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Emoji/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed04387a30323e7f8648e168a8623adfea3f9a73b2861a1648fdfb9d352a3316" - } - ], - "id": "ef5dd7bc9141acfd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ext/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc83011e126a1b9759c9321d370a130b878de6bc474140818d7b0c8c2ccc3d4d" - } - ], - "id": "17c90be39b9bf566", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/ExtPict/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "916045aa07cb2562591e97392c89dd2d444f182c123d8978442839cf9ef707a9" - } - ], - "id": "74030d5a36919c4d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/CN.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "680e22947578ee441f64b10f3bf63a0437f3bd460ed873e4acb310dd77489406" - } - ], - "id": "0fc1cc90bc0e423a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/EX.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d50cdfa33bb2dacc004598783f813169f254ffc320b4092e2d999198ca1bd933" - } - ], - "id": "c531bdc6b73fb5d0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LV.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2a9767c493f137ab8e427b157ea94d90bf744d0e3b77a58f2820a6eebb440160" - } - ], - "id": "e60038c2dd7f2131", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/LVT.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fcfa225fa41a263a235c39935dc0d635d9c5948c9c428ec8e3f9cfa86ba78d12" - } - ], - "id": "817cdc42edd086d0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/PP.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "87b6d835fd940399666132dae0120684d76f385957b75459021f1a88599cf2be" - } - ], - "id": "c2bbefa9f74b635c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/SM.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0432268ab2f54dcb5f8472b4c60053970fb750be4288a856a165151923bc8c42" - } - ], - "id": "86583b0d4c728739", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GCB/XX.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9da465a9c8a9ddd7f94c28c9329dc1a3c6d2f850b4e8721bb60974ed25821536" - } - ], - "id": "ae7c17f10f0bad9d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/C.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d3000eda42ebc0155f04ffd5dc3a87f8688904aea58ed876a4a8386953ab520f" - } - ], - "id": "a0aaeeccbc675213", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cf.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "250cfbd6dfa6a2dbaf9f51667da4f26ce437fcfd12fa45ef474c96146b7cf19d" - } - ], - "id": "b5062d5ea577a1d1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Cn.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f8cb47fba48962d12e6b5525f8b52845605b6b8e5f73900c654c5cccb3565dad" - } - ], - "id": "a0e1dff00f5e641c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/L.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "408999a4447e874838ce2741aa96beb4ae41bbcba677dfff50a84c5f632439c5" - } - ], - "id": "9fa76df804ed7063", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/LC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "90f2ff803fecc6224a5ff496cafe181a407d6d4d68a0258cfa84d9359a2c4fe9" - } - ], - "id": "1de98807f62d2cdd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ll.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aed34f2afc4af5c33054d7c0e7d90b68239b9fcc5e083c25bcaea88884e9bf7a" - } - ], - "id": "6bd6f87e2b4ec2d4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lm.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fd0bdc20fec18346bca434e72c9b2bc5dba6762fad6fb3aa991251cf2f9c7f02" - } - ], - "id": "1161365222e4fff2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lo.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e6144fe87a3129762e1755cc62b510680503377e63fcda6b38ee97dc4b7831fd" - } - ], - "id": "80d712b309eabd14", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Lu.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "191510009c3bd1560896f408f7805fe6240e0cbcc859783fe68802ff33da21b8" - } - ], - "id": "3f8d1ff6d937c85b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/M.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f3531e0f6af9ded215004e8ef080e1d39859c79ec46695ed9b00324cb912baa4" - } - ], - "id": "7ff7d6b5d8420cff", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cc1aa9827bdbde408acf48bcbd1452fdd03f894ff710a9d95f414d6c3894a08b" - } - ], - "id": "3db7af2cb7933b84", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Me.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ddcf98f13ddf4a68cd7e73d0e204d31ac40412f9f60585d0d08a33da96a3a2b5" - } - ], - "id": "19ce758b73640a81", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Mn.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa32e0653e7a28707527a817ccb9bcc6ea585e5b3c0679383b9cc8d3caabc4bb" - } - ], - "id": "c6ebe69a0e4e9aa9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/N.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "14d4e633e1d14bc30e11e108544edbb7b14a1ec6ccf6f1c7fbe2e2210c310971" - } - ], - "id": "798b8df658df4b09", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nd.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "729e8a9cdfbcf0dc75a4bd1c490492097c114bce3c89dfe9f598aa701100f09a" - } - ], - "id": "48267c167885ab1e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Nl.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ef23995f28452930914b326dceaab2de704fea67082b30b5528f15f1ccace78" - } - ], - "id": "7c47c18c08dd846e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/No.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0df04c40ad84944ca29bf0e41e1f4828de8974402eb6b0542808b8557ec7d406" - } - ], - "id": "ecfb61d2e3cca9cf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/P.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9cbd102a984bdf0e3a5a483b14bdeba0f97c033259e4f089398e15ddd4b76176" - } - ], - "id": "5c446050f29b5df2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dda190286672ece752d4251f4ec5880ccb36063cd099e7dd83ca2f4e37ab2843" - } - ], - "id": "96a0ee4f52acb425", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pd.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dea37451784bec53bfaa8e806d05a2cf9ee3cef5885bbaa76d957cfd82bdb03c" - } - ], - "id": "82b5fe13c2ef65bb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pe.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7fcad19acf4845153c3f906e1825c63650bb3ca76bc03ce102762ec55504e6e1" - } - ], - "id": "e4f0d65a6e1bcb6f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pf.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8fadede49a01f80fbf3ddba827bfb42d8e5c04c2158f7c8bdbcaf125fb54bbc3" - } - ], - "id": "08dd5da226b044cd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Pi.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f28cd0e29d56bba2a45434e9780384e620b65f894d952e4e78a5562b3562202d" - } - ], - "id": "fce02a941e850f6a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Po.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "117446640055d8ebd65b321c86ddc358d254d032ade26335a222210dfeeba4f3" - } - ], - "id": "ee24c0a21790375d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Ps.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fbd6af948198debde806853539cd5515b4d143e70e98808e1aa741e91972cbac" - } - ], - "id": "6453bc49cd78ed6c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/S.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f39bef5a97ecc4010801bf75089bf8465bf259ffe2e006727d25e29be16d7dcc" - } - ], - "id": "e1f5de492bd5a50f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "75ef1b62dfbf4e5529591a9bbfe784c160e5c17d5b10cac1fe4c95e1438342f5" - } - ], - "id": "6d8a0e0a7c449f3b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sk.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "44826222c0bdea74fab2a73478bd7d65619393d29823f1c645e196c122ec70bf" - } - ], - "id": "6d42221784c78ef9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Sm.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4dd2c5b4a4a33fc9deee617647ec2c60d72d3f1aac08582daca50b1c4d5458a1" - } - ], - "id": "5c84a13fec31e031", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/So.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "50e8dbbe60da595f7207e48d9b99a24201689634b9ed9a8b5632b19b788dd1fa" - } - ], - "id": "b4fd7152bd8c4dd9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Z.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8f22f89726f4c6aac64d858d69d74ea3953a44828970841ec197cb101f775134" - } - ], - "id": "f042a1587c686a0a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Gc/Zs.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3b3b188c074a5e5787af18736320ca9ac3abc017e4be0c1fe4f8d24b816486d0" - } - ], - "id": "fffd0e715107f7ee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GrBase/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "858631f153bf6979519f4355f4bfa1433eff98f124181ad786979b6bd71c71b2" - } - ], - "id": "dd838ed2404f53c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/GrExt/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cceb67ca9fcaf0e3d138967fbd57dd9753c767c3d8fb2c3f46fcc4a8342bdfd0" - } - ], - "id": "3f63f419ec5e2474", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hex/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e67c1222cf3f49d5ad0141f4dcb1234f7dcbb80239faff8b9d38ca9967c0888a" - } - ], - "id": "6175716c26cdac6e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hst/NA.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "302aa98fb73c38792afe5d955ab86c818452f4d1de0a9ec07cbccadf6e1b08c2" - } - ], - "id": "c3498d832659dbf7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Hyphen/T.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7eaf74aed3b8bd3fd59bb8475580d1c51fee3cb3d88c32d1373a6a67ada2894f" - } - ], - "id": "ff78e2d459f48aef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDC/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "779c76daf2f28256ec5695180aa98bf1b82f244cd311701971c795fe7ff4c84d" - } - ], - "id": "d15f96fc0d631df5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IDS/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e6f1dfa7de801730b53b2a80e020cdefb487a165e50edb5eda59c33741bdaddf" - } - ], - "id": "8ad678ce406c4ce5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdStatus/Allowed.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "86820bf4098e482e27724535d7e83d2c734bd345a90a6f0712213b11e9187d9f" - } - ], - "id": "df62e7e3fb421ebb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdStatus/Restrict.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "587dc721d96035195ea73f22613192b73d673bf430b587396a25bf20d1a67b0c" - } - ], - "id": "821067bac3022924", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/DefaultI.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f6ea17381078b12b2eb42f5d5235d7e7504ee96eb62647b458367ac6e16b4135" - } - ], - "id": "048d04071c3ca586", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Exclusio.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd01c6bddb16c6cc0927d73f8fa2b69f78f03880baaab82959ce3f0f3f39b664" - } - ], - "id": "b7a6ea64aeb34dbb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Inclusio.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8415ac1126c71435be8cdfbaeeea03b42cada58d9f48e2bc1281a901373d83b0" - } - ], - "id": "c06bf9345383fb40", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/LimitedU.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "815bd410a4fada1c432133462792c2081b76d5f099224f685929664261951e51" - } - ], - "id": "bb7ee0815313b113", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/NotChara.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "389124c5406cf666b9a37d5678b64d30f1fedea1c207b7fbf57e707485318c6d" - } - ], - "id": "58a63f461b9e6a23", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/NotNFKC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d9983f3631a5f80ac8f6710c1b302acc58931e29f030025dd36b98fa14a069a0" - } - ], - "id": "c0ed6e2c55a04cc8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/NotXID.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8290395cca9cd4012e374a93d008194b9deaccbd457147bc96c7693f1aedaa99" - } - ], - "id": "6762b72695d9c312", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Obsolete.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4b4772d8a32348c7599a048c70d4c3165b634c21796424d13507d0492285d62d" - } - ], - "id": "3ce7d6d4a1d59c4e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Recommen.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7b2be062384a0a54cf7b9c0d712dfc45280e42168a695f42f87c2195b5f9d6c2" - } - ], - "id": "dc7945c5bf4ecd6d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Technica.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3bf5a734c7bf0396fbc8300b3cd7b992810abd0f29438c9e9323c513108dd596" - } - ], - "id": "54fd73fadccb9061", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/IdType/Uncommon.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a80d266da6def423a9e5c612b65983997d68cff6c05cb1b86a12ea62067a372" - } - ], - "id": "c4fae40d919d4de5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Ideo/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "63c3916cad32c06608d8da01f0a9a26fbba280ddd76b3bebcb83b8383628b6ea" - } - ], - "id": "e200a3ff3e48ef37", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/10_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e352850285d2ffc8aa0947b12a002207f3be12562704264525f496559cf4e5e2" - } - ], - "id": "99948a166b285e57", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/11_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eb99d608ca16b7a1f2c649e8dfb329268f6680dd8a2f2bc44e34680b4138eba5" - } - ], - "id": "5da90b8342950d99", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/12_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc35579f1577fde52f806b513b9179b711241859c1fbf6689dc9371656a56e00" - } - ], - "id": "0f83364fe2d3d527", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/12_1.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "52769718ea911b8b52d1bf7fb94e6b7303794b18d231b1dfbd0f9627a17473e5" - } - ], - "id": "3e3d876d894a10dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/13_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ec778ca9798af794017c2006488c1f8855ae191e58fbf6374459a5f3b3e561e6" - } - ], - "id": "61d737e60c28d169", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/14_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7930812172d05f16341df2a4c02f86d434271abfb3786a0fa0124317b1383967" - } - ], - "id": "6c9b7a568f9aa570", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c8f0d95a98ab681442aada0c2d8ca428cad1384f4dea0db7cde86e4e46bf915" - } - ], - "id": "78f308e47af41b8f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/2_1.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eff20bb21fce2fdbbed27415afa2c0b5ee06ee34dcf3b1c8e6e6020d0b1b07e4" - } - ], - "id": "62df5e0f5a8b8c06", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1154050e0a2616db323027d426c153dd0919ccd4ff8a350713547dd12cf488c" - } - ], - "id": "6edcf73442503553", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_1.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24245896b69f16329bf4bd9041f421889bfd22a37e9c0488313e0a123e932e2b" - } - ], - "id": "562d108e1e6adf2f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/3_2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b81dc10ee5f8bbec02efa7a6a632dc86fc2be95ee224c6391d4ceaa22c3591d3" - } - ], - "id": "747bb234b0f6ac60", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "584a3aed1ca43df04798e0da4a15442a68a790631e5edfec42f0569e8fd5bcd6" - } - ], - "id": "6026781700ab8966", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/4_1.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b013ed02e10321b107fe92f1d36bb7fcd2a6459d1b35e1b2760e81f21e88b5ee" - } - ], - "id": "c4280815e047cc15", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e7f31020e135c278a586b10f7e227e8af89309412aee4af9827fd204756a0c60" - } - ], - "id": "8d86c75ec802339c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_1.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a8f59eda2382a1308e0c4cff5f3aeec192410c0b3680aa11a170abea3dac59c" - } - ], - "id": "d173df9f7ff5fdbf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/5_2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6670c964521ff0c910cc7e82dd61e3a9c3bae7dfa474097af5543c5f48978699" - } - ], - "id": "151643df4838496e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "92cab73f57cd9233edd0f790e0bbb2de736c10159fd74154647e43bd4bc52854" - } - ], - "id": "33e8fe9d32d59b82", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_1.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5af0ff16ce1422405c580e6c48fda7717a188cd989f3e3fb87705cd297a51e33" - } - ], - "id": "795331f4c0a5fb39", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce09440e44ea10a3e12cb942e2ca38c320ba7091ee03b3a9497b7b012a56d6c8" - } - ], - "id": "e5cf03ec348fd8b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/6_3.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4c5a6a9e56e906c32e41f06b82981fd9df649b0a7db6883a3b4b1681d0da68d" - } - ], - "id": "4b3d4bde8c773dc2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/7_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bcbdc6ef4acbfd8493315acf5788e9713f771e4e60886f5ab905306db0475c1b" - } - ], - "id": "f18c4030415e5727", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/8_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0bdf1efc6d92357220d12dc75b7d48e38f593a2def15263d2ac6af4083663b8d" - } - ], - "id": "aa273ee996154730", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/In/9_0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6ff960fb0c41677c37dc33c5b439c10af005fd2756a6a62f2f31e411414c0e24" - } - ], - "id": "6c15b5035dc610d0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Bottom.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "348d42a635b5263117b7fa9bc90be236337939698d140abee96214ad7ddb3ff7" - } - ], - "id": "b5ad18f797b89698", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/BottomAn.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "36267331b32e4dfc29f7480f51b2032805ee68716208fd8c451492576e4e0f23" - } - ], - "id": "f63a69a9b4ef384c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Left.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8541ec43e9dc89bb3450daf2ad04dc2c6421372aca17fe1c889db5617b94955a" - } - ], - "id": "d6a66ce8a1ba7da7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/LeftAndR.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35d17dc7ff347f957b53416319a408b9c3f396ffe49939d452033c3e92d83a7d" - } - ], - "id": "7c62bc41fce5e61d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/NA.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b7ab66e4b100ac9f44a887a6e8caa4e6e29b1f20f7ccfff0738d75e3b470d34" - } - ], - "id": "c5be869a11f7b1d6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Overstru.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fd02f7f48a57c97fbd2d99dfa084dfa34fbf79cbef33ec7c27b6432482e2364b" - } - ], - "id": "6be0057305399148", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Right.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "99d52d75a89019b2c9c0235bd6d846ac150f0c729af893da1e2819dde03d2061" - } - ], - "id": "e2e1091a0e56a9a8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/Top.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f22b202bc56faa785a0434a5361cf06a1e7a8710e175f1ece962722f6c7500dc" - } - ], - "id": "ae6920ac6e5985e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndBo.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e52da44da0720ccb5ab2cabb75cc10950d74c65abf92d3ad166224ae7db7008e" - } - ], - "id": "f2127d24975182df", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndL2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3249a946be685afddd3f13771b85048498958dedbe4fb11f00683a00948f9842" - } - ], - "id": "968d346e26a47d7a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndLe.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e6cff947dd0f8c3cc0ac51a6fda7fccc45777ae303af7103e027068bea4caf66" - } - ], - "id": "6e603b63c47ac850", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/TopAndRi.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "252d3bbd0abda2568a6726cefdd5a713073b81d1852145ceafc2ffa370e310e6" - } - ], - "id": "293ec06869cdf7f3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InPC/VisualOr.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c3f221ca531c533c0c0552b2961645cde2d3b7cb708cb2fb9f03284d4e6e5757" - } - ], - "id": "89e93f47dcf1858a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Avagraha.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5572e29ecf032f103a6db98b7cafd3d88b7119e7a3257811fc95eced9f8ee269" - } - ], - "id": "431be311e8827164", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Bindu.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ef9fcd0408447e86b7314af7615e4f26ff78c5319c10cca959cc53dbe7c63d8" - } - ], - "id": "7f6d6bc7e36e48be", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Cantilla.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3f9eb5f6e93004c25b33341ba396632daf69e030445901cf871d7dd4c3325fc6" - } - ], - "id": "6228b462a387fd34", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "747a61f0abb8391b62bb0bae45b77032a014afb19e2454388d8a827267cd3a1d" - } - ], - "id": "bee4169a83049d4c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona3.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7da6a39c4e47f7d6fbfb5e722976c1ecacd47eae4b228333ad5a40877f633c16" - } - ], - "id": "5bfbf823b2239782", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona4.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c7d5a164bbcf89d63585839c6c200187b2dce5be608bd34acac153bc9a93ef12" - } - ], - "id": "8b6bd0cb86910ecf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona5.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "91bdfc7e5c874e5ddb7d3140f215036625b799fe21f07e29d7758cf994e8b7f5" - } - ], - "id": "ad4ad0227e9c5ba3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona6.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cfed11d64f08834aa73ff4a92a78078b9d9457e76c1c002c88ba793c0f43d045" - } - ], - "id": "9ee6d13ebf1dab77", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona7.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "558787ef690419c17be27fb6bc0b86f9ce4e3e67baf9a647d29f02706ad0d1cf" - } - ], - "id": "cec2e1a655c62fa4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consona8.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9ec45de94b8208cdf6a2f84134e61d9665d266a6b74b0e63eafca513caa8b776" - } - ], - "id": "36da274a3aaab084", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Consonan.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9fd0c850edfa7781db6635e72047ae39135f35bb863044722c789011a13ca891" - } - ], - "id": "f0480e3ca84d77ec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Invisibl.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb23162408f21a6704f918076655c11b5f283d4e57547ceaf1298ebf3d84c25c" - } - ], - "id": "f6121db7b0ee4840", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Nukta.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7fb83986c4dcc78993b76aa6183ef1f811fae3361c4323b39923e0c2cf46f92" - } - ], - "id": "18d19e86985a33d3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Number.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9267274bbe4336a6785c4d9425e8b6c4db2afcf74a0d1ad4ae4afa26e68c4331" - } - ], - "id": "66aa3e42b61eb1b5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Other.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ee21e05e0a7e06538200a37bbf4def01a95a10eaa21e9cdf392daa34dc9b5b24" - } - ], - "id": "4b0a51a8e16b82c3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/PureKill.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c40595c86b85754949bb63f7859225d678280d5b6bb5343b1474dc5265d83969" - } - ], - "id": "5aaf3f7c5b47c869", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Syllable.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f7022c0ec05498bcffa8fea79570d3c1ad6244a7e7d5702d603dcae06afa7a7" - } - ], - "id": "dcc22d9368b11380", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/ToneMark.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d683c0e4657a41d843172581fbc44a3a1912ee00d4026b0f086d2c83d00d9cb" - } - ], - "id": "679c9740661187f7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Virama.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2313c295f98f30463f1a724c54ad225a6f2e4a286acdc11f948982a30ce42b78" - } - ], - "id": "97480487b5dcfc29", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Visarga.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "747d467ba6ac49df7104a37cac07577c6d844384d175c4d76dc073c5cc5b8a7c" - } - ], - "id": "835d804430ad2eca", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/Vowel.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8edc313b4d1f888dd28ef76d58663046fd8a4e5102f0e004aec8e2fb7c93c138" - } - ], - "id": "4f76f5351b495791", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelDep.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7b558f2b7fbf834f96b125798a0b9e2e0b84bdfe89d408c8e120f2ad4c049432" - } - ], - "id": "79135101b6f48956", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/InSC/VowelInd.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1217b76117bb401c296c5d5690e090ca72d51003b55442176237c0417c73ae3e" - } - ], - "id": "ed5c572e66a685f3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Ain.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7e83bd375ec22cd496f1ef1a7921432581bd8340905f22ca4b5559448d52cef" - } - ], - "id": "25c6e40e54a0a5c0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Alef.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e6a8f0fe6b723d739a329975d12f910f88b4f2b1cf33ac44015bb0b9e403e005" - } - ], - "id": "bda54e0755948058", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Beh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c5bca8aa537332406e6fed43ce4e13f6e8d3fcff95cf0b099cb2a02ccc9c8fd" - } - ], - "id": "cb066e482524b0bb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Dal.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "19b6d3c993ef4e3a90f9e3b445210c142c74008a3e5f4184a0ec525f9cfd3240" - } - ], - "id": "b52061ec1bc3dc5d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/FarsiYeh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "be7a0b2f400cab8100a993ea943c201d079237d4862039e09b03dbc236f031a5" - } - ], - "id": "82ebf707c1082738", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Feh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f681dd0e7714f8e9f2871733d5126af1ee5e0926dc341c58acf3965e5802dd6" - } - ], - "id": "75792b7bb7f6e654", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Gaf.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7259478dd4f68edc8fff12d6ccfaba6aa37db8adbe10e4c8e3048105d2fbf65e" - } - ], - "id": "0a86c7cc730849de", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Hah.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b7b3763272a4972c4ce01daa32dbfb8c64ea5ef008f851f2733a3b115a8e8005" - } - ], - "id": "57ab71643612fb7f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/HanifiRo.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e880227099a0a5ee9051c89f0a75eea1fb965e2a61a79004b4b59d058c601e60" - } - ], - "id": "732ab2ce86e533e6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Kaf.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "46a6254ff49a4b36bbddbb45c3c4c3f88c02d3f166ccfec286ecaf4790162e67" - } - ], - "id": "3e043a485b294c46", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Lam.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f124d4b1e89af5fb9a5f4dbca79fc0d799dea48226e9613d76524342f1f0a72" - } - ], - "id": "0d655df1ba1bb943", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/NoJoinin.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "acd423ff807341239a4b14a36030a8d8af531962464ef67a625470e8f729b9f6" - } - ], - "id": "51e015b21e33fdfc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Noon.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a41208e29f32bb6d53346f616866732f209e4908d72182417e34f5ad5a6c4ac7" - } - ], - "id": "35a121841ad48bc3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Qaf.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04bb6464fc7b39040efefe747d527d5d6c4cc333e8a9952aacfb26fda78dbbd0" - } - ], - "id": "cfb632b6195532cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Reh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d055048a791b2c7cc173d70b4223dff25a3d1446c4c14d6d9c32b371ae91dea8" - } - ], - "id": "4870afcea6b35269", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Sad.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9d5ac59a2521404b7233fdb956601eeb3d254c1028004babf3a0310a316d743f" - } - ], - "id": "6efe6de95b992072", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Seen.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a790741f25d84f2882dded79dccb72044d281370605911f94f34c8c09e32123c" - } - ], - "id": "419a28628386785f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Tah.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ee9dc4a912861c3cacaa1b571eccf40ece2bea7efd6931fca27976d259bfcdc" - } - ], - "id": "022ecd141ddba710", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Waw.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8107b9df416506b2492fbeba42b28e018f6a6ded720de37981413897214385ab" - } - ], - "id": "a01c8ec7749bea7c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jg/Yeh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "570e6482d54fc2efa2a26cc5637ae0321a39efabe3e1e6eac555edb2dde60b1f" - } - ], - "id": "fed9d6db62038718", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/C.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "373578b4e2b62fc6e4e4333b971c69fa6f9a0312c2b6463c59b95a4dbd2696d7" - } - ], - "id": "94251a9e9c92e5b2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/D.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ae9e8efe86fb8cd3a137f217016bac88ae7c751918350a58be4443e03929011a" - } - ], - "id": "f6fd8b53f516ec64", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/L.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "786d5743bcdede880649e68b851fd0196368aa1b739f72ca7a7a348cd20335da" - } - ], - "id": "411bf7f21ac0e139", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/R.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "81e4fd827b271afe17102f97584022f37823cd4d0a491843d61a4c9c6cf1fe42" - } - ], - "id": "a782f3e9f2f024bb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/T.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "60f5dfc5fa9c30f0a06b6eae3978f6cca9ad29c962c5dd20a77e3e88bd56c46e" - } - ], - "id": "e758b6f6c718f8c2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Jt/U.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d8ba9c26a0e1d3343b072a839a87521f49672b2dbe33fe646549da676b469aa9" - } - ], - "id": "d5dfa5e7316b7534", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AI.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b1b2c4f181508d1c3bf1f045f004342c0e68b46dcd5aacf55693f6e5a7c78aa" - } - ], - "id": "4d9df0bc4de06cb2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/AL.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f719cc701cff7ffe45c353650f149c3d37b79926226cf22949643e2029a0dcf2" - } - ], - "id": "4ba4b954be9f726a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BA.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "27e696fb6b1d0c4467042d68ea68384acd1065486f8c73d523b24036bd99696f" - } - ], - "id": "2e133940bfd262fd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/BB.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cbaa15510579af149222b5ee92ab988c379ecdd90adad6f0c7d8a18960e9cb60" - } - ], - "id": "12829ea9ed2bf34e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CJ.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df42797e37b7c4134ef4756871e844711a94972a04ccd09b74906304a9000fe2" - } - ], - "id": "dc0ebfa1bcd3eb86", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CL.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "682567870a5f2c2dfcb1b986cb6dc60d0886bf566a9bab278c0a020fa5c1c228" - } - ], - "id": "29bfe667f61649fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/CM.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f18a0e98499811f06c569616e3cb92bd5dab897434b65519580a72f0c0ba0f0c" - } - ], - "id": "eb2096bd9f30c988", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/EX.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ffd1321ecbbcedc24973c1377e8f30f608308fea775e73694437accec25fa57c" - } - ], - "id": "039bf4187ff1fa90", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/GL.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dea1c31b5e60018b710ed0cde9a1528531259554f1fcf0bf87fe7199e615e598" - } - ], - "id": "03c1fe0b11cf0aed", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/ID.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b2126c228fcad461f058a07db508807218d60f53eeb6f3c17dd9d630676a1b09" - } - ], - "id": "97b2e676d800e6b7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IN.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04f7903baa7e911223e0e54cf12b2fae26fca5bdcdb2d9e2449dbb497e77a896" - } - ], - "id": "ce0d70308a229532", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/IS.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dc3f58d86b1a3d247c91bffd93ab8e36d6a6a9b48a55e67314a9e14281ec44b2" - } - ], - "id": "c9ac37bc9db919ab", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/NS.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8ac6d0d34ca6d3535826c4d7422b2cb720c0fe977a877c0b91c3e522ca72a986" - } - ], - "id": "706b97e2389ba3cd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/NU.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6d4f68973fcbe3aa8913b72df2ffcfa5369116f6612163055a84390e594f5d18" - } - ], - "id": "b80bc313ef300056", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/OP.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "67ffd3fd0f4a87b41163ba4e1c95dc536149fee3bc21f7f7e6e58a528fbcc3ed" - } - ], - "id": "1638ae5c220a6bf7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PO.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "64d72804d7d213277d184224aff6462a0e2a9dadb6ad4d89eeabd48495f926c7" - } - ], - "id": "ce9cc34b9bb71f12", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/PR.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f730bb67c9d5fb451dd40c66fad64c47df46848f9d5a6685e9663008ce1d731" - } - ], - "id": "6c61440367f35605", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/QU.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7fcbee41018357d53b8c7e8dc944592710569dd95047ef236eeacd47ebe03cc" - } - ], - "id": "febf589d4152ec81", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/SA.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ff5d2d21ae6ff1d0165c26828ed3cad61f3cc1dc31923bb764e90e175d18c570" - } - ], - "id": "91c5d5157be67e3f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lb/XX.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b374f928724d6a9de60e1ab56cfb54b1aa2ebba02ea7c71a1965688f86a637aa" - } - ], - "id": "9cda7652e9b7306a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Lower/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd1469838cc28c5451af97f32f64aaa1cacd529e6d162e93ad1e79c5368bae9b" - } - ], - "id": "c0a7d9d41e596474", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Math/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6567c5f195da8a890cf3148068662fe3efeabca768a7cee206f42976b27b9b30" - } - ], - "id": "7a5ed2f5ae799628", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/M.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "faede37a5d51db3892a54e989d3d254bff47ba3ae7f15fb9f5a92c4d71980d7e" - } - ], - "id": "99404ed2d2bdcd88", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFCQC/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fa542ce6089f5faa1b6657bad874c46272bdbf4051bc9df5d1cd91d061af5c0a" - } - ], - "id": "1b07d6355f074418", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/N.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7bfcbbfc871ee968cf6f395e4189c20f052f3a16903d1601dbe64034269351e9" - } - ], - "id": "369c8ad50040309a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFDQC/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9e15302e8a9f659eb2f693e343a971ed73313b4ac0abf208007e2076d2777407" - } - ], - "id": "319785643c25c4ae", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/N.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "453eb317546f6d341d32ec9a383c50c2a3554ac96d44b3742de79bc87ff3f14a" - } - ], - "id": "a8c9618dbed4ff91", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKCQC/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4e747936bff0ff946dfab2b1befb40aab4f7bccae7d404608aeaaefd526d1ea" - } - ], - "id": "fbc2b27f7daec68b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/N.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "63f153f37f846acdc1a6c636de53c5962678b069da305aebebdfc64dda43a032" - } - ], - "id": "5ecea245b117aa1c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/NFKDQC/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2ab651ca104ddfc919c9f859e2dabb3479e2b1d34b72b108c5628109a0b7fe05" - } - ], - "id": "d1729a22b3f628b3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Di.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "795204001f5d1bc9370fd928f0d3d44d3dca96bb54464abf65b62b8b00306b78" - } - ], - "id": "9d8019a898c346d3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/None.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d094b812a2e37997af3eb8a785773847355f1494bc8a8da6ec6e5e84b0cd1a1" - } - ], - "id": "3aaebbac4f2e89c5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nt/Nu.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0f311aca04a4b5327dde598ce145e14b45b74b5ab3504c769c1769d0c9496a92" - } - ], - "id": "e47fdea8db392ccb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/0.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5757bf94d275be8a53318a67f38e354021afdb177444b2f900344e2339981aa" - } - ], - "id": "c847c58376b02641", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b309acb1c89eabeaee1f3bcfe1f9e8a9214b74022b419fc1fef31555fcbbf05c" - } - ], - "id": "7c67f714c7624a5f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3324bbdd76f5945daee7b2164666c80099dca7f6b68e48c555db9a1bc240add9" - } - ], - "id": "d995bc39e9e1e55c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/100.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "273871b02fc57393765165e2a3899a9c1dd96317bf512dbb812dfd8e66c0db0e" - } - ], - "id": "dc178351474c444e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "493afb0158f56e5d402d0e1e207aa572c696126c9fbd0aebfb225a86405094d4" - } - ], - "id": "6d3b6e00e475b3dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/10000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a129d5841433c7301d17629bd749d3813f928c9deca9feca2e3d2f23593a0949" - } - ], - "id": "32c0f38dec3cf1ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/100000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c945873ab14cdef50182cf96e2afc8e752907d108ea1fc1887924a782c9f98d2" - } - ], - "id": "11746737956192cc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/11.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7545f8860aab26cfa54a4fa4768f726728bd39118589ded53fce0b3ebd52bbdd" - } - ], - "id": "8319273fdb634272", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/12.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3524997e07bba09e9dc8894c580e4917808aa108a76a6f68044c98f92ed29df5" - } - ], - "id": "de4e28c3387f4845", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/13.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8fedcbc90c9b7b79babb1469f4230893cf00823b42110382048cde8a41d90c13" - } - ], - "id": "b0e7812dad2aacb0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/14.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "90cef701cfdc521cfefe8a039dc52d1a6b459dd89ce1d5cb1709a27f725545f4" - } - ], - "id": "ab3d850a1d45660b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/15.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "be5215ec285906ee5112ebd861b2c553df103c82b072640f9b84e42ecb80a19a" - } - ], - "id": "eca89530b8d57d88", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/16.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb828d5b3b048e9d16db9e6e2f21489fbb1f03995fa6af7c913398071418bff9" - } - ], - "id": "d15a5af408a51d4a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/17.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eec722dba262f3df0f0a4d26bc7fddd499a691ae7a51aa84964091e39f25ec9a" - } - ], - "id": "76593115aa3bfd94", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/18.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0a3a0d734b0afa60eb240a0f110fbee429fe6b7df07e06448c7a42ff21150db1" - } - ], - "id": "5dd42872e5041687", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/19.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6da6d4cea2a00a18aa91d173c58f8150ff9ffad2b95fb414fda15c8f7d008f7f" - } - ], - "id": "c45b3e63ef5e8892", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_16.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35182accd86e5f95d84f53425acddba49a22ab2cf642038de45aa26b4e8c0955" - } - ], - "id": "265504d2d4d4ec15", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "88fc7c0bd2b2d2fbe8804628ad7f51a062aa3f5f665a45173a3df4905bff59da" - } - ], - "id": "620ca4249a40b26c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_3.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca1585b0c33a4624e7d338cc6d2c2f71f4ace843a06c6e41e059cc9314da460e" - } - ], - "id": "fa040a632a30cf1d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_4.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8944f1ca91d64e35754b1a987a6587af142476554e13f12336705ef1b15f25b4" - } - ], - "id": "e01ea673e2665344", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_6.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "66cce7086f58187e7558b3a6f76bfa8aad3bad14c1438dc4a42e2917e26a5b90" - } - ], - "id": "fbe41f2981925507", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/1_8.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9f0486e09652e67878e8cc992293aa9ddc709247a9d207fc3d135651766f1128" - } - ], - "id": "c4d8d172e25804ae", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe7d14f83e8ac133c23ae58081a854f4feb548902fd2ec6c85e8aba201c5509c" - } - ], - "id": "e933ec4e3542f001", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/20.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "02a92366217368751655943718fa1a3a984ae1d75831bbe8d42bb1cf0dd2e49f" - } - ], - "id": "22d73b34de69309d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/200.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "19d6536479813b71faba6f3294a17361c9c85c85b1254a33abf7773716fa87a5" - } - ], - "id": "592467302361772a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef61765bf674f693ff372d31df17644f67debf6937fea142fe761c41649448ca" - } - ], - "id": "0cf7c11936a02aee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/20000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "318f47715e33b640908d9ae6e7945c21b43b761e88138fccbda03d3578343b2d" - } - ], - "id": "59e43bc770570e3f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/2_3.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "32e30ee4cfb5bb0afd3aee9fff745be47670bb2387ccffdd81857a552c7331c8" - } - ], - "id": "d8a9340a3c9c4027", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d0a6bd6d6f13947ae7c29ea71a9421b8cff1e8527f2c36ee377b3687c2fbf52c" - } - ], - "id": "2e48021f2fdce005", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/30.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ebd089b75fff93295d336527d8851bc052d3f6245b0cd1d7b0001e5b12626d44" - } - ], - "id": "eb78e921f4085bc5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/300.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c7a5ccfe11b29d4f873d6ddb282ea18754808766c9b201ec02ac0d1016b332b7" - } - ], - "id": "5ac4a699ad67f81f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cc6c6b17f04a89a822d7281a413eb9da327833a28ac6d16668757d068fc3cb4b" - } - ], - "id": "7be07c51fe6352b4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/30000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "96f46f5280f57a393da74b8ba8b4035e475962c9011ecd0d1c39be4563bdd475" - } - ], - "id": "359de2f712772be0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_16.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "25a48fce0bcb63d805556d025a9d7c5d19b77877afa7cf5c09d7095799a0452f" - } - ], - "id": "13de6f7537d0f67b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/3_4.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b27e6c77b3d8fe17ca970d54e472217f537507d83c1c7e870cdbed0c9070ab43" - } - ], - "id": "d2275cdbfa91873c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/4.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d269a5e15fa423b3b7348cc35027638566754236b1f8399d28dfba8b18927d28" - } - ], - "id": "69f769dc07068486", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/40.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c9bd1e050f3dc4e47a1da6daac7471dacf032d709cf300863c033a3d3fe0cf05" - } - ], - "id": "5d4b6f65778254b8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/400.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "34b605a0d74acffe04f5514646012594bc62ecf1b98dd5f2eaca01f169f3dd8e" - } - ], - "id": "8ee634fd46e87504", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/4000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "253e903f390aa6a5971cea0dc166fff5501751c0bf0fd56c6049bab341c0c180" - } - ], - "id": "929dccbd0e083521", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/40000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "66d835191fcef2f991cbaf1f3976eb54cf91ba13ded4fbf9cab72f21f9d14378" - } - ], - "id": "525f7be6275f58ee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ec15288b3f42c72f8f9e535ac0de01eab9224f7c371cec1f413ae5a12a550ad6" - } - ], - "id": "0f0374de34a5d285", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5464255d3994771556d1e98eb26452b24e0fcbd8cb8c877d8d9b7e2bdbcb5558" - } - ], - "id": "44e3c62ea313bf9c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/500.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "16163ec8199e846e60e5dfea80555bbf086d3b3ac54b68f4a71f462fb43f64f7" - } - ], - "id": "ecfcec4b34f5f647", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/5000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a64fc51280a96548f46e75b6badb291ef2bcdd2984a90ee407820a552629e96e" - } - ], - "id": "6accd490f7937efc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/50000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "635f712d29f4cbf35effbcde4d295de834dc335b71117a38c20a0b783bd28bc6" - } - ], - "id": "2c8f8e19924e9541", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/6.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b82f6c7fb91b89dbcb6ec84dfd706c8de10a0f253606f797ad8d8424bda8cd78" - } - ], - "id": "d29ec878f53b6516", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/60.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fa6ebb09ed4a61830012af212e02a23cdcc0347416d5b8adba0bf8c38387bb89" - } - ], - "id": "d9facf1190ae42ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/600.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e29a15062bd28d3697e6d58db9a7f56ccca3254dbf1a2966c491c25baf4c1730" - } - ], - "id": "e1c79fdb8985b869", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/6000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "612c9d70c40d7502c028fa4775ec234c7d13777215ceffcea86acbf117fac817" - } - ], - "id": "e03781a8d5ea2013", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/60000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cd233b8c21388653a120e67cfaa7f4c4831f515c1bce07442a90dae622b746e0" - } - ], - "id": "aacdb14debe27cbc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/7.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d8a2984627c48331debd1f1d30b7b5d99ba155b192f4c0ca5bebb84b4929c281" - } - ], - "id": "2e6dcaca4dff9c97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/70.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b89befadd9d5f0da95f1078f2592ce8672788f93328221865f4dd43b8b9e74e1" - } - ], - "id": "11f7856c6af17f75", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/700.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3abe2c569d477a5e7cb861a2f6246b657bb1b2245c129cd8a48322d742469741" - } - ], - "id": "3d0a2a79d87c798a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/7000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "363e800c04f60e7073304d0f4d2cb49d01195c1244d508096d178a0a0410dfcd" - } - ], - "id": "14bda53d817e9824", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/70000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b1d1481e243d7e991a37938e6884a6118849212bda81e880e582dea6cc53b24" - } - ], - "id": "96e78df7c9818354", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/8.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e92f7fe4e93645ee30d21226e45cbe8d4e9cb9498fe6ebdc1682b60d640bd042" - } - ], - "id": "af031df93f5c1676", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/80.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c3945b52e738e5aec144bc3f698a5a3e9a83befbc6bb086396ef14ecdc5d855a" - } - ], - "id": "b5b059e57f99a7b7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/800.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "afc31e1c0a8bf8dcbbc5312d98b72d0b4633f4784e98cb3ac72a6c3df4167840" - } - ], - "id": "3c1b1d08f515f463", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/8000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6f3d9487397ba6a54472e03e461ac44f175a5d28dcf0fdeaaa6082d607d03ed" - } - ], - "id": "ba5a3545bf94d971", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/80000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0972d11a021d9051b5698e805dcc629c1538c7fd2c93bbec7a76c4e6bcb8ccb0" - } - ], - "id": "3e7f8d71f95f0f29", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/9.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "982951ac19a91ee6030a8cdf5f0f5d191259cda1eaf9b9b4a361f802af34ab92" - } - ], - "id": "60a459ebfd5f82a1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/90.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a18847e7b2d563e006b6b31edb733539e8c24680a8448e888528c4231e47de24" - } - ], - "id": "cee185d8b1f2d67d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/900.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cba45f8959c90fae0f969bfaacc76bc43df9bb818cdc937cb462b4ca5245099e" - } - ], - "id": "6c56ffac863dfc79", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/9000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "81ba89dd6a65e9c646f21dca15d81069b0ab1bb639d61388108ba71566759196" - } - ], - "id": "ae2cb33f84325b20", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Nv/90000.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6785edc50d410eb93b7b49c04d8dd542afec49fa69b2dd1009f8ff03968f6a36" - } - ], - "id": "c194daa51f87bfa4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PCM/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8d5572cba2fde1b1f13992e077f7474cd504a7ccc2918150e5189cc251f490e0" - } - ], - "id": "6c64b6df5ab0502b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/PatSyn/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "058dfd7965ca269ea9b7ae8d742f060ab39bfba1c2fc30ce7bae1fc070693c63" - } - ], - "id": "aa076fa05e9db3f0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Alnum.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "60d0144ac7db8159e80ef0ce56bdfc5a3e4b5afb775433b7c107ce45232463a6" - } - ], - "id": "28fb3aec5915ee1c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Assigned.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "85e56efc15d5faf38cbbf8a270d27023b309908b7460dfa1ae2e5f423cbf0353" - } - ], - "id": "672b2056cbb14421", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Blank.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "619e156497242e08d23531c1cb1e3878f953c202981cf24bbc0bfc0a808a5c30" - } - ], - "id": "9cc86f7fb33a7130", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Graph.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cacfbf15dde3000f2642803927e83b726870db91be2257b4560ba71e1d596c35" - } - ], - "id": "56bce9fec230f06d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PerlWord.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0d56a0ad11164905fd18fe89acb93a3868b79f069a8e4088cd6d5eb5be1d92d7" - } - ], - "id": "028a93e3109d37d8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/PosixPun.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4e4e1ab857e953b3a859ff44ab4701738b23266ae9d150270fd42f2a388c8d56" - } - ], - "id": "b4249763fac3402d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Print.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5abec94276fbaf503d149e3f79e42f92b7bc11f6e5c962363c79db541331c777" - } - ], - "id": "d0d21c50424f7f7f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/SpacePer.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb6883f4607411e3feebde903d680fd4ca0ebd6251fb12036549c3cbcf852931" - } - ], - "id": "cbf60f57860f1c77", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Title.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "48502e8fcf400ccb74860569f89477fb77eb9fc01f83c872cb050ea3a2097256" - } - ], - "id": "cd0364c8aaa42cf7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/Word.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fba0514fd68660d0c7fe25191086f0608ca9ad4ec4bfb382ee2582044caaa72d" - } - ], - "id": "f9c90798bdbbd013", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/XPosixPu.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "25870f9f1d2f9ebaf45b0bce88dc192876db6e9b73e98614b583d6ba96c8fa2f" - } - ], - "id": "db9844e4b861f1e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlAny.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a5c097593459b0ac598aa24e12f44dd75eb7f4e5ca826467dfcaae6fc9dc73c" - } - ], - "id": "c2df502de318fdcd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCh2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "849f50466385f9cc68fc4573f7516febdb6c9763d0113b5db76b8d4d9af375f9" - } - ], - "id": "bdd3d69c28f09ee8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlCha.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6bbaa9557d08a65ac6b5bf09ddcd63e5d2a5ea9673bfb2da7847b325db904d1e" - } - ], - "id": "4f37729ea655b0fd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlFol.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "90cc92c384b29f007d52547dc174e26f2fc080e7c714e3a9c0783e133e89570e" - } - ], - "id": "ce554ab43282a7f4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "46f2c1bffbf94f523e1061db8bc13638201655d1936e85000f9d853cc0c18826" - } - ], - "id": "26a07d131e854ff0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIDS.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6724ae83323dde905627e4f868b0863a679af2fb42f8e38a720b4cf3af220bfb" - } - ], - "id": "9177a612f0609215", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlIsI.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9192df1ef6775c1d53954392428ba0d40dfc67de483bb145e1ab7c8787185db0" - } - ], - "id": "eb1fc85fd8f175b9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlNch.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7c5af8e4196362fb137a83d6fe9e8f37109a95ca87211d5c6ce2cfceed2c5131" - } - ], - "id": "84791d1cefa26078", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPat.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "85d751909ecb8a611b03560b98ecc9f3fc6612fec6ca1fee19d5598e5e0157bb" - } - ], - "id": "9fe1690a81a180d3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPr2.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7cb776933eeab7da3153d0d51213f18f0efe67678d3f9ae01f4a64c1bfbfaef8" - } - ], - "id": "73e546eed26a42ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlPro.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a9468ee06511668bcd38a3a0ef6ff9d58a7fc5eba38c04a628db6dc23915859a" - } - ], - "id": "e4bf2d4a509a8db2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Perl/_PerlQuo.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "96efbf213bc3e40b27bcc0be33604a7343c8dc918fb9516caf69fddd467ecb5f" - } - ], - "id": "d81f7b0044ece1d9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/QMark/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "13304994b6cc3fae8653cd84cbdfd24ba927ce36e75584404feab2eba2230447" - } - ], - "id": "15be135c66aebf97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/AT.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5638791ee7872e4b55de2ae28f64febfe6980ed8fa94552e0b76ba981a539693" - } - ], - "id": "6b557f9919571845", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/CL.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0ccdbfca8402559e465223fd93880645f7bae0291edd83ed60a9f1081164d3d" - } - ], - "id": "88fe78beeaec9bf0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/EX.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "02974a34b571bb337eb7de7f4a8ed4e9e4a57eb424f8a260770766508f73c834" - } - ], - "id": "3e70f755fc65a161", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/FO.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "322a4f8313669cd568eaef70070dd48fe3f38b5d698d4ac4293d8f3ee7e330ef" - } - ], - "id": "28f7d064fe3660e9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LE.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4d9c7dd1612754bcedfbf426da25143a0e92c106d092eb34e1818dac1d9ccf00" - } - ], - "id": "fc581de6309dbc15", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/LO.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eef1a9b704f3c1c61ea8e6d9ce30e09abce68e8264a6c4f52c99468fd6b35d14" - } - ], - "id": "4d6d26a2cbd8934d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/NU.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3c763fca394da1dfd44e6ca6206e204f45328feb9175dae72c2e72e857e54e98" - } - ], - "id": "2731a1fdfc1e8367", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/SC.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f75a5d3a2e726685b318e487c5de0f2306698c925a373c95a8a578dc41ed8f3" - } - ], - "id": "4ba28fb73b1291e7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/ST.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f3746b02dde6ff5c706f07debf97e4b2e8e2f95aebf2d75008e1e00cd175bd4e" - } - ], - "id": "6aea4ab3b2bc4403", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/Sp.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e972998b6d38f4a3098183fd1f9e12c0aefd6fb453a2c980d0693595b97612d8" - } - ], - "id": "7718492e14cdf5eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/UP.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "535c9e379a411eac7020e74beb722adfbe8eaa0c1ccb7b3dfea60fbda360e6c4" - } - ], - "id": "41b503cddb5e0283", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SB/XX.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a8f72ad979a6f8fadfe43e28dcec855d42bc1abf4939ca6300229ae1a8a8fe2" - } - ], - "id": "86950d9570f0d6de", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/SD/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6893c39f8ac5bfecdb0c98db6c7a4180cbf6844ff96e47b87ae8620e80d4438e" - } - ], - "id": "ad261a857c8aa6e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/STerm/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a34bfe02e066db7fc536fa8f3130569948311cc8273489c5d69a8abc033fa861" - } - ], - "id": "d2c85737cf13e2d4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Arab.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ac6dd323180494f5f1da70de1f813dbdcadc729939676cb20868e3394a1d20b" - } - ], - "id": "a0703652c683538c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Beng.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f7fe49c4831fd8ae69253f63e1214119dfe97b02e17a57bbd6c2febf80a89a26" - } - ], - "id": "aab7a87f6cb7623d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cprt.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b3cf0078ab9e67be4fb934be463833ae70b9d50b9775893b114c947fdc8fec4a" - } - ], - "id": "939dee2e7ab82cab", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Cyrl.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "92f9b377a329622dd0caf95c0baad074caa59636fcbeeb0c7c7870e86d7a4fc5" - } - ], - "id": "1f80f30661f67a93", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Deva.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ab3c68bad99ce81b6f78754663ee3fc75250c00c26ca2966ea19113fec7cbbcc" - } - ], - "id": "4853f6cd9eba805d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Dupl.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "48e20ca6e50b7329d4070adf0d770943220359332baf518843f128adee576871" - } - ], - "id": "73bcb43bb301d8b7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Geor.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "214691fabbf8ac8bfda64687ec9ca8a4fb0b9026619653ca1d658fdab4de4ea7" - } - ], - "id": "3b12b4579302e8e4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Glag.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f6fe4fe01cc64149db38e606a1fe4ba44d04d1d5bf9128e4e0583b2c0605664" - } - ], - "id": "eb65eda5f6e22073", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gong.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c37eb6b04df10473e21de1ec93310158c60b20d7cb255a80d1378cd97c01f3cd" - } - ], - "id": "bc8620aaa908c4df", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gonm.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f494f913f6cbb6573adda1a3dd9fcf979c15a854bdde17181e5101b0377c264" - } - ], - "id": "546970d937da991c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gran.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "81b809b9e9cc2199e42ef01a79b5fa3f571c46ae54dd9b56f9d0d05a9bfdd609" - } - ], - "id": "9bdc048abe76b9db", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Grek.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b93349a0104bc0862b2fda4c3e830ac63a3e076c85ba23b11beef440cdf9465d" - } - ], - "id": "8c4abff7ae8d763d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Gujr.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "795ca39d895b75f595cc598692df812df2b3e70c0fc55832e6d603dd6248b5d5" - } - ], - "id": "b0cdc233af7ae31d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Guru.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b1d44d54dd7051ca7853286639fa9651c9a250758b050fde424b9ba7c4247d84" - } - ], - "id": "1b730038cabf6681", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Han.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b2464d7388ba0953faacfc73cfc71cc4d1a1b88ecc76b0b05ff9db3daaddf769" - } - ], - "id": "9499a1afcb613040", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hang.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b23b09b69f9b84bd619d562a8f4a2f806b94b1c4ff9e84cd00b59ea52231284a" - } - ], - "id": "d8cb5a1fb9965cde", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Hira.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "73354b599aced96e2fa94ffbd67c60fa1f0ddf25dfb42a59a4e461d480962513" - } - ], - "id": "f551f0f2db1288f6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Kana.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "51d0df5dc48066b33709added99f354e85de886d31ab79e6e4d533a226dc2607" - } - ], - "id": "bd040175c7061c47", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Knda.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6d91f7d7d56042e99f73749b81b89801ab3ae3d4931846fa01a15083ef2a630a" - } - ], - "id": "4fa4eaefcf55f98c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Latn.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0250c9fba46dc00cc6bcb913310d123d7f495321bd1a054889ca33b0f3330dce" - } - ], - "id": "3baa884be2a7bd41", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Limb.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed8c4148b5cd8e45c207aaa6ac5c8514944dd2cdd6e97926b5452ac1b8c0700b" - } - ], - "id": "d86322f83a68e941", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Linb.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aab361fefae5981a5ea5a5b57dd3abd31b11b3fc601b92b649bc6e328ba0c8a9" - } - ], - "id": "5cafa2ada565f395", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mlym.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "20682dd5741c8166dbdc07aab973061b92c4fc4405e928880180d018834759b5" - } - ], - "id": "d074d3894095065e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mong.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f8e7f91639c0beda7996985ea6321042da3e5d490d469fbed04efee1c04257e7" - } - ], - "id": "764c8f2ba6569be2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Mult.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "843ad757ba6e83fb2822cf602770ecbcfeb3606049dac64470548fc8945e97d4" - } - ], - "id": "dbe4073ca4816624", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Orya.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9fab08578873254f5097703bbd00f030e2fc0fbcc15bb531b57546928e2e6a04" - } - ], - "id": "0f0c2f65751430e6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Sinh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3f7683f40f0d112609f37262301332e7288d8992d2fe81136e789490a0c49d7b" - } - ], - "id": "5572a43b109a9420", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Syrc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "08e3cfb538af6f022b23b4917f0cf4a532d02192719b3dcb2e5cedae08bceb5d" - } - ], - "id": "16bf2953b37e8565", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Taml.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3c71e9d8ee7604823b46afc7335df0c4d33dbd589e1ef723de628ea5684a7706" - } - ], - "id": "601e5f123b473fec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Telu.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d62561d1ff8fe8c4bab46d621142768a590d6926db83e3cfb051acc0fd39327" - } - ], - "id": "4f6e2565510a810b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zinh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ddbd8b543da0070afc7855b964eb6b8799909ead8e5d573670083abbcc4facd6" - } - ], - "id": "4bfbf12098e19c9f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Sc/Zyyy.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b828957b95fb7092afb371904e91d863b9ab4e35fd237263b44b0c5d8b9ee669" - } - ], - "id": "d0896be60c3253fb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Adlm.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a8afbf926b5a9e67d9ba79f1d1abf04459bea420d6b64e40ccd3f1156993daf" - } - ], - "id": "5cb1792aebc63d04", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Arab.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dd0a5301c67e9ec6f959c2ef255c3351859ff63f4fbcf659ac1f1fc392b4dc2c" - } - ], - "id": "e0fe87f0b71bfa36", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Armn.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7f42575db94bbe817da7ca1af873c9d48ab7028d22484c4ed25ad03b297407e1" - } - ], - "id": "397bdc8a227c5615", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Beng.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dd3bee3872f1bf580d6b886bfa40489d3d2cc3defe82e382e81fbf589ef6c22f" - } - ], - "id": "fa71887793774da9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bhks.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "00d3a1ff2ca2c1afa20a3a82bc695daade2522280d85609448d26104ba59b826" - } - ], - "id": "708b9f96c6462531", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Bopo.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fc0f0e44c38c198d40781de1f6824304747c7c20430a6e9dd8e345364c700ed4" - } - ], - "id": "d4303a8e0a5c9eb6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cakm.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "baf8d172b57d130e12039ddea3d3ec0fc602441dfe88cef0ced13070f6b3ac6d" - } - ], - "id": "0c859e87aa1346ca", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cham.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "de0a0baa46ac5a5efe740e3433b81ec2c2f2d9c3ccb85381ecc7557bea5e02ce" - } - ], - "id": "0c3d9346d9076bf1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Copt.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed031de92b04274b2dcb4784e405b889a9c439eeeebd4a1b5ee957a8644659ae" - } - ], - "id": "1fde31caac5cae8b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cprt.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc76346e7903c20492dbfbc904574e24f517bb690ba4e00d5717407ebc677946" - } - ], - "id": "968e5f541e3a2980", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Cyrl.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b856b6caefc09aa80b3477fa787bc27e03c3deea727b8bcf31844e0d44fa857" - } - ], - "id": "342c53f905bea191", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Deva.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6eb333b92e4f3d3eb02ff3a291004f77938fcfc659d084c20a67cdf6f4c63349" - } - ], - "id": "75e5e7326125144a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Diak.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f3ab1535c411e4b2a14812d6222aa56b55ea14e9369fe2b6d62eab359bdd8f2" - } - ], - "id": "d249d44a6b67adbb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Dupl.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4312b0c1611ca67341281bf03e4d901a3557c1dc19233b5b080d44d2106aca2a" - } - ], - "id": "fcf32dc2c5c5baae", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Ethi.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "74758dcc2e26b61ecb1166b0c33e215176478dcec3024a74b67b6cb49fdce718" - } - ], - "id": "17dfdbf5a2511c3f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Geor.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f58b10564d05c21350d3573243b8e5894e4f89a3da6c25567cf35bb150864a5b" - } - ], - "id": "5a0ab9f05569e0bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Glag.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "61ea33e7a566ae6713d4395f8132a339a85f26d1cff84f46af5a55b18ff841e2" - } - ], - "id": "acdbdae8d60f2a2e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gong.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "65d7b653ab8c449f4b8032cae7317e5b01f066f37d9de6d7092dede064d3d8a7" - } - ], - "id": "e7d32c98b10922cc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gonm.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cdb1b1eb627c8852f117a81bf1218fda9abe7b0b490beae0ab16c891073e75f4" - } - ], - "id": "7027a7450e58e0af", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gran.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "81981911035d1fe80b28408ade5c3efd728ec51d8586a2632452768439562f54" - } - ], - "id": "5a800b09d8b0a6d2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Grek.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "065fcef0a8cd00684938c9d03dab570aa0fd9a415c9c3982a5e4a5cef1f60ab4" - } - ], - "id": "16438d7104e0c52a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Gujr.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "78d060828ebc7a523c43cec48edafa0e1d603c9e6d8b94c3657ae707bf63320c" - } - ], - "id": "294665a758e29c4d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Guru.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4db632a52b91dacddea99d85131e14f83f5b4397d663705a123351fada0146a7" - } - ], - "id": "1167dbb6de28d2ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Han.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "91cd36f3d2567408c5234d6a9d0e2bd60bc46d99b4819962c47a4f82e9bb1786" - } - ], - "id": "a11d0e96d759d9f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hang.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "72e4d90bf13c2c5786fb1fcc00754594f0da809b1d19fdbc37b4357873fb9b63" - } - ], - "id": "621c73a71734e999", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hebr.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f630b1c2f08721ae5161c7147844ddb876872b0c861b21d9a917869d28bb5086" - } - ], - "id": "c9c49c26f7047b8c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hira.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "185284a61a9938c6f18b1201b07f710da90a5981a802b5791b5d4a627bf766b6" - } - ], - "id": "9f5fb0523ffd6a12", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hmng.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ad14e64b9d3ef129c7a3ffeefb3a195330655d371df17f9d92bef13e71e3979b" - } - ], - "id": "c9900df60026e79f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Hmnp.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b02ce0b1a73c35f5a68bf997d1a4cf48fcee30ed70e889c3b0ba9dec118d4171" - } - ], - "id": "c04aeff0561e80aa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Kana.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7e76d6286b8d4e4d0e8cc146a7a4d6fac84bc82266721b6da8dfe935e3a777a" - } - ], - "id": "8d36d42f6a16481b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khar.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b2f7cb2673edf270b648b3079edfdfdacd1145ba8bc46f80292bead8710b5d66" - } - ], - "id": "6aa164a80079d937", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khmr.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3a3f37e82e8b373dd4a1dfc7b2b5a02b6d8c02989b83b997b9a35f1c1853f964" - } - ], - "id": "219e638e6c970d4b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Khoj.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3b584cddf3224c1a33c9b6690aad329c28971bb42e7424d26e5700f33953fe59" - } - ], - "id": "af03e5cf1f698c2b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Knda.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59b5a165e35bbe2782f46239b9722df224ab3273e47cda123e37c07efb511f4e" - } - ], - "id": "34dd7d0dd56db8c0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Kthi.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c9755b9199869ba59e498fc668de5f81a3e291c7250784bf7e5ab18734c01a00" - } - ], - "id": "3d2988a66d130d44", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lana.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c5d3f98f0942a6519c50a7b288df67f750cb05062f139185efe0d6d169acbe75" - } - ], - "id": "39e04fd993b38b74", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lao.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa9a990a846ee95f2d7fc2d9c54c5f58bff15a629d3a749a72e8fe2acb2b767b" - } - ], - "id": "c6bae5d5e41409e4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Latn.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "372c9dd28aa8f7bbf0329302592f741878c055a5c51ca8f7fb077566b337924e" - } - ], - "id": "21aec552ca6924dd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Limb.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b21fe163d0ca4dda8aec1effca9e483d490fb3ead1aeeedf3b00e5815ff35a46" - } - ], - "id": "b7ff29b7cfa798bd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Lina.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8fe6fc0ebb096a08936331f3d7594400dd056f8fbcb61956e9b258b7f5e3d443" - } - ], - "id": "7c74f99aac3c4dcb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Linb.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "369c87a7608edcb21c969224f973bade10cdcb646c6125eda2de2de62db5d1cf" - } - ], - "id": "1e2db6faf53c6481", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mlym.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c37b50d5eb3cee3fb30ee6d82c611e096adeddc81f8a0a9d8c1a380ecb187afb" - } - ], - "id": "15cebaf43824c1ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mong.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "203e5a34f8dcc10f47e2b88e825212b635da677c5cd07fdec3e29620a84f5746" - } - ], - "id": "ecea856078822fc2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mult.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "02067bf1974ac649646bdeaa15812294d0c82cc001b01c61cf88302658f531f3" - } - ], - "id": "03ad03238832e8f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Mymr.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "daff96548e7f630408ee0e4ae338b3dcdacf335a60f476ccf492db0034c1a0bf" - } - ], - "id": "eec757c2250e7d80", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Nand.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "06147e41a1f43c3d3fe6ea7b8f007a3b82900f0e67dbf61c85a40211bf501c6d" - } - ], - "id": "cb4b4b4a816e42e0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Nko.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ddb56c69b58e0cae0ac958f7b9d6ca0d0d617265da2c77aacd2b88ee7ad0087c" - } - ], - "id": "61d46da2053e6f84", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Orya.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "917f32b45652dea8d7cd4a7b8ee2b3c588181f088574b80a8bd12ff39373c730" - } - ], - "id": "26be6e3474fe274c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Phlp.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "835690874e7f700835563d56d7c0595d8c143eb7eed8fee1f8c02350e968dc68" - } - ], - "id": "06347a109a320ba6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Rohg.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "32de0ee41d02b8c4fceb611950220bed785e1b82252265ae1aa2eaa0643a46d3" - } - ], - "id": "60dbd68220465fdc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Shrd.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "12adc015d2cdad5853a689d846277014f2be069015fcfcef857a3e0974c2ac58" - } - ], - "id": "cd9bc4f1db817471", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sind.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c8b196c343b2a805a3c9ffbd86523c5ca8e69acb040f080b65d58cc9723cae2f" - } - ], - "id": "4926f55c887d900d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Sinh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5562d6fffa4e6757f07a6922f9084f732b3d145d21ba2145f3e672609eebe4d4" - } - ], - "id": "938dd9d7980d6a01", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Syrc.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ba0a8da2bd7220ceba0803fa843c52e15404743f14414f51473eae5f444914e" - } - ], - "id": "caeb3ae80594e134", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tagb.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "da1a4c0ad3d2531e56914e111a27851db288ec29e2c3c8e20823de30be780e94" - } - ], - "id": "9eae1cdb97fde91f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Takr.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dd51f8ba8c1cba150a9e05afc80aa86d0d8e29ea6252cda1444fdb06238d971d" - } - ], - "id": "a72fa5354a85cef1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Talu.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4c2826d2591cbef79e3c0ddb7addd309082311e6d9d98dfc4a668e87733b075" - } - ], - "id": "45b7dec9f9b63a7b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Taml.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a62be3115170e5ef0e215e6ca55d6272802b92fa11b43f63002537c9553cf2e" - } - ], - "id": "f169394f54343125", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tang.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b9983bb4936f98d3d31ecdcfdf3f52f36092808eedeed7c0302c37323d240569" - } - ], - "id": "507ac6f40867eee6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Telu.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9011335fd24c786bd5bd0e9b85532847f6858f447aa92fdbd18dc35bb6e6f2c7" - } - ], - "id": "b34db1b62fc67413", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Thaa.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1c9e2acd1214895924057666adb569960c00cbd48e1c71237703acba7d90a2bc" - } - ], - "id": "1134ca9f3efb09e7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tibt.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5d358d3bb82c51b4b84305bd77182c73c8c99d7e51b5379a88b7856e11d868f4" - } - ], - "id": "525118615de9ac4e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Tirh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "304a9309d7e99698dad43a45cc7bd74159e406ffdc6005b829ba92cdcb4ef796" - } - ], - "id": "6d74b56d3cb39476", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Vith.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2992ab3d5a7600e6f7b4bc75b57177587b6a56046381fe2308f063334386c9eb" - } - ], - "id": "14ecc366065a8581", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Xsux.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3a5a7d4c8eaf6cece53baa5967b44a865e4398cbb967b20559aff68f15f6ac14" - } - ], - "id": "8ffcfe0186851204", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Yezi.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "09ae0dfc28d2b92139d0ee4fd8cba7d565f6c809819740230e24a2b47eb5a58d" - } - ], - "id": "3727760765bd9a04", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Yi.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e7f88ccca66d2a34f83b528d9ccc414278a07c805063ca98017c826d4e08f421" - } - ], - "id": "4914e6bbc305372f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zinh.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f3d379824e5e0ad123ff86d60a5822da25628a8955fe2ab1334cf566185e2ef" - } - ], - "id": "31ae94c4150442af", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zyyy.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5cbd66c4417b24789b34416566a85c2f3bb832eaa7d2d9c6e0ab5871bbd5dc00" - } - ], - "id": "d6fa989737fd6abe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Scx/Zzzz.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fabdcbe3e786ac583a980c4686356723dcf0efe63280f2a7aef71db305031abc" - } - ], - "id": "9cfcf041a5dd4767", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Term/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cbe68ff7933814f06f771f7eae7e3837f9a0e13e7766ff69f1f4d84c5160347f" - } - ], - "id": "67a16fc6aaf40dc4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/UIdeo/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c2528d59218a5bda98220a6a42ad191bb64a8492b87c16b5c16f899c287ea445" - } - ], - "id": "041df8ee3556020b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Upper/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8b621992079df7da680802b623e4a5d4c765cf3a64bb53d586d26b1c85a42b98" - } - ], - "id": "e22cfd1c148feb5c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/VS/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "af4d407f5ab98a7c4b75ec11ec7c0aba8fe584dc030619abb0d7ad5610259251" - } - ], - "id": "9422ec6e21fc19db", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/R.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f2b3afd8ec3bdb59ac5a3764e85405965af7a1ca48d2085f4a4f871b1d1c0953" - } - ], - "id": "84df15cd01307783", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tr.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fc783174191027f12a89648a18c6af9dd411752a112e3af3485e521442e7ae9e" - } - ], - "id": "39b7d6af1c5e23db", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/Tu.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a0557480f6e4f5545abb68e7afa9579c7af9132aebe4fa9689592a0fe021585" - } - ], - "id": "1e070e6b7f6b633f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/Vo/U.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "718898e54d689b550697f5d2bd1a1ce676d2df87602c7023effe51a9bb435267" - } - ], - "id": "2c80912773c79c71", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/EX.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "303a7c5015fb878e2965b4692870e5f4d3ee83d0a8a49801df4db9307b155081" - } - ], - "id": "80bbbd0e16e461fa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/Extend.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4b2e73ce2f1eb4715384578aae0de98393f7d5691eccc2c62807e9ec1a4942d6" - } - ], - "id": "82f711a3cd6a0c9c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/FO.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b2a43cbb7e3e00ce5d641519b76af093dba1d66fa9e332ca505c427c45984e0f" - } - ], - "id": "426a543af1e29a94", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/HL.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28473acba06b9b65e7149b242965c37a8f7394deea4803b66f9e311b8a465f7f" - } - ], - "id": "893466c9b19acbff", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/KA.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b1dec4270fcc33e8934986b2586ff7b0c9cfa03ac6a08c63d57bfc41cdfebf4" - } - ], - "id": "616c679ad907fc4b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/LE.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "08a060454f4a3be252d8a2796914b4216f051730f58e951eca9d797a91416fad" - } - ], - "id": "c3b01ae5d548b443", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MB.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9d98850e8f22a6251d8bd5bd23ca2c305cd715a7e6afcdf87358fd8ef4a4e835" - } - ], - "id": "252aa69984919709", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/ML.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d40ce01f2eac4907c062ceb137d9c6aaa02fbead7fb11cb1e474a26e76d01f77" - } - ], - "id": "f699047550c01fc5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/MN.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "00aeed2304a4fef766c93c32c8ab7d8f8e5407c83d675805268caf7dcd27e205" - } - ], - "id": "5d1bc71c02736770", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/NU.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b997a7441db3ec042b0b2d0796c56006cfb49b2de02128cd3bf4d444586417c3" - } - ], - "id": "d70b4fecefc0d6a6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/WSegSpac.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "67c68dd0f16e10e48efc8479b704a88a6a436ed02b7e384a028bdb11d5a74645" - } - ], - "id": "2b57772e2f8a1fbf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/WB/XX.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "15a6dce8ccebcb5577b27a72eb854518cbcf98a21fcb7ad9a15bec00aae1a4d5" - } - ], - "id": "e986d7174078b0b5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDC/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "257e1a493996ba187f0aebc28c1a4bb275784b49877b23be86beeee40a9bc517" - } - ], - "id": "34a7bf64266fdd5b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/unicore/lib/XIDS/Y.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d801cd218ff7bee41a9fd6ba6f35040aa3fe89ae2738ba48e8c3aa24397455e" - } - ], - "id": "0cc5091286ae1e2c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/utf8.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4df4ccb7cb05495f7d7b47c472bae0c92ee7b82aae0a2b31c23ca7bff9504163" - } - ], - "id": "bf8e25eb82b2e969", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/vars.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ed5b961055c9ee30c3820e02a8811f4b3d4d45420adbc5842e42f80b2d3ed4f" - } - ], - "id": "991a1571e763c275", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/warnings.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "962110d3faf3e55749a260d97edaf8a9d31293b0f33d2e7771663a9ef364aa94" - } - ], - "id": "74aaa55d2535ac4a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "444f4d5dc958152276506afe49a7a7255883540ceca1d3fea5db4923176591cd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libdb-5.3.so", - "libc.so.6" - ] - }, - "id": "79e0077daecf9958", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/lib/x86_64-linux-gnu/sasl2/libsasldb.so.2.0.25" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "11163b75870941e67609ed3ffadf61cfe5c15af82e80817cd9a221c394cbaf23" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "541370bce947f2df", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_access.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e71e0b58e624a7b148619a1fa1ec60dd48fc00cb3a5216035b0560a621f24f5e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "dffc100b8d4a6690", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_debug.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1119c1f3705d37bbee8f381991642294fd93de8c5c271be5cf8e301f30dc0a71" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [] - }, - "id": "d77d289418c674ac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_deny.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b60a948309c4a00d754dccd3cbe3b848a0767a2b91d77f4f4378b0ac173fe1d8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "2d618d623e2161ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_echo.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f70ca892e996828a1010a9b7e945c304cf41cbfadfbbb3d57ece20b5d43d70b9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "8971dab1e447a0dd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_env.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6ee368e3c927f1d39963c559a4f582e1914da04b2c99e047ccb44e8ef06a7e1b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "a7b0d960b2bfde21", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_exec.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "75ffe0eb4b592b5d7d751f155a4495871dd4d853ca346fe3538604a0ed0d6ee2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "dc340d270e93c932", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_faildelay.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d9c7e52c848ad6aff99a453110aa178f7d5a073e3b7e992dbd023c69cccf2de3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "4c3e3bb13fc5e7bc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_faillock.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30f0180f03f199295178cc6e1cfb20e428380c9b0fa9e02a4e01d6dd7a6e0c45" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "670bcd242326125d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_filter.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6fac94ac3e925b75bfe5d9f7c21779ada8232acd0c04c413760c0596a9ef7ffc" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "9829bfa597f8235b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_ftp.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0c2448deceedcb5d52de1fdc16b2e662a9e5cd871618bb660eb311cacd9deac8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "f8caff6b52be9844", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_group.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47b7264621ff81fd5675b5013a8cc0d34f8ee640b71bbd7e32ac1d9266f1fb1b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "f1b40d2382e3bf8d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_issue.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c02cc8814ce6f65ae524b36457a35209f4ac3dea0dc202ffc4e5a88dba749749" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "317515c019543c6e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_keyinit.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f30ba615571fbe32aaa63d76cca265c4160e4fb3b533647e2c151ba89d6cad30" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "005442e732fd538c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_lastlog.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8f215d459124fea018d9db764031c2e08fab2fe24f269a1c4a63581e17e6e177" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "f0f3131fbfe79c69", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_limits.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9883bc8900d24168ed4f94f331005193fc8f82f6991cdb4499d1bd0846a7ca68" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "279c30d41c3a676b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_listfile.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e248f99244d691520b405f8672187335e75c73d88256431b454ebf543d183763" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "8403c830e0a2279f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_localuser.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a570e81900c58eaa6b3001154eccde6a96a5c81d38d79651cdca6e58a3127a6a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "2accd7c63bd7ab27", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_loginuid.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3c6f20041eddd6738c769d318ed604fc16d59d26a8eed39b6ee5ce6a405aeb1f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "54a9241a2d9c19a7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_mail.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "efd6433e0361e02d85bb2c1ee661050509f1a3f22930385d54fe370bee3b5b06" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "ed87fef0606bee3f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_mkhomedir.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28bf64480da3f3f27fbdf3890e2bf4524abcde179cdd125a6fe5c29ee687c5a0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "ac4e849a1f62335d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_motd.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7fce5bac0e6ad428eaf029d6390f210eb13a577b50246455995d92b59ad8ff5f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "288e2c748e59d543", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_namespace.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a25f365f113a32195bf2585aadfb75efaf7c21ae69760e88b6d5862d0aabdb1" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "5f2ac8b1dd4011dd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_nologin.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "300b30cb4f30fe15b437bebcb9049d2502dd4555a77c06286cb99d401712d988" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "14f1aebdfbe6b0e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_permit.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "273f70e88b7d30a3bad37f31a41eed455c05f2854d8d52c4800cde81eecfcc5d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libcrypt.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "ec9575faf0149d88", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_pwhistory.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0cebd7284b5b5cb0baede7869787c762dd785679804192c647c6fa188658e1f9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "c4cfcfb1273c10d9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_rhosts.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "037e672dc0f667d1401365b8034c4dffe055a2ee8d5796c55c7f633c18316f67" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libselinux.so.1", - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "a329af3b27a5835d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_rootok.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bde548a2c92d8a2817ed184c441f082392465c41599bef4bd833b4b58668e0d2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "27d0141c736decb0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_securetty.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d24be33d65e2081a7f13f4b0f0bdfe6cffd179bf75496f5176bbf2fefbe7eb03" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libselinux.so.1", - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "cae50f5118b427e6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_selinux.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0d6d43dd959bf0989a36c26a68763d6d180954ccd79df4219c1753d7d383660" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "dbb3a34943d1f517", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_sepermit.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "07c2d1e6bd04d048ab800090aaf7f942bf550d72ac59f0a663605b6f77b9abed" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "c0cb04ecab12c015", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_setquota.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "87cad10043d6d77b4419f0a927ddc16fde03284c3735899316e666033520a291" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "befe19507f7b3b35", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_shells.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57e8ab9bdda403996025529d2e01ae7e1278073055af1e88b38677252b03ae4f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "1831c100e1e24c4f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_stress.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "523c7e6236087853a419ea15201152a12ee3deeebd4e7b3e2463f263f043c784" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "13f7ef6827be694d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_succeed_if.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "568a3f64453cd4822016560b617f70679dc6a9a406748acb07707d01315bffca" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "0e21bb3db0d4ce8c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_time.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b3b118b8da5a999eeb07e209442fda3c02d805287676acb33f5e35cd83b5ad0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "561255d31c3a508f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_timestamp.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "09df77ba392711414de95a3e784e72096393e52569fc9079124e05c9467bd67d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "498fea154947153c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_tty_audit.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b8904bfcbfc5c5c880092d52e9732c5851895341329cc6fe858aa6aa38cb7557" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "0502d4ef039baed8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_umask.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b6f6a5e217dc7e22782b9efdb9d89b9f6b2393f357f54465a938b99c5577cc6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libcrypt.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "54e8ed03291e522b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_unix.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57bafdcffa93dab4c37596e5d27a9bac203f20b685432bdfce213fcdd83b5064" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libdb-5.3.so", - "libcrypt.so.1", - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "27db81e9616a84ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_userdb.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "204579040b1abc055803863f0e64d54172a0a3811e1df239c2ccb219cfbd7098" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "6453df6b0dda1d9d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_usertype.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e11a0883d4941b6ba81a2b1121780dc55e53629bbc923cb12a2a0c892570f76a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "b221f04136b442b3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_warn.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "05f9ffda447ec92d0a8e01bb60a68e5e4ae99ce582a3949c8059f7027fb4f7be" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "e82901cd21fd781c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_wheel.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1efafce3ca39ae7d1a098080618f8de669b15f7737ceb65b19049f41e1102394" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "88123b9c11241f48", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/lib/x86_64-linux-gnu/security/pam_xauth.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9425cd01d9f9780a649c562ad6cdb427c6d95a9a3992bdda23bac793eaac3fa3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": false, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": false, - "hasExports": false, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8cc551c9c639e8a8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/libexec/coreutils/libstdbuf.so" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1682a97ec2312acb51b2434a1479e9be7da5d668d98bfccd7eefd0f6ed21e923" - } - ], - "id": "59fc2209a98ad11a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/libexec/dpkg/dpkg-db-backup" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f1dfc6dd41bb0ef61e9de280b1ddecc6c3a23fa07a2eea293032fe1e488ea2d" - } - ], - "id": "febb5cdbf0020482", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/add-shell" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ad8ec15dc661b2ccb236584721c8395a0dd910151d486b0c1440b715ba1beb70" - } - ], - "id": "ee20e5fa615d4d9e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/adduser" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "faee3ffb8aae9e7a04580eef139765bb7d6fa9e6bfa1adcc95b8442d9def8b9a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8ee141b256c561eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/agetty" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "15948a110e527498b7028dee95008a0fa20afa9f2927aec02dc4da48af5bc416" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libcom_err.so.2", - "libc.so.6" - ] - }, - "id": "ddcd2855f16841a0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/badblocks" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "afa8161c43fd7fa1f162a1c1d0fb1ae27b5b88c6644e9296e2f21e3000aca7c8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libblkid.so.1", - "libc.so.6" - ] - }, - "id": "252e98eb2b1d2984", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/blkdiscard" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f6be796e8001117ac5e354d64fdc2e0857c5b92848749c2c14c4bc7f83ad0543" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libblkid.so.1", - "libc.so.6" - ] - }, - "id": "0809a7518b21bd82", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/blkid" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1eef3e93cc39020d542040d49da107fbc31ba893aa27782e7f81352aab389c5f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c18303fc8bb670e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/blkzone" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7783331bf8df15920b33e28d67d5ef1454a85877dff0faf92b039fcd4bf841e4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "1158d03873eb34b8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/blockdev" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8ce6eae7946d50272bcddc35edd7db63698c9d24dfaca9cc87d61ab8107a9b98" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8c360d8e1660cfe4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/chcpu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a7646c7a2154d327db652e466ec6616bd123b5bf629f0d2dcca3643515a1cae" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libcrypt.so.1", - "libc.so.6" - ] - }, - "id": "2b515efd5932bdd4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/chgpasswd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d6e3a6e661fc6a3e26f0176bdc89bd61141b725170dabe437c24482934eb6871" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "553226659272bf47", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/chmem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f60c53c4f61460c58aca19fb81f32979364bd0caa01a5ff753c7f627aaed20b0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libaudit.so.1", - "libselinux.so.1", - "libcrypt.so.1", - "libc.so.6" - ] - }, - "id": "4b2fe347b9d88e54", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/chpasswd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dc44f0ec5a5f7d2a881061b047b7bbd8e9de3b41db5daadbd672ebdbf24190b6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e95bc607ae8006f4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/chroot" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a26ef432213690aac35d6cd189452129dc521c652cdca1fe17ec204024f01494" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libselinux.so.1", - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "74bfdcc0016ad4eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/cppw" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "03b9305e8d73b4acd0066b15f85e653b8ccce5716ef23eef23b79d162c8703e8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "e753cd069dc94ee3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/ctrlaltdel" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8dd5af485b94cbaa3ba22c23bb75a20cbd2ef1ca92a1713a21ca45285873e24a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libe2p.so.2", - "libss.so.2", - "libcom_err.so.2", - "libblkid.so.1", - "libuuid.so.1", - "libc.so.6" - ] - }, - "id": "775572e98d38cf19", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/debugfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "79352ddc341d192b8a9f50a8266229179dbad37618126fd4fc741e32aec2145b" - } - ], - "id": "1175051625ea3e46", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/deluser" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b6f6750ad242a0e20d8ab4fff6f66a70e64f7912394a45ecc4f154debe69d34c" - } - ], - "id": "abaa2c703619a3d8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/dpkg-fsys-usrunmess" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "557485d11a8ff37fc59614628d135302114e4f8712caf341e8d63c4802c591e9" - } - ], - "id": "e57a13836f3b1cd2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/dpkg-preconfigure" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "79973e05dd4b47a6b5bd0de43dbfb2951e7b9c8548f4219688f36b44c0933335" - } - ], - "id": "49bd6182b6b890fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/dpkg-reconfigure" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a60346b947f47b83f4aabfb7a46a27c76f7e100025fcf2762e4f7dc820e1302f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libcom_err.so.2", - "libe2p.so.2", - "libblkid.so.1", - "libc.so.6" - ] - }, - "id": "efcd88a9f59599c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/dumpe2fs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "20404f998607b91c9e4dbeb9940bd88e88bde0f17f026eb8f954fba4c8994ea7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libcom_err.so.2", - "libc.so.6" - ] - }, - "id": "62678bc140ff2e00", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/e2freefrag" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9147a655bf260ddb8089b8abf0351078aa9d4c8c245866a202eab90a6d0c0ba3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libcom_err.so.2", - "libblkid.so.1", - "libuuid.so.1", - "libe2p.so.2", - "libc.so.6" - ] - }, - "id": "f19bcdb6bd27d031", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/e2fsck" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1351da0d06a43c6e1e207cc26488511119e8b785f216aec03ca308bedb974a72" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libcom_err.so.2", - "libblkid.so.1", - "libc.so.6" - ] - }, - "id": "23647ea2dbf805f3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/e2image" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c5e1eda9531d83b3dabcc5d54d6ead03af0180f903a626fa429a02d2e9acd056" - } - ], - "id": "b07d5be3d53573ed", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/e2scrub" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca2883dfcc5568121cf4afe5d1556a4fdaa5e24c6677d56e1c03da07bfc5356b" - } - ], - "id": "e2a1f2a1f80e8ac2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/e2scrub_all" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c7c89af4925676c454a31dea0c03ab0dd62d6fa1754a98eae2910dfa16ac496d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libcom_err.so.2", - "libc.so.6" - ] - }, - "id": "3f4b0bc3befc26ac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/e2undo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "356496d429c93eb9919344e42d4e46142fd847d351d5b0eeb525ff144980d88f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libuuid.so.1", - "libext2fs.so.2", - "libc.so.6" - ] - }, - "id": "7f552d16e303f8db", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/e4crypt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "80d0940a131d4c7c1860a87d8dcb1abd6e0ff4e87576cd5ca7687d0bb911d762" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libcom_err.so.2", - "libc.so.6" - ] - }, - "id": "321a11d2f2118ee3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/e4defrag" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aaf5350bd3e77049c423d7d2e16c395a9ccf85c0a310630ecbc2e8bc7c6faaf0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "3e798e16580060d3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/faillock" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3c5e8a693b5aaa2ee53d50e5c5ec6f0c0fe4da4dacca0bc9e92a51bdc487f412" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8f8761ca3db1c65f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/filefrag" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f2fb7c34e15026af34c53618a8c4540da0f3ad5f08dda3e0b86cacefe4ac3d3d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libblkid.so.1", - "libc.so.6" - ] - }, - "id": "516d3301455ae7ff", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/findfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "78c0b3a725e7c909d549d0ee01021ab66643f5c3f3d8f55bac1e12b10f0399c6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmount.so.1", - "libblkid.so.1", - "libc.so.6" - ] - }, - "id": "9a40fe824d633d64", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/fsck" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dfd56848e40df5dd83b23611d055edc020b9a63f8f5937570f2e2b7b87d68afa" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libz.so.1", - "libc.so.6" - ] - }, - "id": "45af037684cab4aa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/fsck.cramfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "25047fa9877b3d8ec33654fb46ef7d0ea2dc26e907f8d0cf9de568423afad2e2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "001fc5ee616bad4f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/fsck.minix" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ab69ef2c90ce6cd2567bddca54ab4ea087d601bd466cb905793da3df447386b7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "87426138dc94418c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/fsfreeze" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b2a8e82cce5cd23a84f27ae2f55274a51a35d9309d34172d2d4f9ecbdd824f65" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "9482dcbc1f2fe17a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/fstab-decode" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0744ca8a201f11ceb04d68e206f93ba518341199772c13806a836077b7f42999" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmount.so.1", - "libc.so.6" - ] - }, - "id": "31634105d38a8149", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/fstrim" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bbc0ddeeda9a1848d101d06416510de934096ba36d520e219be0ef15135b5228" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "f5e63ec9d8a103f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/groupadd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9ad5491766225dad29fd624bf68d37f9b6998bcd42631f3976a60340e983f94f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "3a6fab9b629dec53", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/groupdel" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "22b0735558f54c5ad5ff6988d8430eaf8b7080cbd8b064531905c9a5d22b3867" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libpam_misc.so.0", - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "5fa432c837f2f4e2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/groupmems" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "109421cfaefed779279fc07ccc9701955b69b97c6469b8c10b9f08cc1b92fc5e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "7cd5abc590f26583", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/groupmod" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2c1aeea1fd3b28fd78842ef839408b33341d37bd11046b3c4566b37f1dfbfe61" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "138b152a3776196b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/grpck" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "51ef1a5a16dff8cce1cb78f8bcb7e8863cc9e76e9da09a63fbdb8faccd206ee0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "5c775f493196ff3d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/grpconv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a91fdb02f3067e14df68475d6913e2ebab01e309ec2e07f1173a702c77880a46" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "61701cd7fd873c31", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/grpunconv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb32fd52e54b6a38e8c93c0deb1ee6e4028fa25b708d38128455182e370f2fb4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libm.so.6", - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "ea0c341fe4af259c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/hwclock" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "63605808724a71a73e7cd81bfa793c2b6d961f635be4772e0f21a48c2d275521" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "63b97a92bef5044d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/iconvconfig" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a9a13478fa2ebf2945f01a5275f9d9c02202ed28b320c990837926c22837ff75" - } - ], - "id": "83e25eb62839bff7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/installkernel" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1d389fa6f6297e77b2ba1d2df4a6ec60f4d4d37815b727889f38ba602e713f77" - } - ], - "id": "499ba25c7c67ba6f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/invoke-rc.d" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "86b9495f5986e01a26922d893188070ec00fd6c57200aaf6e5643894365e94ec" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "7f7331af8f6bfc38", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/isosize" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed97c8f189a24ef4f4195f406c17c1d49fa8567f32d2c4498106b3f68ef3fe99" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "476a68fe8ae166b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/killall5" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c8a28241f5321886dd4ad19716b1564a0d14b68522fbfe71d1e1c36b1b2694a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "fc6779b83e892c42", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/ldattach" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5314f9fba6d296a9ce1fd95c8ccafc10947c0aa39bfa921e888e33917ac4e051" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [] - }, - "id": "86bede081f480d5b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/ldconfig" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dafd821c3bba37d53c649da3e73bcf1595930dc0d39ab464a04432770473b9e8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "819abdb1f8ef5fb2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/logsave" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "91bddfd127a492e12129c504f019bfe3de3a9fbf2a537cdeda237fa7612727fd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "ed054d5ad6e3032d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/losetup" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e64b93aa7c5b1d6f138cc18c494044ce3a24e209a1a08a5f0eab7c8c740ab0d0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libcom_err.so.2", - "libblkid.so.1", - "libuuid.so.1", - "libe2p.so.2", - "libc.so.6" - ] - }, - "id": "4b4459a5039b0683", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/mke2fs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dc22bd374d4da3eb90153468a92fd93ee49c870e100cad8d671a4fabd402a3a3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "f1125565b0685ad5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/mkfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5be256c31130663923ecab813d2d92db05ec2ca319622c07a2b5f515cdf21469" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "ef01a0b623acc4c6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/mkfs.bfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9970174bcfcdd269430a4d504924ae5cf7dabe9f4de306d6dc820321cc4adc7c" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libz.so.1", - "libc.so.6" - ] - }, - "id": "a8d78e4288fc0882", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/mkfs.cramfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "19ca48269bb558fb80e84e38de9ef4fb71c4d883696d97858fefb99099f5008b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "12f93da6f655342d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/mkfs.minix" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "199b01222d5dd98e5f6abe02683c24ec92479c4fcddb784d91f63a89fceaa679" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "d93b9b69ad6cab7b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/mkhomedir_helper" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5386a03a29bd2b4f1442c1e9c7fb87529de10a3a90afdd3dd2828552a1c4a22" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "2ece963cdbc828c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/mklost+found" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "21ea228cab7b5a9076297ff37cd23910788bd1f467b59f354923782fce949d3a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libuuid.so.1", - "libblkid.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "2b24465bb8d51bac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/mkswap" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "346490f0865b6790ddc352f192fe52fded90827c78a324395acd87ab94fb42bf" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "6a8f1ce60fbecbe4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/newusers" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d9a2d41c31b0cd9621ed47016cc6ebe2cb15fead771c0095d253608b391d2f02" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libcrypt.so.1", - "libpcre2-8.so.0", - "libssl.so.3", - "libcrypto.so.3", - "libz.so.1", - "libc.so.6" - ] - }, - "id": "7ebff49d2da077eb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/sbin/nginx" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76b51946f6631900ba03d7d8ba3fa4acaa3a69c998a60e14f152a12abfc226d6" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libcrypt.so.1", - "libpcre2-8.so.0", - "libssl.so.3", - "libcrypto.so.3", - "libz.so.1", - "libc.so.6" - ] - }, - "id": "c8e48be45ae127e7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/sbin/nginx-debug" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "722a45f8247b4c7690fae4bf0ac0a1b7436707b6efb9b638462367523b8c4ba9" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "0b9653a0167cc533", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/nologin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b46dcfcd89682917c2840e0b42ad6cfd0bd18ec4930e58ac840a63356e3cae61" - } - ], - "id": "385352548de0691c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/pam-auth-update" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "982cca7d6a9afe07d7ba3fc929082ef11ed1cadb88d253f6464bfc0a19730674" - } - ], - "id": "5605af6de83e70b7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/pam_getenv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b0ff59c7a906621eca1869f9f93c79ba1dc52fdaeed482e55c81aeda148764c0" - } - ], - "id": "d6868e09ac7ba66b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/pam_namespace_helper" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb66619cdbb7209652a13030ebbc088496eb01d417a194e467bc255950f63820" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libc.so.6" - ] - }, - "id": "a2438db44da84f0f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/pam_timestamp_check" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b5cf604b0c19d8d1028ee57a99e46769c229a94c435f923f939c9fe7196bfd68" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": false, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "75b43a502d0f8a20", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/pivot_root" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8069f05929fbec248d7b0b9a0514bbe908c75114c8d4b0360b3a88cdc8487a0e" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "4fa1e8c2d0e89db9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/pwck" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "129011e3004f5d0415ca3976fdf69a984cb72d2d9c9f807cff9c45628f7c9c12" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "796a2a53e758070a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/pwconv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "526ffd2eb5b29bae63046b2794e58fccd4c749ebd3e8eda64bd690dced9e1cf3" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libcrypt.so.1", - "libc.so.6" - ] - }, - "id": "f37a7f5a6168ef7f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/pwhistory_helper" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6ca20e7431696f2132b1b33fbdcb238ca9c4b779dfcf49de6bdcdde3c23cc20d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "fb6b6100ef8f202c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/pwunconv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "531e2a5a87cbf620e12779b33dd43332244819357255cc9193ede8b01fe38a57" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "c9ffafd680497730", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/readprofile" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb2689259c4a8ccb17d885be93607cfe75f812fa393fe610d343d8d928925328" - } - ], - "id": "5757707db8fa69a3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/remove-shell" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "543b9ab439dc607855141c463910b409b3b21cfd2eb53dbdec96bed648617147" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libe2p.so.2", - "libext2fs.so.2", - "libcom_err.so.2", - "libc.so.6" - ] - }, - "id": "ef5d3f4c94f64f29", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/resize2fs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "060502950741a35000d8b4f95b31efca21406247dc2e3f8a7a49687e164f53a2" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "120d6287c6aabc63", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/rmt-tar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc04762f0a18446a991a68b8ea7c5583fa51a8b1ccf6abfd33102c3b01cb2a17" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "19d5c1cba97461cf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/rtcwake" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "202173841463ede93f2d47f56ef8436f197efc7879764dd089cfdd75d17879dd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libpam.so.0", - "libpam_misc.so.0", - "libc.so.6" - ] - }, - "id": "f3ac0618a0aaafe1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/runuser" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b25b0d0bb747dda5b6e4b9c0c27e8b6257051922a347272c79ab4891ec85f5bf" - } - ], - "id": "f8e86f62476a3360", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/service" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d8d3130436613e44fbce44c4ebdc84cf73ea535f9d0882973bee600dcf549caf" - } - ], - "id": "4938f3437a031c32", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/shadowconfig" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76841860cdb3a3afabcb7fd9dbcdb2d059519f007f5a480678fd061da0ed3ce8" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "03c06eda174a1871", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/start-stop-daemon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5fa6d65cabf65a64feb72aac1610183f4252e5924e9715c2a5031825a905b995" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libcrypt.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "ebcb76b4dcb8071b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/sulogin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "994bad698d708adfc676420e92d123032a7ec818ccb5d1d7d9a2293c5d1219f7" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libblkid.so.1", - "libuuid.so.1", - "libc.so.6" - ] - }, - "id": "be96b2006f7d74bb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/swaplabel" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1bea2e908d546bbe833508b6f5590186d399cdb7c6428d309066720fbf5e675d" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libmount.so.1", - "libblkid.so.1", - "libc.so.6" - ] - }, - "id": "a7668e2ba628abcd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/swapoff" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1c3011375d9ba2f2f0f867e1bcd38dd72ad613cfc3232b5dbe469449ad6b38eb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libblkid.so.1", - "libmount.so.1", - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "b55626e483bdf19f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/swapon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8f55d3c3fd5076acaf4dacf6eb6a111fdeff1d92142429b10987bb32e91260d4" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "8bb5dd3a41c226a2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/switch_root" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4307aa7cc97a4db32a674ad32f893b251188903cafa6d5266c813fc5c9ea755e" - } - ], - "id": "4b68973ed69a4027", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/tarcat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "49204bdc916632075dcdad3617f3e978cd8f9f8448bfbf5b89af616d4e46761b" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libext2fs.so.2", - "libcom_err.so.2", - "libblkid.so.1", - "libuuid.so.1", - "libe2p.so.2", - "libc.so.6" - ] - }, - "id": "a74c9ae48913d316", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/tune2fs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "29396a989bc7c5f8205e3bd1e3ef32e49e0b08ae9a2abc74c06c60c6defe10fb" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libcrypt.so.1", - "libselinux.so.1", - "libaudit.so.1", - "libc.so.6" - ] - }, - "id": "f0578a0ce1b3519c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/unix_chkpwd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bdc239c4f32eb3a0c381721b532e62b2554806368a957934590c2dcecec060ee" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libcrypt.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "7de7ac2fa3dff508", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/unix_update" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "395364bffc7ce85ccbe2de71215f9c6c85c024af3bbd991c75a01c2d2aa3080a" - } - ], - "id": "701af9df82ec9bad", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/sbin/update-ca-certificates" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "565e3e900a4b6d2a1359e803a5d644c5096692b6e31077c352da4f833f2f553f" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libdebconfclient.so.0", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "abd42bf7a662f757", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/update-passwd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "89667635d9a6796bcf64e0fabde441f094fe15f566cd2ca02961a5081f5c1813" - } - ], - "id": "1748a71923143cb9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/update-rc.d" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0079738d21220c98b819c31f86e96d595be427115ef55c7b5c1e7c78afc3104d" - } - ], - "id": "3c211a851cf1128c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/update-shells" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a3c0a3555e11e705ff943d2cc9b3c582a87fc5db6cd9f087324c578e32085cd" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libsemanage.so.2", - "libc.so.6" - ] - }, - "id": "3722219ef4c5eb9e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/useradd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "af6394406ec3959d5c2ce648ad356b90007e21b17b96c4b4e43f8b190837d794" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libsemanage.so.2", - "libc.so.6" - ] - }, - "id": "19c8e91fa1c68bec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/userdel" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b5e9f510b42451d063b7d03baa9a6abad5a1563b77868ed16968b79435af1d46" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libsemanage.so.2", - "libc.so.6" - ] - }, - "id": "f96bc641ceb378f9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/usermod" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4b8bf163cef7e164c813f2ab5f0f5564525e0dfc7e377b6af7e5bc882812b0fe" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libaudit.so.1", - "libselinux.so.1", - "libc.so.6" - ] - }, - "id": "c3d4e2bc0b6ce742", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/vipw" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "215c2f6e843507296fe04ee6369947ff1248547574e686aa7b519f79231d7a5a" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libblkid.so.1", - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "386345c2e7c0f47a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/wipefs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c906f07508cd544002b2f6536d66b27a2bf782f14e1fe68233c7b40ae9c6d2c0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "partial", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libc.so.6" - ] - }, - "id": "4ce1453c3db6975d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/zic" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2435b057e889e059bd74895c803ce98b9d033f84c5e438f39fe73f60b641b2a0" - } - ], - "executable": { - "elfSecurityFeatures": { - "dso": true, - "nx": true, - "pie": true, - "relRO": "full", - "safeStack": false, - "stackCanary": true, - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": true, - "importedLibraries": [ - "libsmartcols.so.1", - "libc.so.6" - ] - }, - "id": "c11e9250f70419a3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/sbin/zramctl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0323aaa64feb069500a0a6f92b6808abba700f27693ee4b093582d266750a2f5" - } - ], - "id": "1a433a126db550ac", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/XErrorDB" - } - }, - { - "id": "5a5e62a32d37d0a8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/C/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ef6cef5b0dfb176c5dcb79701eebcded31af8bf51b6918e7d7b71a6c90757bb" - } - ], - "id": "4848a181dc1155be", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/C/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "23aafb8b1d7201ff108ef5089089b709c35f31cc38e8ba0714a3aa58f73a7c70" - } - ], - "id": "96353687c387d1a4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/C/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb5af61d55c18300e05517db3ec65b770d4f735aa06184e0e138bfc2c9e6c648" - } - ], - "id": "9705003ae443da24", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/am_ET.UTF-8/Compose" - } - }, - { - "id": "40835fdb0cc60fac", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/am_ET.UTF-8/XI18N_OBJS" - } - }, - { - "id": "2bcc73766921c110", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/am_ET.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "db08a669163eff3d66983674e4a76c73c583f57146b88d0c2c9a39a203380c56" - } - ], - "id": "21e8e098272aecf0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/armscii-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "765790804af149586c7e16a43c8fa222c0e4130b869bb95542ca1eaba5419cde" - } - ], - "id": "1f7034f82932045e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/armscii-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a4b1598d46507d3228cd28f3539b76c29d57e1661319ac089d3dfdd3ac2cd370" - } - ], - "id": "ee54df8dcf30579e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/armscii-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b842b950d38753e01c639e364c44bf7dec2300a444845bb3707049262616a0f" - } - ], - "id": "ca1dae0e2db13d0c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/compose.dir" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2498c21f61aa88237d149b182c888ebdcdc0877ec158e5d6a9fef234310dde64" - } - ], - "id": "30f6a3a75740ef93", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/cs_CZ.UTF-8/Compose" - } - }, - { - "id": "49c71d3834b04624", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/cs_CZ.UTF-8/XI18N_OBJS" - } - }, - { - "id": "fe6420625d9b7f92", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/cs_CZ.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cd39eff9261eeb8580d3256b647917a21a7833194ac4d9652753c8f1726ef380" - } - ], - "id": "6e36eb0846111440", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/el_GR.UTF-8/Compose" - } - }, - { - "id": "07523405fdc7a68d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/el_GR.UTF-8/XI18N_OBJS" - } - }, - { - "id": "aa16dcb939277f17", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/el_GR.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a127352dd7f12f8ab69aea2319453c4c819c1dae6a53d6fa0f718324f87805ba" - } - ], - "id": "c4d75410f477c7ff", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/en_US.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ced92075d6db441663139fa39079da39bca242ec651459038b693faee91d1e29" - } - ], - "id": "8af9699ba095e7e5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/en_US.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d617d3c76564be0b2cecf3988cc3e3a16a6fbef62c941bae47e51e157d2e0444" - } - ], - "id": "d912819d8684a268", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "55d31f9b815add4ee2c23d0c585baa69d3b5a4609c9ab025e26d8cba29da6906" - } - ], - "id": "a37e488c876d3a2d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/fi_FI.UTF-8/Compose" - } - }, - { - "id": "93dc112d645d7c50", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/fi_FI.UTF-8/XI18N_OBJS" - } - }, - { - "id": "0f917aed5fb6f17b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/fi_FI.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c1e69bbfdc84372324bbeaf17ad9d03572a456446a37459e0ef1435d9a654da3" - } - ], - "id": "b0ca9189cc2e7af0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/georgian-academy/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7cb7e2f84444951109778015156b408d73edb77a15ff694a4fb03f087997a98" - } - ], - "id": "9ed47346285c2ae9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/georgian-academy/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "44399df2d1c870b19d1e7c129cf807e12d81a189e9dcbde27726d9a003ceb8f9" - } - ], - "id": "29f581eb3c79010a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/georgian-academy/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76326759d9e6437facbb79af3a2206be69ce735cd000a6c03ad33c3d58496251" - } - ], - "id": "053222098fa589d7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/georgian-ps/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "758810fd49affe9ec5a9ee518710f72468003c8116bd08617b5ddd08c2c05035" - } - ], - "id": "0264d67fcceabc70", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/georgian-ps/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f195f73008876dc86f40a7eb5f8931ee5f631f84dcb7ae9c124e9a52ab668c1" - } - ], - "id": "2a26a3e973757735", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/georgian-ps/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "70bc9147a80c6f90aab84b3d77122c82c92b134885e1096341ee60950a7a0190" - } - ], - "id": "7b232a23e9e0acf3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ibm-cp1133/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "17cb7407f673541a8c5e93ce1c8f36fabdf28e02bac54cfe89c853db9d4d106b" - } - ], - "id": "6aee120e264066b1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ibm-cp1133/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e29f6b4ff13e5dada3a1f6b7f72aa98ee9669070fde364a74fd6084007f9325a" - } - ], - "id": "e67989d7fb451648", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ibm-cp1133/XLC_LOCALE" - } - }, - { - "id": "3a44fe5fdd4503dd", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iscii-dev/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d97e0c9cb64ddc529b35683fa358662ca6a3faf34d218f2578c6fe753b1474a3" - } - ], - "id": "dadb495cd057536d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iscii-dev/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4e6ad80d84000520d0113a769a8c6a957b7566d3d8a2056fe8715f0544aec422" - } - ], - "id": "b835810e836706fe", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iscii-dev/XLC_LOCALE" - } - }, - { - "id": "edcdabdb0a8edd04", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/isiri-3342/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "68eaf6a031b4ac739b85bc5330d813ba60bf47ff1eaf69050fc5e999a038f2f0" - } - ], - "id": "e628355f5b948d75", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/isiri-3342/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "419663d103c6197050128fba9e82ca6a4b54a173f58ce59a51355f1bcc6e7cd2" - } - ], - "id": "6602ad0c7e35adeb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/isiri-3342/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1af5494aa0b35e94bc3f9f5765f74f6cc59057985b26957b6442ae419284bd72" - } - ], - "id": "b8eb7618fbb3c1ee", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-1/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ef6cef5b0dfb176c5dcb79701eebcded31af8bf51b6918e7d7b71a6c90757bb" - } - ], - "id": "7da056b97c3777c3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-1/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4e75969924c999eca364995b042406e0af3672e44774c730e0f9d4452e58cda3" - } - ], - "id": "535034d941af3481", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-1/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0a94af8f380ed056a63fe3c4bbebf70a3f03aae95434770e7c4879f74bcbd988" - } - ], - "id": "4f57e2b3d701f3fd", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-10/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "891ee42949b619ae44e1afc9d0a18d98bea6a4ce3b22759aa4bb3ad725ec7408" - } - ], - "id": "c1c595578fea0f81", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-10/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3c0e7499e3e513c6c0aa022633a85497e26e2bc66b2d8addfcdc429258b738bd" - } - ], - "id": "deefcc616e852094", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-10/XLC_LOCALE" - } - }, - { - "id": "c324d3b985b6323e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-11/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "acbac0e9bafec77d3581caf193c893efac58d1a623b61a98169a8505d2812660" - } - ], - "id": "dae834a07ec9b16e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-11/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7fc7e57a4219611b260bf2b7b088e948828b08e9b6ccd755e3401e9ed4b19984" - } - ], - "id": "b2599ad5f165d8a0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-11/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3b9f39fa0d4b2295a15ee8c8a0eeed65c2c49e27e3e3c94062e2770affe13a15" - } - ], - "id": "c2dd20a37426ab61", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-13/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a8a0e42aaf0bc6365ec936da183f3ab58784166f0155f8135265f926fe29a60d" - } - ], - "id": "dfeb6e56f1d78a74", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-13/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e7d556ff13f4e740f24a31bdb490ff72d0016e1a2f3ea8722add4a12c31831fb" - } - ], - "id": "dc83cad58bfd9484", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-13/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e955a741c57afff0bb1e6b224ae3c767b160ea24d910ad7ad9301cc196889388" - } - ], - "id": "04fa7db83c70363f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-14/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4c127cd114bc17c16afd9f8641c472253123db88b7105afe0cd574dd6c887c48" - } - ], - "id": "006feccb72c739b1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-14/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39c95449667cbcbeeec7c86d7059154f60fab9fc684f8442f0f0026319c14bee" - } - ], - "id": "1abc728fd062cd50", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-14/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a22b601b8c9e5a6e3d1960c1cfc088cd92ddfff2f03f2bbf5e9dd1aedd7fa299" - } - ], - "id": "61d48e0f7e3ab951", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-15/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "66989c577117c61f02495d621781cf711392314c8eb0707e7e8bd9cb796602a2" - } - ], - "id": "8a7c12dda2cdd20a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-15/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b9a8267a5a5179237c4133c5549806f00bdd943c8abec7b9366d1cd9df2199c9" - } - ], - "id": "07563c331d622718", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-15/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8d49ffa743818f07048222faac0017709dc2e85de669f8e040654965ba38dbc2" - } - ], - "id": "282b77e89d54fcc5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-2/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a8a0e42aaf0bc6365ec936da183f3ab58784166f0155f8135265f926fe29a60d" - } - ], - "id": "6c28657df9e9489a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-2/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1697f4c056feb2c803fa27ab016f960b2cc9454d09456fa781cec9f5403967c5" - } - ], - "id": "4363d4b0df216883", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-2/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2844e64f02de5bfbde68e24026898472903f5b04427d0bdd66a777be387e776e" - } - ], - "id": "5215e7452b48929a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-3/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "155d1b62f3a7cf781cdfa461323b0ec52b69160413871b8f9a6693c87ee86a67" - } - ], - "id": "3e481fdccf932c68", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-3/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "74edf2a16152bc8eee8f19b80cffed0d4fa7e4431b72298dfb18ebc5879fc3be" - } - ], - "id": "47399d6044aa53a1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-3/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ad66ad0317bc5076ab6b60ec5650989816421e837735acc7fdf0ef4c8cd5fc2e" - } - ], - "id": "a5a3b1f754b62f6f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-4/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6b37571c38a1e90e879c920db9fd7c3c2309e3f40553a09db94b62a3f45fff5f" - } - ], - "id": "350399965f9797b0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-4/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f2589f4e8f1260bd942b884f8f76ea8b7657bd9540fc10183aaa4fa8dff2c95f" - } - ], - "id": "8df355de3cd9ca39", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-4/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6915476f03b77396033e4e5ead6eaf27f2a6ad6b7631954b96e1c3b92bdce5cc" - } - ], - "id": "6e9c5dab971acc64", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-5/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a8a0e42aaf0bc6365ec936da183f3ab58784166f0155f8135265f926fe29a60d" - } - ], - "id": "332158167e6bb0e5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-5/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "032b9870847f76a57e8be14c45a968d417e7fa6db5245e63645ddc940865ef12" - } - ], - "id": "0095687fd44fd7c7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-5/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1881a296792c42f47da59a8030e3a09a27832834182f99c3f349d7e0c2c6c956" - } - ], - "id": "778d39e416ea9b3b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-6/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a0e7916f30c06b7cce0ec60f8bf3a7d80fb24ccb048a9ee161079a5df2d160e" - } - ], - "id": "ebb23ad27a4a85c4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-6/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "367dfefed863ad49660fd62e04fac46f2c2cedbca4fc27cdfa571c42c01a847c" - } - ], - "id": "065df211be11a3c3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-6/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dc1b55370699544394817047ff498bcb78589506d6861737b21edf661d49f803" - } - ], - "id": "241e2bcafcfffa2d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-7/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a8a0e42aaf0bc6365ec936da183f3ab58784166f0155f8135265f926fe29a60d" - } - ], - "id": "655afcbea32518f5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-7/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0a9aecfeee85814abfbbe0b5032a702c13a3728d5110181b744e8370eff19811" - } - ], - "id": "acca03c19c85d52f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-7/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d213a33e3951aa96f0f7d8fc6a76426fb833a1a9205597910b3d66d6902df86e" - } - ], - "id": "9649768e616bb926", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0ce8f2b39e65030f2cf072ce9a4276f3b4f563d65f638bae43a4efcd3ed169e3" - } - ], - "id": "1a48c62980b3d78f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "26fb2b10f3f2c6175f0640db0d62c23a87f495a81bbb5124a4f1ed0ce59cb0ad" - } - ], - "id": "4f94bbfbdc9f853e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9375264a5b8a080b511fa5d720eb25c021b06f0afbe12574ef99675d95b6f722" - } - ], - "id": "bbb92acd7888bde7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-9/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a8a0e42aaf0bc6365ec936da183f3ab58784166f0155f8135265f926fe29a60d" - } - ], - "id": "e2f6b36a78e49238", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-9/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b4282e1a661f316d5de5ed9b999c9cf06e68216f540e0a81e699948bf09bc11" - } - ], - "id": "2fc5d0865fa80578", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-9/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b9edd9f66ad87347746f5bf9cbeb14c184d4ad758cbcc7f009f2f1f5a7fae5aa" - } - ], - "id": "b140b5dcf01b526c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-9e/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "60d666759d2b03246d52e5d4df2ae3dd018e8de6be4ca8240f9adaff1cb695aa" - } - ], - "id": "49b5b349f4c3a400", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-9e/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "36ee0c52a56edbe747127efb5421287dcb2d3ebb3b58331cefe3eeee749bbb32" - } - ], - "id": "baa359919a1edce0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/iso8859-9e/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce3a4bf8b3666b0509ffe53a0e9151b18531e7db8d6cd8d7b64564182c4d4689" - } - ], - "id": "1f1d4bf8d048c706", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja.JIS/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f4be662f6dd770ea360a6cde97af797f44da2bdffe83c644edda9a9891ee53ad" - } - ], - "id": "155cdc9d46a1aab2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja.JIS/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "659812ba83687a41bde281a570fb794a97ccac1138425d47950c7c3fc714c94a" - } - ], - "id": "acd362d9183e8b00", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja.JIS/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9bd2b9276c34d78c6a5e9ce5ffbdb5838eeded8f979a524fe853647acf4fcd3d" - } - ], - "id": "f0381c389e046d4d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja.SJIS/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bbfdd2a67876afd2ebf9fb7f1d89a7f5840380bdb3b78fda27356ce6617c3f51" - } - ], - "id": "694906cda460452c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja.SJIS/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a60aabf425ecc47b83d65522df9b18adbe7b73315a2b6d549321d615c0c7745d" - } - ], - "id": "64f52118fae97659", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja.SJIS/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1881640f93410f9b7c8ac8368326f7206709bece16a76d33b5c2f1232a1483fb" - } - ], - "id": "b689a6a425ae00f1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3e4fc429ec1d173058186aa5b443bf8efc675de48c5446538d3707d7c35ea37b" - } - ], - "id": "fbc61c243d882a76", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d7c97b76834021df73c264ad1cc5cea2bb9bc69ea11ad9ec8f13f76fb2d5e6b" - } - ], - "id": "85accce7ba91cf7d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d04ecb0181c56837f5b266d57fce339356d80212bde313c9a656d65cb751d59" - } - ], - "id": "91d9a196267f4f21", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja_JP.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "85023cec5e57823e91c22fd0cc8e0562e1b357dea2fb46e3978ebf01ed960d83" - } - ], - "id": "d901e44be3be7e46", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja_JP.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cae871a0235e9b72631e8fd1b37b5791b23701ffbab543a865e683440400219b" - } - ], - "id": "efb3d80f0f640410", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ja_JP.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d04ecb0181c56837f5b266d57fce339356d80212bde313c9a656d65cb751d59" - } - ], - "id": "51a43af8f95fb502", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/km_KH.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df4a3bcf39efef842ef9b8b855f9ec29da85613eb5133b0d764da535f0c32f1a" - } - ], - "id": "d41cbaec77b06ec1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/km_KH.UTF-8/XI18N_OBJS" - } - }, - { - "id": "dfa9f36377bfa3e1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/km_KH.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b01d7b9d4e4d66563785cdefe578e857440f27fbb5523ebc6055f981c0d0b78" - } - ], - "id": "3f6ecb37daac40e7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ko/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3061fe8262e058cf26c775dfb14197038e6d938b74b338538eaa9feb07e7740a" - } - ], - "id": "7d313a39c795f9fe", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ko/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5bc4ae802964223fdfacf71151260272f3eb62c4f746852a53a58a81224eb3e3" - } - ], - "id": "debb140143075757", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ko/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d04ecb0181c56837f5b266d57fce339356d80212bde313c9a656d65cb751d59" - } - ], - "id": "d03d17f30810d4d3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ko_KR.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d5ac844df91eb872b5a9d06960dfdc727b9d910a0c36cd303c9595447616a2ec" - } - ], - "id": "324367f4599ff6ff", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ko_KR.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84dd1247a616bdf50fd5b1dab4da3258efd8529e93b6cbe0d641e7e30f29ee31" - } - ], - "id": "f80e84efd1dd7da3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ko_KR.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe7bc516195a7078bc63a6c61485a6e1fd839f6f6856697efce295836816937f" - } - ], - "id": "01749cf7378ce976", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/koi8-c/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "608dae8d74e5bdb0cd7d048192e1584229fb78e10764d4b5fd4a09b027a0af8d" - } - ], - "id": "c0b4a5eae50ffb74", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/koi8-c/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "257ca9b185a922a4a0e769a1352bec5c5982848847b5c2c003f58e03a0bc985e" - } - ], - "id": "04991e8c535f39a2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/koi8-c/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dad63662a9174ebd0fd17735741ed48cf08b5e92aa1e5709e7d30ccafd64b1cf" - } - ], - "id": "79b7e0ec342a5d58", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/koi8-r/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4aaaba59bb8712b563c55f4f48ca580bdf26900eab8ccc4903d5a27a34fa51ec" - } - ], - "id": "c94c461c53b686f1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/koi8-r/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a6d8d84df6d17cad9274c73e1bdbebac3b95af83052777498bef42316f6aa8c1" - } - ], - "id": "69c3a7b4e2345a10", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/koi8-r/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "64570cfb67e26c2f07bf71fa91452b5e89200a2eae92d748f85223c0d2baeba8" - } - ], - "id": "9f4242f033370093", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/koi8-u/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "259e1f568bd6dc198c6a296a1d551ee8014f1e469eb6047f00c96f506eda4fc2" - } - ], - "id": "098c95fea7d58364", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/koi8-u/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "015debceb4f8232e4a6f34572e46e344b8b6ad0f150b94de64f3914d04ebbbf0" - } - ], - "id": "2e1b14a47cb7629f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/koi8-u/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "527540ae0ffe6e73b7934a486335f57741616900f2a47b7ba5abf6c2fffcca6c" - } - ], - "id": "81c61c50a660ce5a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/locale.alias" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "72e5b15f87c6a375d428b39edc4236e331614e2ef733a32ef59d6f099ffe4397" - } - ], - "id": "98a307715bbbaacf", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/locale.dir" - } - }, - { - "id": "7c090cbd76819966", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/microsoft-cp1251/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9b904cfe01db751706807fe3818c7515386ae258df3e764880b1d909c84574e3" - } - ], - "id": "b614392dd1ef7e13", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/microsoft-cp1251/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "412cddf3fcad7c24e1a9d73f5aacffb4c21dc43577b440f80e9eb361f76e8fc2" - } - ], - "id": "dc04542ef795ba6b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/microsoft-cp1251/XLC_LOCALE" - } - }, - { - "id": "56ab05145ef2f935", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/microsoft-cp1255/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57d3f7e62775f0b90379342d5c2473266fdfbbc68cba6465fd8361d6cf673ef6" - } - ], - "id": "0ad9fc7adbea5367", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/microsoft-cp1255/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "417ad932501f1f53b79f10b81566c21e0ac2477c164dd13dabc2c882766a66de" - } - ], - "id": "b9d248e82872679c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/microsoft-cp1255/XLC_LOCALE" - } - }, - { - "id": "795fcd0a956a5941", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/microsoft-cp1256/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa677177937f7a7099d7e4fb3956fa225709e9e94c8a5a44bc636f7d093832ef" - } - ], - "id": "ab5af7d8a296efd3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/microsoft-cp1256/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35e1f9236954bf64033333e7d6c66569e67c64b1b998b59498c519c9265e47ff" - } - ], - "id": "a2e42c0cbd2ca814", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/microsoft-cp1256/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ebb7c61e7c7386b0be0289ffd9fcfb609bc52ea85162cfa78752869adb1f16a2" - } - ], - "id": "3f349fbe6f4007b8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/mulelao-1/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b64a7aa29787f97bd50b6a9494812466d7704ec1ec5c698a7f5f38996543c558" - } - ], - "id": "521cd11e45288382", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/mulelao-1/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0287cd5e869039f885c21f4f1a9b996c4e611cc49ef9d9eb86d21664c633e9cd" - } - ], - "id": "7fee42ec8499d860", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/mulelao-1/XLC_LOCALE" - } - }, - { - "id": "2962c861188f0313", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/nokhchi-1/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b849f1c3fd5c6c98700c3e11202c5bf37c63e5956532678e45336779bab75137" - } - ], - "id": "af312edc94d44dd6", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/nokhchi-1/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "155bdb39a8bfa8308091c68ede17e9c5f3f03849b3449ce5d001687228d9bfa6" - } - ], - "id": "5f776b16b7cc83a7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/nokhchi-1/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc55c4efe2a94f54b6a740f31c692e395fd4fdfdd5ea562c8ead3b82733c4386" - } - ], - "id": "f93b83fdf03e9a3d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/pt_BR.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "084a4789668816bf0c9154fe3bd9d4d1bb303d355611d14e29f02d6e1d4cbb10" - } - ], - "id": "de5c24cdeb858e49", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/pt_BR.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "896ef838af8c04c6e4ce7ffbff6b241c24024ab9f3c5e59c2beefe36eb01efe5" - } - ], - "id": "8d19dd097bfc14fc", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/pt_BR.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7937f12b516deee3699e80bce3fb1f34d5bfde3f596ca3ae1b17765d7d2b2e08" - } - ], - "id": "6ad9686562666e31", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/pt_PT.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b7661866efdf754de97baa070e1079a233f1abb11f91721528e0d268bac41c8" - } - ], - "id": "14c20a2457e5d288", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/pt_PT.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e66c59298386f5c2fafb232e28333816aa5563e6a206688d09486a7e9841bc09" - } - ], - "id": "fd290fbfd5a1b5b7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/pt_PT.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d04ecb0181c56837f5b266d57fce339356d80212bde313c9a656d65cb751d59" - } - ], - "id": "000d6df3e908d732", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ru_RU.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c7f2ddfe768b88bd83527aa17bfc359be01cf5e77a46731ea7f1031917669ade" - } - ], - "id": "04c5086bd08b768a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ru_RU.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c79a5307f23b94392455fd29e1d38b9fb1fed98d650377f346e2ff75ee055a8" - } - ], - "id": "e65c3e5d15dd6731", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/ru_RU.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28f12f426f04d708bfcf84b15fe657e0939c82f19848e134aec569a4e6730c17" - } - ], - "id": "ab20c172ab7c3b95", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/sr_RS.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df4a3bcf39efef842ef9b8b855f9ec29da85613eb5133b0d764da535f0c32f1a" - } - ], - "id": "393e830b5d74155a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/sr_RS.UTF-8/XI18N_OBJS" - } - }, - { - "id": "bd0e3bca0835f30d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/sr_RS.UTF-8/XLC_LOCALE" - } - }, - { - "id": "d23575feb4500ff6", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/tatar-cyr/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84c9f63886c9e1516e60c5e350c82db46013c10648c62a51a5601f724e418368" - } - ], - "id": "120297d8560a80da", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/tatar-cyr/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57b233d304d99d5495f9b0608f760c1668f9c3198f3d50adb155ec2704965628" - } - ], - "id": "1aae566630b72b5d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/tatar-cyr/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d04ecb0181c56837f5b266d57fce339356d80212bde313c9a656d65cb751d59" - } - ], - "id": "4add2d47d6f280fa", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/th_TH.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2c125f8e32f5a1fafd00b88320d74c66ffec12dd267fa2fcac5baec5e14e3e3f" - } - ], - "id": "ea572db32a613bf9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/th_TH.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9561ffe58338823958c9d363113920eaf2c76e3ef220af27624dd213c05eb017" - } - ], - "id": "8058d831ea835415", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/th_TH.UTF-8/XLC_LOCALE" - } - }, - { - "id": "3b1210a3102ce78e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/th_TH/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76a0383f411132d9709b6a0f610944cba07c2bcb113a0181d32bff1b38a6aea4" - } - ], - "id": "e830f40a8a2e6465", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/th_TH/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fd386de7fc7e72d399725552d10e820ac07bd62f630b96161e4732bdff45d85d" - } - ], - "id": "0ebc67cf55cef163", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/th_TH/XLC_LOCALE" - } - }, - { - "id": "ffe66f2acffa2e8a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/tscii-0/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4d90d27f18aebae0b6f6d5ed716c6b6bfda493ab95dc7f3f06f71270fe1fb28c" - } - ], - "id": "ba1483e61acab936", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/tscii-0/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a457496a3d7e6ee65a4361b196758ec911138c62364176cf3c7512d12a3e589b" - } - ], - "id": "6332385583f669e0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/tscii-0/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3d5ba2554b7acb06de0d5a607bcc0b3b29105021baef012c35f5f653116e7b58" - } - ], - "id": "c4b36838613cf299", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/vi_VN.tcvn/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3fd427902101c0859d1190d5803f2df5ffde718796e3f5990c653df6a38cd1b6" - } - ], - "id": "5fa1b8549394e3ba", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/vi_VN.tcvn/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ec55e37b253e2ab3c131ab498a7f97c4aae2703e2240e0e1f19f46d8ace6b7ec" - } - ], - "id": "137896e81d70829e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/vi_VN.tcvn/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7f108ea2bea94584dcc12c106c2ce229e666731d38b6438ad859cab8f2173a16" - } - ], - "id": "10db978f27e6c754", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/vi_VN.viscii/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b0d1f14af33f7d6990fcc08594cfb52e76e0077560d74d848b69f5ad51b59003" - } - ], - "id": "bd1fad2991326cc9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/vi_VN.viscii/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8c5ddd468371a5f177647a921cc274ffe2df31d1341555f2495ad3a52359150a" - } - ], - "id": "fee4f117bfb2fc8f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/vi_VN.viscii/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d04ecb0181c56837f5b266d57fce339356d80212bde313c9a656d65cb751d59" - } - ], - "id": "ed15d80c66ac0be5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "16f3baef683a4a2cbbd48574eb4e25537bdce2348ce6913b3e13e3bf7459ca97" - } - ], - "id": "4228263cb0e0aa90", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "06f8b0b892c9f4d975d7c1b8bb763bbcbf3cec98ad3b9a6627ab11f9057cf624" - } - ], - "id": "1b6de48915aa75d6", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c75c61c93d9f65b6517f01d7407afb8d5135c68b0912878d1a0978999be1d95a" - } - ], - "id": "7119e1a007af19d3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN.gb18030/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd1b6a4bf44cd2cb41063ef3f2b93fda728f232d55cbe77ad13a964a135e327d" - } - ], - "id": "29148e45d2bfa1f5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN.gb18030/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47974c869ef9b4bcf09de84ce990b9f80fabc4f235f97ed51061c6f86fe95c89" - } - ], - "id": "d2b2b2403bb48fda", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN.gb18030/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0c0bbcaa2747600218f820bf8d74dcbcdba0546f095eee45a6ceda373dc4b2bd" - } - ], - "id": "ec3feb4c0fed9289", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN.gbk/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "be9a55d0efc5433d09668feea32119b46347030ed8a77bfb037e3187465026fb" - } - ], - "id": "586fb7507ee33d98", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN.gbk/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "844880169e4182f724c2b2f2ff8ccd9d989d73bf242e2b0159de5c3cf746cdd0" - } - ], - "id": "3ccb27850c04768e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN.gbk/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "44b03d1fe026503f6b2338a8ce42713acb07c831e2e583cb35bfdbeaaaa6a2a1" - } - ], - "id": "65fb2c0465a6be3e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a6e6dc413c4bd168cd26ab8b0cace5e464212f03aef6d1994fcbd4351815da5e" - } - ], - "id": "568108ccb73990da", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dcfd7043b9285b310749a25c196a866ec887e8a5f1fffd42a655caa05a89b2d6" - } - ], - "id": "52f9a376efc1374e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_CN/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d04ecb0181c56837f5b266d57fce339356d80212bde313c9a656d65cb751d59" - } - ], - "id": "eed71e9ce34982d2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_HK.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "95fcb72dd3ae5e8d34183f3a068a7042434a82ac23801cadb22dfbf8ace8a432" - } - ], - "id": "75135b605a6ba33d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_HK.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8672f39ad92391b57bf2214593be0e8b0b44c84546dcdb5ce759734a896902fa" - } - ], - "id": "727c40f2e57c0543", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_HK.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9043c936195bf61f498f168c9446e6310ee5db91310436b4b4dcc4932ff0bd98" - } - ], - "id": "d267803b0251cbfd", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_HK.big5/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "106b13ec77c4ee6be2e731694fe7b55767bcdde240c5ed031a2ce63681e37d67" - } - ], - "id": "20e25db4ac80613d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_HK.big5/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "efa2b5071b1884e359a0035fbdea170e241cd7d7a7e914fade5a1bbf635ff3e5" - } - ], - "id": "63c8d31446ae2282", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_HK.big5/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40e4234500ef02f31f8dcd95caebb40b6b2adb0f59ff2b7ad0b901b2fe45cf4e" - } - ], - "id": "252e85713f6a50a3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_HK.big5hkscs/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f9e3ec1ce066da306f6edee42764c9cb8e586d900fd9341a9774a63c1d1ecf22" - } - ], - "id": "13a91d3b66040887", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_HK.big5hkscs/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "44182dc734ca2700d7fb485689f20f1e82fc0c3f7a29f03c8c70e1350827eec0" - } - ], - "id": "55d97536510ba528", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_HK.big5hkscs/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d04ecb0181c56837f5b266d57fce339356d80212bde313c9a656d65cb751d59" - } - ], - "id": "3523dbde1d6622da", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_TW.UTF-8/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e67615cebce31ef62695e4b4f3603ee88c099c4ce66c2320fc3ee14eb9bd5910" - } - ], - "id": "7430908333220cbe", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_TW.UTF-8/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ab32de05042135d0fbbe84985bd7221c52072146c809a835ace9cab82642f418" - } - ], - "id": "52c03374b4067eb5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_TW.UTF-8/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "806bad5419a8e6daea8e1e50d9e8d7e7373cbff41608f2d213e06b91ed449a1f" - } - ], - "id": "f81bf180d1baa6a5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_TW.big5/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "675460866b5990e87bf9e967d1b8623d45cc70625839c57f113b030e214500ca" - } - ], - "id": "04a503eba9b38fb4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_TW.big5/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "37ec838903461a720be5093b281f23872c2deb9609693f0ebfd03cb9f8a24fa4" - } - ], - "id": "e5bb8de7cb9873bc", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_TW.big5/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35e56e33bb1caf9819741f39069cc986e01502294d941e6c10292ed004570088" - } - ], - "id": "3c8cad059f50fee8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_TW/Compose" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40deb13f5d81187a233d543da4509610d5647af4c74b202a530923aa9946449c" - } - ], - "id": "89a04fa5e8896ca8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_TW/XI18N_OBJS" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1358bc65b381ba2ae6a7884ef232ce086bcd59e7171f9de4ebb4a72560961cb9" - } - ], - "id": "acf4051457326bce", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/X11/locale/zh_TW/XLC_LOCALE" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "373b7d3b2ab90d75daf94ca16d61339d088c12020ad43b65d1b34ea80b0c0818" - } - ], - "id": "d7d3ad4ccf2c2931", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-files/dot.bashrc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bbee58b1e0787bb851e7f7a4d0c187a8122d68eb67e5fa464696310398ac005b" - } - ], - "id": "f34640882a2d94c3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-files/dot.profile" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8961ee041c712c735fb05287740ab62737777bd58ce631b54b07d8083efad3bf" - } - ], - "id": "7efa75423747caee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-files/dot.profile.md5sums" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c58a258cb9c410c29486aa8fa37f4e5b738bfeedc2b8e97be1cd6cff1df28459" - } - ], - "id": "cf04c4fb91a5f6ff", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-files/info.dir" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a378977155fb42bb006496321cbe31f74cbda803c3f6ca590f30e76d1afad921" - } - ], - "id": "f9650894b60832c3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-files/motd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "75656c9c0f960573c7530d29286d273f6cef68d9b17cfeb0d74c712860d56b74" - } - ], - "id": "6699481ffc06380c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-files/profile" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1fa84254053acaf326946957456e58714bd3b4c1efa311e272e03855a85a5ea9" - } - ], - "id": "04e95aa280f2c9a0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-files/profile.md5sums" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24f49f765b6363ba8326121b46cabad2ac5c34532cc8322a645d60afe158c4f0" - } - ], - "id": "d012c25526b4f803", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-files/staff-group-for-usr-local" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0cc1a09e6a22f2c31ef0279e880f5e53bfb9fc86eb4a57fa8bfcbcd6ad72fc41" - } - ], - "id": "08c9489ec6c1093f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-passwd/group.master" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "461a76b6b52e84fe0b2939fb0a1e7f95eb146a5802ae6993faf8bcdac7233a9b" - } - ], - "id": "ddf4fd3755a5a140", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/base-passwd/passwd.master" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7fb6cd0cbae547ea8306fb04c3e7041556668f62bda47e7633991e9eef828a77" - } - ], - "id": "d432a26d0ff9def9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/addpart" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "55d65e6cc7191d95fe7c13853b2aceb909935a12085dfeee4907acaa83a5ecf6" - } - ], - "id": "e80ee9dbbc51bd8e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/apt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a5dc6113e482c70f3f7a7c7958f4ff0b36f0bbd297558fa3c65a91b7357cc2b" - } - ], - "id": "b34567e7877e0074", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/blkdiscard" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2c896ad65a9e42d3f21c831227f5d295310127f6c421aca43c1e3253d44ac665" - } - ], - "id": "bb114b9ec7e14571", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/blkid" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c798cb5b92106e332768d11394c5190857b7c9ef98bf87befdc2a7e256dcfaec" - } - ], - "id": "7c40fd76c1acf6c7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/blkzone" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c14829e957b336b0bf3aa62f2b856028520840c058a74f6a70cd320a7f1d2a31" - } - ], - "id": "3185c68c6e28be89", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/blockdev" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "38548158ca1b6d13b515c4fb5107a6fc85ae04c8444f3edd75e98e42dba100f6" - } - ], - "id": "53034ae72b928fca", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/chcpu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6bb1f0dbb7af9f2891badb28f90e7ab9b82647a4b982a284b541968f669f2a9f" - } - ], - "id": "2db6b42dfc7d4f8e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/chmem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1dd13080d71c8d880e628eee89e8f493c979441692ef364e01ca8c8a761d381e" - } - ], - "id": "e690ba7c5c6e629f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/chrt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "52021091a5554e9b6275cdabbf1820ccd18eff38d8b0094284ef7fb68c38f66f" - } - ], - "id": "1366deaf81b70b08", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/ctrlaltdel" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "45a6978806b39111a579c0e7d4e85937bd6c8e20c3f6732d3ecf5fbd2344cfb0" - } - ], - "id": "256baed1c9215c7f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/debconf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4b27f347f4b8856172a212db48303df4dba707c7bc1de8256a338a4242269ed4" - } - ], - "id": "9d1dfe2fb83c4af4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/delpart" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5765edc85385066f4f8427b7218d312c2f568ae6dc7e8dc5bb41d2819dcbce1a" - } - ], - "id": "b692ee901ab441af", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/dmesg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f775a5a4e4d051193cfc5dbcc2ba373d5cfe350604f3c4b79372ef4a7e494f02" - } - ], - "id": "9ffc68a7050c5849", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/fallocate" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0d66d90486e2f0b6eee9a962adc762cd19f7311b42d344cf47e49ef1261f90e4" - } - ], - "id": "5822ee7eebee5c52", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/fincore" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ff73ffe3f15cc6ec0bfeed0a2c87b67eb1c9890ec5e7a23d18eab733d16c0df8" - } - ], - "id": "18ecb4fcc7d8e442", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/findfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40332dfec0e1d317cf5f9782d95cec282e649635b33e6449d67f664f74ae5199" - } - ], - "id": "fa5fa863601cb178", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/findmnt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4ea2ecf934319c37348fddefdf0f028614ce04cc1840574242bf47219cb0a8c8" - } - ], - "id": "30085a533415c8d6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/flock" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "183d49b2ac2b2dc1c8b1d970c564d1450f2fd941e9cdf035c55d729cc6de4f31" - } - ], - "id": "0fc15b666dee641c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/fsck" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "248bfdb2a17799ca341ffe8f80d516a44f0bfa695f0bdc5bf8b54805ba551f3d" - } - ], - "id": "c94c73a4bd012d70", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/fsck.cramfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a8469028d2e503e95d4deba084007f3880d58ea7b862390f27dbd75d1cd47b3b" - } - ], - "id": "e1854f169bffa447", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/fsck.minix" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7f99f914f660697f78e57850e4e70c027e73a0aa5074a28bd3a5d25c2564b371" - } - ], - "id": "7909c6f4405ee1d2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/fsfreeze" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e71286c19d02fb52ebaada127f60ada3d8009f332c13663e5e8ade7b0091ecc" - } - ], - "id": "f188f7ad9b794077", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/fstrim" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0ae50ed789c556f2abdabe09362169d385f9facf1bd05c13cf57b3f8e0078a5d" - } - ], - "id": "e9e9c336a2e10668", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/getopt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c2267922720dca8e99a257a4538c3fde276bbc72602613ceb699472c53bcba93" - } - ], - "id": "f241afecf4c4d0b7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/hardlink" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "45e99f2820185faf90598798842dfc1a1847131f3a909f601a88ec3652cd9084" - } - ], - "id": "1a961c01674a06a5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/hwclock" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a92b4a98b89f6c3af9baf94aab2cc24f58e0e2c4ffc6e2ea822cdc093d940ff" - } - ], - "id": "3c549e54696194ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/ionice" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "701db74a1133159cf159c9a182a46eb77ecdab618c52e373f432b3924d8e2707" - } - ], - "id": "a947fbd53b9815c9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/ipcmk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "454731bfb20b7be1e41f5b0704536a549ebf7ee755d64bd9ef882b04ae84173d" - } - ], - "id": "c559182dba10209d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/ipcrm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c8d2fc0706082e013fdec16a7b7fcc3aadbc0c3e22f87d8a818d9aa95f364acf" - } - ], - "id": "5a87c19a809c1497", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/ipcs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0afdd61db90044908eef15ef623eb9e6f4598cdfe581f20b1b812650d961f567" - } - ], - "id": "16227348c54f06ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/isosize" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "406ba6772a881f22d10cad9096093673513c8426e81594c44977e1a57e7c4724" - } - ], - "id": "0bf4eed6dcdf9043", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/last" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f2a5396940e79dbdeea768970b2960d067e8a2fb78e9379a1b1b0fa250906595" - } - ], - "id": "f69bdcc3621630e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/ldattach" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "20a52821ce9e70f58e72f9050e3037aba96986aa39403a7b36bf5fac3de1b2c5" - } - ], - "id": "364cafd84530e191", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/logger" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "97287d6f705c048fe6fa6e78c2e9693af0e3fdcc13efe56bbbebc6c7fdf71a93" - } - ], - "id": "e7d1c44d3259e06c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/losetup" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "af58e0229e97667d2a6fe308598ca477d834bef52874b0027b6e6be1c0ca48ee" - } - ], - "id": "7e2b4840df3ffe72", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/lsblk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ec059e2ec6a5d1b942c3d2ee97bb46e90db4718fcb9f32b16b932c83c301e64" - } - ], - "id": "25b7df61d6ccac72", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/lscpu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "650711cc8c467b10fc463a333d3bba815810ae9cc1dd8b5c8bc0181b9721df82" - } - ], - "id": "2e91d7ea5cdef88c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/lsipc" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f96cb1256d51c5da328e513746c4e8f9becc68194015e9cb7a72efef94f82a81" - } - ], - "id": "2247fc30e6a6b719", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/lsirq" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57b7d517dee24e93362bafa490b7904f37286f954a2bed21b256b3ca1fd8f4d9" - } - ], - "id": "ba18dd856b030a4d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/lslocks" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "83e99df185866d7249e3c7e0f521e3532678f43a69a675db18d4da00719cda26" - } - ], - "id": "039c2c62e3830068", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/lslogins" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d6d396f2c0581a5a3a6ab1bd9ba3c12a6159bd370bafb58d73ffa1f638a7eb56" - } - ], - "id": "70c9b9200f38c950", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/lsmem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "48d857b7124298243da9467e1ab2c32244784a55d9032976319df7908163c9af" - } - ], - "id": "4956d727c7f90ac6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/lsns" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c1460f2f78f58e0195f4dc3af4a5e92925aa23f3f6ec5c73a7565329a7eb8b3b" - } - ], - "id": "a6f08454b7e559ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/mcookie" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "67d09288e327f405fa72009d7e85b81a70d20c5577ffb8b418b6b0de043e7fc1" - } - ], - "id": "9cc56b577c1d4def", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/mesg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9381f7062ae523b2dca7d56bfedb85cb56f2815aaebdfddf7786070feaea82ab" - } - ], - "id": "6b7ebc2fe3568798", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/mkfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1e299cd368846c00206b10065ace4de55a4d12398391c4455e9b5a1d113b12a9" - } - ], - "id": "6880d11bbf5f156f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/mkfs.bfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b5220be6c4783abb23363db05614aea0391edd323b4f40fa3e6db85aa676bf3e" - } - ], - "id": "b9569c8bbb0e1f9c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/mkfs.cramfs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "239a17396534c07735396ca481e0a0809aed212cd55c4b5ba2a3a7885585b54a" - } - ], - "id": "26553064dff7fe58", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/mkfs.minix" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59832f9890280c2e9de874ccec126b3d10535715c167f122630c7519aa51d0cc" - } - ], - "id": "8785fe0ae95724d7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/mkswap" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b6b9c87cc8d0d095816a3e7a34b9df0613b6fff7136c4810635a4c03f75d3993" - } - ], - "id": "001693de6554b857", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/more" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "69abb48924f2326ad41553afccea4c2094d076c9a0c64e41e5d7675d7a1ed12b" - } - ], - "id": "31c58f6c73e928c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/mount" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "192a5df5c85f66a4ae83db659d15b974a7febec7922df62d0f5d17450d717451" - } - ], - "id": "030224da085a21ed", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/mountpoint" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1519a1b96f840f476647daa9d041a7d5db2dde0d80d3c99e973b1eccff8b259d" - } - ], - "id": "5b927ec9958692bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/namei" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a0b40a96777ccae4002832fe843fbe8dacf55589a6c5cde4aa900e604135ddae" - } - ], - "id": "0c13e6584e4f1c9a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/nsenter" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "855abe1f098aa44985b3e59602ff184e3a6d69bdae5ca41a2caa8a1e8d755738" - } - ], - "id": "bd93efe0b0a778dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/partx" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e3fd2fed08fe53b1bdf0b344633375273ce54bdb75c65a4383f2bf29aa9868dd" - } - ], - "id": "98d5b973bbb1dd66", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/pivot_root" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "feb868f23ea5c5833a4fc9a642b78a83dd186259826304be649e7902086b8f9f" - } - ], - "id": "62428a73084835cd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/prlimit" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "874cf09268bc51c0dd77267ef8e3d9948ff9c8c376a1b9ce911ca135b7baf9a5" - } - ], - "id": "c4bfdcf142caa037", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/readprofile" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6fdf113c8a43356f2bddaff1613e3f66679f5f0b64d061a30e474f146163569b" - } - ], - "id": "74fc7f408fb782ec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/renice" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "12f257f9ebf063757a66dae10aa1d5f770a0b81e65a61a3379ea03f7e57681d0" - } - ], - "id": "f897739643a59ebd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/resizepart" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ffab4735212694543267952b527e72f3ee4ac9b0e07d49b432db219bd26a3aae" - } - ], - "id": "5be9fd3e14153c5c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/rev" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "00d17c7f0f1d58372d1687ddc0004c0758818bc845de2caf1ec65435297b8a9b" - } - ], - "id": "ac0697f96a184648", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/rtcwake" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c3eb24c1ce3f562850d0583e1b3cc92ef8c30152952338b16a7de9a670846aa1" - } - ], - "id": "1c937fadf4fed5e0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/script" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "28cbdd0f09a3280f16e28735c26bceac2c40d591103d25226a799404700baacb" - } - ], - "id": "a597490f6fd8cbb6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/scriptlive" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "810069f927880adf780c39ee2d6810907c4529272bb20bda7cff3403cfb11b42" - } - ], - "id": "7f7687142ada7bbf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/scriptreplay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bccea2e0e6fd329c9614c4c04f09093de21ba76595ef093bd70027df28bda533" - } - ], - "id": "e50c5ed0e5433328", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/setarch" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "06ae6f7d80cdb4f1675690b89bf17298c9dfcc4c42c118fb04cf9cfa950cd3c8" - } - ], - "id": "c2a95d87dc607ca4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/setpriv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "376e5ac5d2a289c03bf36a8f9a86ae160cffc6693112043bf33d2d4f99614c30" - } - ], - "id": "6259bd45bdd42d7e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/setsid" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "19ba4c6271e87a588517a67d2c02aae0683b2ab45c047784200e6a435da9248f" - } - ], - "id": "a33b03a23977ab03", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/setterm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed099e33c9c58bd90b2ed96393c30014c31aa42329cea2a27fe23c2d4a8b8ee2" - } - ], - "id": "f6a4d94fc4338c15", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/su" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1805b9fa1953570fa4bb99339afbb25a6d701ce5a442d22b8ddabe486b46c9c9" - } - ], - "id": "bf3bcd9c9eeb9fa2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/swaplabel" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e84478bfbcfb4eb0accf290e7b158085cb0db7f679afade1a270f7e1e731a691" - } - ], - "id": "195d5a338d3827b5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/swapoff" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "717091ab909ce678799aef4aba00469550dfb05736640440686fecab2d41ae3c" - } - ], - "id": "310b2089920a3f91", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/swapon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3128f328cc438f772ace3b8428c2be81f1bf061e3fe7d4c67a5c89b829654e36" - } - ], - "id": "bc8d2b70d21c3ff5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/taskset" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1da2c79d90861a47fb35ac547ffa564fd39ecc8e39c79c3b01f34955012cd1db" - } - ], - "id": "a8308a0576c12c6f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/uclampset" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ecfc97f8521702a1eccaf1166803dc3616427d061280907f16e000112659f33" - } - ], - "id": "98b1fa957222096c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/umount" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "219a4e0e788b1085867c299bb6730bf2f86a9cd22cef9a5747512cc540035788" - } - ], - "id": "90f9a4ae251117dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/unshare" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "69a8a5a630ce32790499b7690d033c7d73c40c861a5985ca23c4f1585fd69b48" - } - ], - "id": "69816dfe05556bb9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/utmpdump" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bc527b9f476ec852921e2cbbc9fbfc2ecc4c1677c58103fb88678e25e11528a1" - } - ], - "id": "e428d29a16077b18", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/wall" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d2c3148ba44506574ddfa4cb939d91bd99e8e83b73fbe36119cdba9452e68401" - } - ], - "id": "0493fa952bbb94ca", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/wdctl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ffe24d3807609539cf62842702f004f4428955a51e6e8152b6bb8f6523f394d4" - } - ], - "id": "a902faea48350427", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/whereis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6baa1a57a32dcb468e2cdcd41fef429704a982820210016dea037f896e402d8f" - } - ], - "id": "5bcfd5c8b5a3bd7d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/wipefs" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3f7de813fbd3178cac3953891b3c2629f0f911001f2e6e480c25aab193510ebe" - } - ], - "id": "30ea1b31ca2776ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bash-completion/completions/zramctl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93494209c18c6dd053689e30972c1f733353b47b61dcc48ece77a5d74d7730c7" - } - ], - "id": "54fd3d496c3904c1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bug/apt/script" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "da7d3875a87dc44b12a53b46df1b653d8f42482e6987ac23eef6c5b1669c8840" - } - ], - "id": "637ad52099452efe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bug/dpkg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c0306308b3e8655628cca8238616b8750ab7003201bdd68937a4739fe087ce5c" - } - ], - "id": "1a7bf221a71bf714", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/bug/init-system-helpers/control" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04846f73d9d0421c60076fd02bad7f0a81a3f11a028d653b0de53290e41dcead" - } - ], - "id": "43bd206ecb9bff2c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa18ea4c9a8441a461bb436a1c90beb994ac841980b8fd62c72de9a62ddf8ae3" - } - ], - "id": "0dfcedd9b9f62762", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e3f237813d3f3e2f5767bc2a694a7557f84bb79fd60ef1adc25afd0c1fc5ef6" - } - ], - "id": "1de2aa4f72023941", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "efb2df6e0075fa74e448077e402d171851b2ffe4668a614adc00dcbc75633afd" - } - ], - "id": "dbd9a8e4a6d644aa", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/ANF_Secure_Server_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6d25347727f267774611677588d76f8a54a6e14d3e99dd69ef2c20612ed87c5" - } - ], - "id": "9e1eca20d05abfab", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7108110fdaf19e3e5a7ed8fa38557248e79fe78bb2e9eefe7a0bb801cbfd2db7" - } - ], - "id": "c609c3a52126fc74", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b68109f50ba0abed3b938afebd2ab42a2f5089062c59e9fc74425e2742d894bc" - } - ], - "id": "f39da54e2a468c10", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "94c88202bf2c13c68b90d124f93f62374f36776b0bfbc110c6d06f829290b580" - } - ], - "id": "003dd23084447fc3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "42f0e946149ae0e0c6a1fb0e33150ce863479b2ef7b3c700161102ad1dcb34c1" - } - ], - "id": "41cc8d2c37f39a57", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2c43952ee9e000ff2acc4e2ed0897c0a72ad5fa72c3d934e81741cbd54f05bd1" - } - ], - "id": "1d4759585638c5cb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a3a7fe25439d9a9b50f60af43684444d798a4c869305bf615881e5c84a44c1a2" - } - ], - "id": "6d66a33b1484fd70", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3eb7c3258f4af9222033dc1bb3dd2c7cfa0982b98e39fb8e9dc095cfeb38126c" - } - ], - "id": "8ac54615767e8055", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b0b7961120481e33670315b2f843e643c42f693c7a1010eb9555e06ddc730214" - } - ], - "id": "99aa2cca2c07f68a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "79e9f88ab505186e36f440c88bc37e103e1a9369a0ebe382c4a04bd70b91c027" - } - ], - "id": "76a6d0de7d5439a1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "283fd555713ed4ecfcb4935f5ed5d4a9bb776236803e2910eb46e70903a3511f" - } - ], - "id": "43438b9e4b0d61fb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a618213c5dd7cbb59b3154de7241d7255333a0619cf434329becae876ce6e331" - } - ], - "id": "01dc4f7efc3c658b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068_2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d1c290ea1e4544dec1934931fbfa1fb2060eb3a0f2239ba191f444ecbce35cbb" - } - ], - "id": "7c89e35dcd347bd9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c2a7510e01aec2c9b8cc2c9d03b16576858a93863a6d0a31a2ac05f47f5dbe1" - } - ], - "id": "04a8294a7504832c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8db5b7c8f058c56a8d033c2443d34fdfd3656150eaa73fe63c65161e7063ce99" - } - ], - "id": "ba558bc87e093cc2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8adefca890c92e6d0877fdcba07655296852217da657026aea69ee547642528c" - } - ], - "id": "296077c338a6ba7a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "94e4ab21333740d7ed0f2b5007744e5cf6792c0ddf4c6bdfb3ce8333010e7306" - } - ], - "id": "3f05b0aba7cf9eed", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e273097c7c57cb7cbb908057991ae1774d4e1e8c6a062fb6be9e6645b32fb431" - } - ], - "id": "07e40e8c31c95417", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d69f7b57250536f57ffba92cffe82a8bbcb16e03a9a2607ec967f362ce83f9ce" - } - ], - "id": "d3e63c533628a76d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24b0d4292dacb02efc38542838e378bc35f040dcd21bebfddbc82dc7feb2876d" - } - ], - "id": "113d71a2eada54ca", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b28a5568648fef0d3faeb916cb7bdb054724cb3b5a00c6bfd3d8a2fba7a8bba" - } - ], - "id": "322e314f1675036a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Certainly_Root_E1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0c78902126532fde9eed4b2d8b6a2c9bbaa8b3abc59f233c45c6cb5514a9f808" - } - ], - "id": "060b9f0a5b6217c7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Certainly_Root_R1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d1e1969cdbc656bb4c568116fe2d9b4f8b02b170dc20193b86a26c046f4b35a7" - } - ], - "id": "9aed2d8ecd1e5b9d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Certigna.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe3b44c18182e167121a2c645cecc4817441d469dc00633e60fe8476f9e1ad96" - } - ], - "id": "213e6bcf3ef05516", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Certigna_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c4a426fe57a7e4e6966e2103f2941eb7263e7c35727dd0f412bd593467304999" - } - ], - "id": "df026c2ecf613f3f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Certum_EC-384_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "43f1bade6454349c258017cc99113f8b6a5712e3807e82ad9371348d52d60190" - } - ], - "id": "1af68eedc9109f75", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9dd4cbb6d2c29cbb3ca98da02c042a690c0ef4c0521d98aae37e0a704c4bf210" - } - ], - "id": "f8caacdd042be554", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e6c62d3f63ba03f4dac458b7dac6c09eb4d71cc3c6621769c3883ed51677c01c" - } - ], - "id": "0c68e6a8cec17a4c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Certum_Trusted_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a5ddabd1602ae1c66ce11ad078e734cc473dcb8e9f573037832d8536ae3de90b" - } - ], - "id": "6419b11b1e168e9b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ae927c01e73470cfc89943b5cd8f26e481d55c833517c1017f3fef404a38a317" - } - ], - "id": "c49a52e8786c0bb1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/D-TRUST_BR_Root_CA_1_2020.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b83e3ece7c33128cc31ac97595ce1bdb524db3f924623093b64e6a96ffb4b9b" - } - ], - "id": "8f8a6c578123519a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/D-TRUST_EV_Root_CA_1_2020.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a00b8aa918457f5e7e58457b5e2f80d640fa77cc290572aaab1ae7b4734a9528" - } - ], - "id": "25a850ec8810ab39", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f81ceeaf6341513ef391ab3ea3302e8b2fb2c1527752797bba9b20ca22048b3c" - } - ], - "id": "d1d6e79c5df2e3d9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b52fae9cd8dcf49285f0337cd815deca13fedd31f653bf07f61579451517e18c" - } - ], - "id": "4d6914d52be6d1ac", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "660b5aa96668c5162f4af6b0a01241d8527aef8fa8a5307a7033b83c3de4a72d" - } - ], - "id": "d8a224ac6c4e495e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c4fa4cc30be6aee0a4c0dff81f28768eedd83e8d4934a42f82179cbfa61f13ad" - } - ], - "id": "6b3ffef1de503a06", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39fdcf28aeffe08d03251fccaf645e3c5de19fa4ebbafc89b4ede2a422148bab" - } - ], - "id": "4aa927213c534810", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5d550643b6400d4341550a9b14aedd0b4fac33ae5deb7d8247b6b4f799c13306" - } - ], - "id": "7ac01111cb9e71d1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1914cd2d4cde263315f9e32c7683fc0e1b921919ad12b256d49bf782011c03cc" - } - ], - "id": "b238cb2eb7d2995d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d98f681c3a7dce812b90bf7c68046827f3bf5607357f1e4918c5dc813b359bf1" - } - ], - "id": "809aec4c7c0bc300", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "05161ad2ac04a0df956ef803e127aa877cc5131e0a727ed8e5de43f02e8868c4" - } - ], - "id": "29e154a13892eca0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_TLS_ECC_P384_Root_G5.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe64d4b3ae749db5ec57b04ed9203c748fff446f57b9665fad988435d89c9e43" - } - ], - "id": "871244d23024d9e5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_TLS_RSA4096_Root_G5.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce7d6b44f5d510391be98c8d76b18709400a30cd87659bfebe1c6f97ff5181ee" - } - ], - "id": "2b86d36093f9881f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "789655e3b4c0721faa6a3ffc30853450794fecc5830a12b632261545c3a241bb" - } - ], - "id": "722cfbb61969bf4e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7aa7e87cb29fb7303d8d2402c98b3855b45859640211773c279f0c046e2071c6" - } - ], - "id": "7bee19c2c4bfe5f1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/E-Tugra_Global_Root_CA_ECC_v3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d96bfedd2e72169afa2cc958f122785a00e5cfc4b860eb8419c3196d99aced34" - } - ], - "id": "c416f83d7019e37a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/E-Tugra_Global_Root_CA_RSA_v3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24e0277c0c028497c6b0abbbf7163ec3ae7b341cadfb0b90bc00c4ad642172cc" - } - ], - "id": "5bac75a0983948aa", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "745bd29be45667514b4000e9cdb70cdecad0f02c78232ed722f64f7f80436e35" - } - ], - "id": "3270de45330ac436", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a0d7e56b32b767e076bd7d05ce1779dbe3656d0a02a9abe711fc79640b9f7fbe" - } - ], - "id": "a4ef2325b8428913", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "646db48fa7794bcab4581f264ff3fad4cff7bbd24f5e8bb170d4f602b6caf828" - } - ], - "id": "c63169dc0b034947", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9e01d7bbaaf5ebd3e4ff9c02e3c3a12aaa421574ca86ddb0cb3a21880f2e283d" - } - ], - "id": "fe55b1d82ba5e783", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G4.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b0bf3a444f89d8be7db120bfecaa2f94d9e49ede21f680d674c1e8d839d8a9a2" - } - ], - "id": "6b48c139c7bfce7d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b3bcd05e1b177130f6888fcc1cff4e01cff44ef8e6b0d035f04ad6a71dd0879c" - } - ], - "id": "daec6bd0c096dc7d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GLOBALTRUST_2020.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4195ea007a7ef8d3e2d338e8d9ff0083198e36bfa025442ddf41bb5213904fc2" - } - ], - "id": "2194d481f7e05c79", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GTS_Root_R1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a49076630e489e4b1056804fb6c768397a9de52b236609aaf6ec5b94ce508ec" - } - ], - "id": "9c2d8098b495942a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GTS_Root_R2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39238e09bb7d30e39fbf87746ceac206f7ec206cff3d73c743e3f818ca2ec54f" - } - ], - "id": "83e8b0ae65f904fe", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GTS_Root_R3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7e8b80d078d3dd77d3ed2108dd2b33412c12d7d72cb0965741c70708691776a2" - } - ], - "id": "aa6d161f02a90812", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GTS_Root_R4.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d1b69887f73444c0fc0a6f22a2fe961c2423275f9c38ba7d50da2a4ba75394f1" - } - ], - "id": "1788867e09e0e00b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "80eeafa5039f282345129a81ace7e1c1e1d4fd826f1eb3391a4ea56f38a6e3d8" - } - ], - "id": "6d1aea9aeec42f4f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df68841998b7fd098a9517fe971e97890be0fc93bbe1b2a1ef63ebdea3111c80" - } - ], - "id": "c0c59ad18ef651ae", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6bdc59f897631af7811e3201cbc58e5999de2600ae8667454a34514eecfd8381" - } - ], - "id": "9a225fba27a15bc0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ff8425be71c1805446bf10601ce3cb9619889866766fc9285583ca5a4a7de94" - } - ], - "id": "5ba64217af08b7d4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5bd16128d0934629c2e1713140a6f97c9828dbb5429ab5797b2573efc71de1a1" - } - ], - "id": "7c2856296d8fd675", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_E46.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dcc1a6246e13880ca5b73ef547e082dd0401e4d8837b6d211be82f7be791ac65" - } - ], - "id": "f5f40fd42313137b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/GlobalSign_Root_R46.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47f15a52a984ab1f9cd92b6c1849c0465c1b3c9c6837d54e5d2c004fa01b69b7" - } - ], - "id": "ccee57a53ae8ef58", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "500329abac100a953a7396b54b36be57d333022f17401bc948248ea179cf1784" - } - ], - "id": "916c0bdb42e60006", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6dc63e98b3a5e6a595c7d583a9c47c5efb6d316957466fd16c785b423eacf37" - } - ], - "id": "b3194a3a09c7f77c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/HARICA_TLS_ECC_Root_CA_2021.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "05e0ebf9643197ccf8036cdd86a2ee14292c2a077dbe06435ed30369b8762564" - } - ], - "id": "f4276f6a2851e4e5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/HARICA_TLS_RSA_Root_CA_2021.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1cdd90d42b48cced8f5ecbff087c49da56b224f0272e4b5074e63b82fff5fb16" - } - ], - "id": "4a1409294a64375c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "677160e6297b48b87ede98ab7b4f2be55894491776f6191937ea397d01a6fb4b" - } - ], - "id": "072399e3ca6e8c0c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c3f06f635f1939ebeb125e5c1f030e329b63dd808d3ce803b1b1794bc78b253a" - } - ], - "id": "3c68dcbd5772e3be", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/HiPKI_Root_CA_-_G1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9dd93324ad79de9a6d595611342d38ae6ca937772c65e11da3ebf88c5a248115" - } - ], - "id": "7d0905e6e41bb041", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1fd9801787f30a4ab835b1462afc3f71473a5eacc74c0a22ed392bc3da9362f3" - } - ], - "id": "840358f6bc16af02", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "22b557a27055b33606b6559f37703928d3e4ad79f110b407d04986e1843543d1" - } - ], - "id": "e497536051deee80", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a13d881e11fe6df181b53841f9fa738a2d7ca9ae7be3d53c866f722b4242b013" - } - ], - "id": "3003981eff11b5db", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/ISRG_Root_X2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1d03b965511ce50d0a0bae1b549ed7048c783cfcba9aa40ea11d355b1889657c" - } - ], - "id": "46670f5b50a1b1a5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9b4282f5a402e19016c4874a52df3367eabccf05be851ad03039f777a602d30a" - } - ], - "id": "917c9b587db5dda4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1d37341b099afc610bf4feb387096577a0dc61bb8fd09444f1a199a1b1b117e3" - } - ], - "id": "24fbd8d988fdbf35", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Izenpe.com.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f670affee7b14140a6d20937db6e991102d5f8bac1d2562ebf20a1afda94d73" - } - ], - "id": "8d65b55ba4836d5e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4ee8ed700b7abe4836d119c8113bc8b717f4f1568abd7edd81f2526c5836983" - } - ], - "id": "2da85213d4ab72bf", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Microsoft_ECC_Root_Certificate_Authority_2017.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "626d330f6a8944fa4245f02f9795668e25a40b29b4cc5206bee73337b7dcd4d5" - } - ], - "id": "d7a293d937ed3b2c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Microsoft_RSA_Root_Certificate_Authority_2017.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9848c94859f83e48defe0b25a0f4347480b56ea2bb3336fe6d4dcf00d0d6031d" - } - ], - "id": "8d7a0597af9053b0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/NAVER_Global_Root_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40f60f2e2f83fb6c63ddefeba7939a7852b2d468183ea939cc4dcac8fe4cc87d" - } - ], - "id": "484c3bc4e62f54d5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2dc52d373089ff5173ac392a464746dd066aaa3b7d1b3494a473c96686666fce" - } - ], - "id": "4a482530eddff6ed", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "17b98c4d832e8349ecb55f1f90e41dfc7bcd9410d1e925ccd06612cd3b9b9a54" - } - ], - "id": "2a258d939e58fec1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4db45324410a01a7023b038e5da7d7274d3cfd392565c351cf3d297fd7664c73" - } - ], - "id": "ac514c252a68382e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8c4220477ed85355fa380466aa8f559106d8a39fc90d3e0c121749e19444064f" - } - ], - "id": "dcddabcb9674d012", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "825c67f5583131425c4e33275cc8e5c9dfd02cd190c6d71e1d335621e82965a8" - } - ], - "id": "03b9f1f0b02c1e25", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a2ae0b4ec9d2a4c4e150756a3defabd15bcaa75ee2b599e722b27c6a2998d00b" - } - ], - "id": "b1eb3f7451927f8b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "198cfe560c191a800cbe923ceca0a4e4f3d5a0d7ff9316b47998765fdc0897be" - } - ], - "id": "606914033644bd40", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "662d60a283f416d888ff18831009e2cba95c61377f648beeed91a3dea12ac286" - } - ], - "id": "3b96d1539bbfdc8b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a0681f1a11d5c02760bcb68b61b0d332f6c197e239c4b30dc47f91a79a73282b" - } - ], - "id": "9c0f406c015cbec1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b68d02ce35bd02123cf5fcd329bdd33640214715dae0442a97782a4471e9b292" - } - ], - "id": "2fed911a4ba5f190", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2e368debd3626ea9c5d94c582d80050a530b505aa77ba231eb13e4d208c36d67" - } - ], - "id": "d7b77d501499d326", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cbe8a1eec737c93d1c1cc54e31421f81bf358aa43fbc1ac763d80ce61a17fce0" - } - ], - "id": "6428bc6e21a1aea5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "20828fd7b9795221c10272f9f6ed29638f6dc2614465adab1b93f2bfc484c659" - } - ], - "id": "19e2aef77372eb76", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a3e70af2c4b48562b61fe858d9d30f073f2cf2136f2af01ab5a966673e70af4b" - } - ], - "id": "17e1b500b0fe9f4c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/SecureTrust_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ee52fb3a5afacd55a7a2e00f057f7f64776ea0d536036f54c57694961e25179" - } - ], - "id": "6d1a5665e9b4315a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Secure_Global_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef94d474067b306c482dfd066130f04855f50faecd461cee2964ce6c7260000e" - } - ], - "id": "ef6ff92eb42d5131", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Security_Communication_ECC_RootCA1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39ad3110b8f84821ca22cfbd995914f2149521d27ce576e743de6a00dc39d9db" - } - ], - "id": "2b445db86b2dd03a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40ec121c66bc70c48d5e512fa2d1d9f040c329467232f1964edd62fecb32af87" - } - ], - "id": "9f9f8f8f18507be1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Security_Communication_RootCA3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "684f2f6ce0a18fcb038d08a495846fbc35b96d99875fef1b24384cf0944a68c3" - } - ], - "id": "290b56354ed3fb69", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ad8373ec50073168cb6862a0e119adf2c1065c896adf7eb9695779739b4bb2e" - } - ], - "id": "e4b7147124b37520", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca3760ba63bf0a2c5dd0dc7fe897838cc58f12a386b4ee53d2065229848e96a3" - } - ], - "id": "50c904dc658c7c59", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "870f56d009d8aeb95b716b0e7b0020225d542c4b283b9ed896edf97428d6712e" - } - ], - "id": "7634a14ccec2bf0b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0ebb1a5d93b86ad9dcbd294413f272817fe3bb8ba46f4ec8192b3b805f2fa8ae" - } - ], - "id": "61175f715b131c5e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9b3cbeb7d75271e0b62d40d60f8b18a35384ac6b171209231732fc778cfd2b5f" - } - ], - "id": "f438e9487e42365c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b30989fd9e45c74bf417df74d1da639d1f04d4fd0900be813a2d6a031a56c845" - } - ], - "id": "bdf5561ffce22776", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1cb130a113f4e8502517a679808a98bf076d59bdb223bfc61cd224b8e1abda49" - } - ], - "id": "568b108598882631", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6904218e180fbfb0ed91d81e892c2dd983c4a3404617cb36aeb3a434c3b9df0" - } - ], - "id": "0fc53044b4756161", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5dadc31b57074a3168d1df23bb8b6b920acae1d426bf2288fc2de53cdd571089" - } - ], - "id": "b089d4f2ed137ec5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b69a59344e58615a691fa9567d55ad6337f09b57647a389242cbf43716575559" - } - ], - "id": "5f1ee02a8f8d231c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "303c346ece82ca4f6713ac176164285d0469f326b6f12a787e11f5d702529277" - } - ], - "id": "d29498150e0bc082", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bf3bd189c3dd33bc81635d60284461f0d937c2c1d51cc4d7851c13466419fcb0" - } - ], - "id": "dabe6f2cd2663733", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Telia_Root_CA_v2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0080981e6ff76e4f00a6fdf9e4e6cb98a9221eb334f4d43a07e194d23f648f47" - } - ], - "id": "57afa0e2ac4330ee", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e227db3bb37e1158f9c5d9838d0ec74109d9816b60d69b3ca85def4b293d02dd" - } - ], - "id": "42ec1b3b4ae9a186", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4dc2f45b7ba821ff240be0d0c816a996cafae929b8f445b0510d9073e1aad5e" - } - ], - "id": "a4f86f30f69eb098", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0c7ffc481084cad9ccd3402eba9401b0f5abea0917d985e9ce401c8efbad4b04" - } - ], - "id": "485e677fc159c14c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Trustwave_Global_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f08c4d2b700f7cd5da4dc1b60f4c57090fdc692cde8a7221f35b70abb4cec363" - } - ], - "id": "ec4f6d472fc5a8b4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P256_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a83c5b6097b03509711c9cd8de59def7ecf99ed72b4076dc33f5b2e35545b3b3" - } - ], - "id": "c9c4fe9fc3019be7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P384_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a852f7182753cb0193299c6cb2b4a106b1c38a789217b5eb380d736c5cc0081" - } - ], - "id": "e47b27f43dc1181f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/TunTrust_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eaa3be600a842e5b603316ed14e9ae11a43003f68a8317f0f2c01a516da4e586" - } - ], - "id": "493f6ad93f50b52b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/UCA_Extended_Validation_Root.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "de2e7b1bc7a2aed4e5866d3655d1041206c27caf376ee81bfc4012e8225e0e7c" - } - ], - "id": "709c8592fa6eb6d6", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/UCA_Global_G2_Root.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "08fb40ba4144166f6ae80c7ab60be23e97e5083836d45fa85a33a5d0bfec10f8" - } - ], - "id": "0b1b570f028b4201", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a3dbcb92ab1c6277647fe2ab8536b5c982abbfdb1f1df5728e01b906aba953a" - } - ], - "id": "138699f6a93ef4e5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fbe0f62dde93af96d1b8e27b19b2ee200a834880eca805585b66d18d2ea08192" - } - ], - "id": "643eae52d894b458", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cf339eae15268aff66148f3bcdf112a7700eafded3edcb3f86c60133b10e03f8" - } - ], - "id": "ab7ff92d5936aae8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "80eee369aa5b29931209226fcb4b014ba31daa7f630d44a196817c1bb6b334f1" - } - ], - "id": "17715da43fc0e75f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/certSIGN_Root_CA_G2.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8c1306d5c64b43ce6c189b8450f27160aaff3f504211ca6819af6035ae1a7d73" - } - ], - "id": "b5b73b4176883144", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/e-Szigno_Root_CA_2017.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d22b235421616835f68d15801d82b44e7c463433f8bbdcc92f9c023fafcb2bf2" - } - ], - "id": "2b99f95041f3e5a4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b1d0ac5a261e857409cc921acb515796538b48847722f0a00ddccbf60bccec81" - } - ], - "id": "977aedeec7f166ae", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_C3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "36e68e205b53c67c7a013894e0d5c8583063468118d1ce78ecbc2200d1dd185c" - } - ], - "id": "425fa265aab92db3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_G3.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fb98230f8746d60429c20f8ce04254384337b479a77698939f7041d0c0eb4289" - } - ], - "id": "b18d7b11b426f680", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/emSign_Root_CA_-_C1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8d390d4c54f6a4a040b04413f1f002192027c66a2a835741f78a152074584a27" - } - ], - "id": "ac48bb847eaea662", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/emSign_Root_CA_-_G1.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2ce349e2da9df497cc62aca37b009a2c3261ccdbe06a4c4a063f8105da40eb5d" - } - ], - "id": "fb5b8b37e75dc04d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/vTrus_ECC_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8cc726cf62c554561e89e1237495bea3026b1709ba7153fed3401fcd489b5aaf" - } - ], - "id": "d4b8bf978f21b0a4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/ca-certificates/mozilla/vTrus_Root_CA.crt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30" - } - ], - "id": "bdc90b4426aa693c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/Apache-2.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b7fd9b73ea99602016a326e0b62e6646060d18febdd065ceca8bb482208c3d88" - } - ], - "id": "c3295fb89b646e9c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/Artistic" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5d588eb3b157d52112afea935c88a7ff9efddc1e2d95a42c25d3b96ad9055008" - } - ], - "id": "49c9ab2e3b6169bd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/BSD" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a2010f343487d3f7618affe54f789f5487602331c0a8d03f49e9a7c547cf0499" - } - ], - "id": "67b114eba28d4145", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/CC0-1.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d8e94ae5fdb5433fcae2961aeb1a8cf17174d6f4a0465d24bf37dd8a038bd439" - } - ], - "id": "312661b604bf4a6a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/GFDL-1.2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "110535522396708cea37c72a802c5e7e81391139f5f7985631c93ef242b206a4" - } - ], - "id": "b256763dff7f51ec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/GFDL-1.3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d77d235e41d54594865151f4751e835c5a82322b0e87ace266567c3391a4b912" - } - ], - "id": "6b2a00b4bc929b50", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/GPL-1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643" - } - ], - "id": "5f032138dccfbb44", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/GPL-2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986" - } - ], - "id": "6837ec7d13bb0ae4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/GPL-3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "681e386e44a19d7d0674b4320272c90e66b6610b741e7e6305f8219c42e85366" - } - ], - "id": "e5de4f0e183c62b2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/LGPL-2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551" - } - ], - "id": "28f126d70d41fadd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/LGPL-2.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e3a994d82e644b03a792a930f574002658412f62407f5fee083f2555c5f23118" - } - ], - "id": "7a2d2ea8cb329903", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/LGPL-3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f849fc26a7a99981611a3a370e83078deb617d12a45776d6c4cada4d338be469" - } - ], - "id": "eec8bd2463408c14", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/MPL-1.1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fab3dd6bdab226f1c08630b1dd917e11fcb4ec5e1e020e2c16f83a0a13863e85" - } - ], - "id": "cc23a113b13e40bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/common-licenses/MPL-2.0" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5d3d4df0fda6e6bc3c81a81e5f2ba2cfd68921d5f17621d1a56dd7f860d0ac4d" - } - ], - "id": "7682b73323d3111c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/debconf/confmodule" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9bb739cea6c1f88c3282c6743a230acba64ac1d12c40a89daf12fe5f2390cb68" - } - ], - "id": "c7cd1ae31be53eb9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/debconf/confmodule.sh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2ed2f1e25211c95ae120cecfff540e33a533c03bb2793504c3d692b0b034c2dd" - } - ], - "id": "4df76420454e9eaa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/debconf/debconf.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3023d816728349ffe6647f852722046631f1802737753f75517ebff0461473df" - } - ], - "id": "21fcd72f0f22ecb5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/debconf/fix_db.pl" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "030ccf14183171765689c3c8982d60eeb6295e32c4444661767389803eb38a62" - } - ], - "id": "26ea05f46ca47d3d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/debconf/frontend" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "184fd1ac95af5ad460ee875e9fddb4975e8720ee7d805d964c68d125573537be" - } - ], - "id": "70b635a015266e53", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/debianutils/shells" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "371fdcb21637c3a2206942907ad900cadcceb1b65d840d16b1bc49fef7fbd5f4" - } - ], - "id": "decefda10a22cb81", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/debianutils/shells.d/bash" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "154db7369dfe4214fc614cb81c0acc042ce3a813d94ff4d7e59a94e99531370a" - } - ], - "id": "1a5e5bed1d41377c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/debianutils/shells.d/dash" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "159902a0284dbbcc039824ebab914948f8a803280fa2b67742b8f7fd40c50250" - } - ], - "id": "531875250ac5eabd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc-base/base-passwd.users-and-groups" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "83026123456c2f7c1cc44196701180752a65423ade28344ef277cf577b12faa6" - } - ], - "id": "aa9a4b699a2e3ef1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc-base/findutils.findutils" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4df0644bbc0e206506fa8804d84c149a6d6773573182826d0282b8498f98bda3" - } - ], - "id": "12405501eedc3064", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc-base/libpng16-16.libpng16" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b143053a4862ab354831487b5f8bd31dc9ffdc589d15de9d9c764332a0209796" - } - ], - "id": "7f259153dee2e6dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/adduser/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4701305243d8d746f4acaafe15d94f946251b05691bd6917fef41dd15e9ee12" - } - ], - "id": "298ef8aed0d5d2db", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/apt/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fd7e4aae7e7b05f217bcf2d02322825c360e66c52c4c2f1b28d784d6297a1c23" - } - ], - "id": "168887a4ddd0b9a7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/base-files/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0f1cde79bd80a75f9029ae9a8c252b642223027ef36f6989c63a8230aae576a7" - } - ], - "id": "f35a309afa277d61", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/base-passwd/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "06319d84c3e5ed096036f6a9310a030c7e84e50dff2b8a6792285c83ec0ada73" - } - ], - "id": "70ab92d28d8f61ac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bash/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30539a2df6a89d844f43c727505a3193a60515f8ec6cdede8cc515ed22941d1c" - } - ], - "id": "774e46d8158270cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/bsdutils/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e85e1bcad3a915dc7e6f41412bc5bdeba275cadd817896ea0451f2140a93967c" - } - ], - "id": "6200e9346a838423", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/ca-certificates/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ccfe62f0f73541f1c76a6d33aed26290391685c43f914a5e24c6b1f72cddcdff" - } - ], - "id": "0d0c802f23704a8c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/ca-certificates/examples/ca-certificates-local/debian/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24e86c5ca53d6bfd8e0c47988160daa62d10a74997fe11f651e1d9533c78bff6" - } - ], - "id": "79e34416c4471899", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/coreutils/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7c131b21e6e73b3b085a7d9f1637b68f5f92b832cc6f462e0c978fbe7841ccb" - } - ], - "id": "8ba915fd11067ef0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/curl/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d98c53f281321baad38164aa9ae6e368a9253be6ec51bd26a759b5e72b326f4a" - } - ], - "id": "843c679ed925a586", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dash/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57163c71bd8a5289660892827dd0dfaa7fef47f89deedc9dc6711ced7d0a28d7" - } - ], - "id": "409fe46cbeb29a31", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debconf/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b32aecaae84643700a33bc9ee83fa9b36938d35aa7b61b5042092eca77ddb732" - } - ], - "id": "b5e7f22bf965071d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debian-archive-keyring/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fd2d797e208bcfb713510e47a89867191180943e1167d44c2acd8ff1b88e5c10" - } - ], - "id": "f92289eace30c1aa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/debianutils/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8654d7cc7cdae1f31bb67a3ce5bf35d512c0bdfffd071df757edc54153cc7930" - } - ], - "id": "b26532bfbad64c53", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/diffutils/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7442bdadcd44e818fddd786057db07639cc68225c389c7c240d3bb3984b05173" - } - ], - "id": "dfdc22792d0951ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/dpkg/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ca415a294c0e56958c4f795b3f1f69ea3479bca53d7811f5cdd020a258949db" - } - ], - "id": "1114c5c197d8eae7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/e2fsprogs/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8fbcc77ed31f480a85654e9b6d1d25cbb95b62e9dc5159ae1565bca684c3e1dc" - } - ], - "id": "7dd081f082659732", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/findutils/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b215a61cdd3e62b5b17cc28b1852c78acb3dd38be0fb30706f7efc050dba91db" - } - ], - "id": "e1319e65c203453e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/fontconfig-config/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "63d3ba759d12804c5b31a9d5940d855c1820d1f5999e6b0872eb1c7ff045fbc9" - } - ], - "id": "385ad25aed5129df", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/fonts-dejavu-core/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "da8191658b3452ce9caf31638ba61dab31a38c619fa39df119812e050f592fd3" - } - ], - "id": "4ce014d66be6e2fd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gcc-12-base/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2af485dd05ff2f402caedc35973eb8bf60a639c4877949d19ad2054c1002984c" - } - ], - "id": "1017bded0e8571d2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/gettext-base/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84dab06b5c1baf3a7a45c3cdc5f98fb121234e98fdd6266c3f773d54fcdc4f54" - } - ], - "id": "11e245f0fbd93ac6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gpgv/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "42d9b4d610396b1e8d1303dcb9487af3f5a2d2709623cf03a04cf76acdf6c5e3" - } - ], - "id": "e3593be394d65d70", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/grep/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ca5dd5098fe2e1c0f0d05196f5b3da8b414a807702e6ca8b536eb5fd3059130" - } - ], - "id": "cf6371963e627f97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/gzip/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "94189fc5a9a7b7224d96e1a0cfdfe9be0df2018b04bf21d591627ab96b30cad1" - } - ], - "id": "5712fb4cbc3b7c4b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/hostname/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7534601cc4fa513804d16490359f5831e7b6a1212da3bbf948bebdd4c8799783" - } - ], - "id": "005c4b9d850bdd35", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/init-system-helpers/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "99befb809ebab87d8e4bdd686788f50cc2eb01705d8744bd7e740f73f931e501" - } - ], - "id": "d462a496d735eb36", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libabsl20220623/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a2dfb4a5abc7e84be2cc41f1089be665519c9409549296f6c19de57ab1d37c2" - } - ], - "id": "9512069c6c7978fb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libacl1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eee66c2417bfa30107700b89144f2ec15701e4b0b36b2c7fc5dd96937679cee0" - } - ], - "id": "80856cd15955796b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libaom3/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4701305243d8d746f4acaafe15d94f946251b05691bd6917fef41dd15e9ee12" - } - ], - "id": "c76d871bcb9b054f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libapt-pkg6.0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0cbec745d85ea775450b2d54fac55277197f429e52d611f72852ed420450620e" - } - ], - "id": "a4744ce87f049011", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libattr1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6c7011e93f643b112c4cc3622131e28a30477afad6c4f5efe466b13aa7f603cc" - } - ], - "id": "92639e2cb05ca0e5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit-common/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6c7011e93f643b112c4cc3622131e28a30477afad6c4f5efe466b13aa7f603cc" - } - ], - "id": "4126d2789de5eeb3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libaudit1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f7dc476592065fde1cf6d3416bdb3039896b9261fb82bf88b5c9108f2dd60b3" - } - ], - "id": "503dd492a90adc8b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libavif15/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30539a2df6a89d844f43c727505a3193a60515f8ec6cdede8cc515ed22941d1c" - } - ], - "id": "96b93d666e3a4ed7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libblkid1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24a64e5bb83d0960d1835696a1e23c0896ad6055b0ca47c66ab0eb9a766324b1" - } - ], - "id": "401a800e90f1acaa", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbrotli1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "00fd7be5d907a6bcc409a80f2d565f508673db4761d54623691f89ae3aa20fc7" - } - ], - "id": "d85fafeb089e8c76", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libbsd0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "832ed535ff3c3d025a8d2348eb1b697b89addcf2eaadbc17650262040b9145e2" - } - ], - "id": "833deb3b444af5aa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libbz2-1.0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40c7e1f2118531f038ca22999bd976901254e1bc5cd1b0f0211bdd064c599987" - } - ], - "id": "16b85f75ea2b2eb3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libc-bin/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40c7e1f2118531f038ca22999bd976901254e1bc5cd1b0f0211bdd064c599987" - } - ], - "id": "afac85f506b3b85f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libc6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "49b5db19990a3e3cc1a9ed716aed231f6f3c1c217e58f62ae4dc2818c6d3e9cc" - } - ], - "id": "2c5a610e86435dc8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap-ng0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e60a5642e12e340060e4e519a65b2eb0330be2917854841c644e36268f607d54" - } - ], - "id": "24374aecccbdd489", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcap2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ca415a294c0e56958c4f795b3f1f69ea3479bca53d7811f5cdd020a258949db" - } - ], - "id": "05c6044703a8095c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcom-err2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a5e7ca0e9f3f9679977e3a3e9ede45ad92885a3297ea78e766979f9866c5a16" - } - ], - "id": "670d8027d6bf9137", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libcrypt1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7c131b21e6e73b3b085a7d9f1637b68f5f92b832cc6f462e0c978fbe7841ccb" - } - ], - "id": "a105408c047da0b8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libcurl4/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d5dd978a1dfbc87e2e0c0cbf47974c435394f31d6e2c454e104d6d07b6144978" - } - ], - "id": "69bf88d027fb7c7f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libdav1d6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8b53da37d73289d9df7317b3a2dbe16491f1fa9fec8b77b86d69704b40ce2c26" - } - ], - "id": "4934ea9581b51baf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdb5.3/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2dd8bb1cac96311447eeb3b66570ef262437fa7f47b1be667a4f82f3f22ab8be" - } - ], - "id": "37ab8b7fe39bc6a7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libde265-0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cf63099896d1c0f6529c41b8d95738e6fea342ffba609187d339c4f38ce36ecc" - } - ], - "id": "6b77974846cb9352", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libdebconfclient0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "06b1e73b344fa5ad4c24a79547dd787623f3d118d681d6c9bd3fdc10a7070381" - } - ], - "id": "0688d1ab1128c4fb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libdeflate0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2b53671050f6319be6fcdcafa434e8ccb8af629359b4afc83185867204f3927d" - } - ], - "id": "c2f602b83e57f867", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libedit2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "60919fe1a156395ff14511bb6ff79756c50ade2fff59ac60c9bae1d8a7fe6292" - } - ], - "id": "1482b596336b934a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libexpat1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ca415a294c0e56958c4f795b3f1f69ea3479bca53d7811f5cdd020a258949db" - } - ], - "id": "1263783a3af7d458", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libext2fs2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f83d2ecba1ea4d99957e81c50bebbd076a128194288a3ec22cc8ccdb77c43087" - } - ], - "id": "b69d0e3d66b29ba5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libffi8/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b215a61cdd3e62b5b17cc28b1852c78acb3dd38be0fb30706f7efc050dba91db" - } - ], - "id": "fa17191cd25af33f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfontconfig1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "70a7a0a06e6440777417f6875476cb712b03943010abed1c32297798c8cc8ed8" - } - ], - "id": "85310376be31116e", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libfreetype6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f59fe0f4c6233d87249d96e147cae7330c97f1a99275c23dfb4b999f9fcf234a" - } - ], - "id": "966234ddb38e469b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgav1-1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "95db2f9da663f2bfe2aabe9c72fce9d6c9ae767b912f397d7823f50bd55a1a7d" - } - ], - "id": "bd7bf66c9781aa6a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgcrypt20/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "53c9aa3ebfa5ab3aa28a5467aca74c10446b2e7ed21d68bdc8cc372f32d551ee" - } - ], - "id": "921f47f05ccc17f4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgd3/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a451044852c2db0227be648c30273250d5d062d2d9c57565d966f6a3d47de426" - } - ], - "id": "98308a7bcf04f0f2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgeoip1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d366aef5ba325150246de1d7820c4c9926cd27ca61a69948492b26cd3b61601" - } - ], - "id": "4e2f61adcf1fcae3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgmp10/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb7e5c24b3e27bbba5671dd710d159a0066833bda4caa1d55d8027ffed539337" - } - ], - "id": "61dea766cad8baca", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgnutls30/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8760fd36efa1d7186f8769d4e76a3e678045b94d54465bf6f2db5eb871c7c27f" - } - ], - "id": "cfaa85e6563fe784", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libgpg-error0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "936728f4181718f42951b881c1e8f1386bf6b2723c4fbc533c374d6f42c71816" - } - ], - "id": "c689dbb16293cede", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libgssapi-krb5-2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "578d9edcdb9297025b359d30084b8862b8085640c6b33a681f70526da1165060" - } - ], - "id": "f5fff8fa4c6b34a3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libheif1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca2ca597320220c00ef6dc0fe5d0d82025548d6d4ba80e85615eb691f9021f93" - } - ], - "id": "6558aa9ecc92a64f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libhogweed6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5bbff5f646ce750ac0a347e7f91793279b7422a1119820b5f75d98879c201c68" - } - ], - "id": "e9ec9d19e0e59c9f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libicu72/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "41702469f28e8ff406345e3d1dd0c741f11bdfca319264f67036efd6aaa79e4b" - } - ], - "id": "91d4bebb44d1cb83", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libidn2-0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "89ab20c324a191652e94598f2144a65442faed4f14f77bbd10516130ee20f05a" - } - ], - "id": "0b3de49d99f9eeb8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjbig0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3821184e23385bf2cdc01f56bd999b34036fc3aa03d5135d41680374eb81bf8a" - } - ], - "id": "7bc5693aec6127d4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libjpeg62-turbo/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "936728f4181718f42951b881c1e8f1386bf6b2723c4fbc533c374d6f42c71816" - } - ], - "id": "576aba8698e6d348", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libk5crypto3/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c62fe37d22203046611112bc10a9e03a39a7f73bec1b061e7c615326166d9ff5" - } - ], - "id": "15969ea096d44406", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkeyutils1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "936728f4181718f42951b881c1e8f1386bf6b2723c4fbc533c374d6f42c71816" - } - ], - "id": "b584afcbb7e26255", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkrb5-3/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "936728f4181718f42951b881c1e8f1386bf6b2723c4fbc533c374d6f42c71816" - } - ], - "id": "fa8882e0a61a0efc", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libkrb5support0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4081907f0d9a4110736fa6540dc8ca9d7d60a20878b5d78f84916cc04907bdc" - } - ], - "id": "4edb7e47a2b93cba", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libldap-2.5-0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6c55caa8cb2c87c4f6fbe23c21e887a506455d81b5a8e98a7a62e6c81af39daf" - } - ], - "id": "2309c9d015518da8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/liblerc4/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d3be0f43fe14da244f97c451bbae789c0acf868612598a69f5f22a289abeca40" - } - ], - "id": "d4df7fd6cc275ff0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblz4-1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a2dc8fac0f496e1c58aff67018cf0c6b88336316afa5642f9335b71642e28aa8" - } - ], - "id": "58c739ee46001762", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/liblzma5/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4365ef6255ad553fce69dd4bc0e093472c5d0e41b8ea493a545cc926ce171aa6" - } - ], - "id": "f420cab82a475af2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmd0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30539a2df6a89d844f43c727505a3193a60515f8ec6cdede8cc515ed22941d1c" - } - ], - "id": "54a0ef8b6fe18a5c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libmount1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca2ca597320220c00ef6dc0fe5d0d82025548d6d4ba80e85615eb691f9021f93" - } - ], - "id": "29acf14283411006", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libnettle8/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a34ae32a5eba61e535835a8de7c398f47e420247d339bc400a3b9c618ba29a3d" - } - ], - "id": "48cc3562ae851218", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnghttp2-14/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "179c34f5e56cd0b6b73dd7970a97357ee784e2236e8293826656c7ebb3bface7" - } - ], - "id": "503018c94c410470", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libnuma1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed139379f7c874f0ee75f3ddcc2e01091dd828d84ee1a0bdff6a1c5673ee6e58" - } - ], - "id": "66926c992b81c03c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libp11-kit0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9596b9028339d66c285422237728d6170e1e29d0b0d9adf0e9f1bda82e2391ce" - } - ], - "id": "610170729050e3fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules-bin/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9596b9028339d66c285422237728d6170e1e29d0b0d9adf0e9f1bda82e2391ce" - } - ], - "id": "0d783bc34563f0fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-modules/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9596b9028339d66c285422237728d6170e1e29d0b0d9adf0e9f1bda82e2391ce" - } - ], - "id": "cb81e9ca4dbf46db", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam-runtime/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9596b9028339d66c285422237728d6170e1e29d0b0d9adf0e9f1bda82e2391ce" - } - ], - "id": "41493b07afdc0683", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpam0g/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "030511beb4d9d620ad09914c369c36ec0528dcf301d1923cc643c948ee7c6a38" - } - ], - "id": "133bf233b7772106", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libpcre2-8-0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "68bd3997355bc44ccb97ff5e2bb146360e762c7d9c721945a4fabf77d1349e4a" - } - ], - "id": "bf7d3afcda203515", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpng16-16/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bbafb0cf52d34465fc69f5ffd22d724224f6a2f28402c88b045c69d88af06aaf" - } - ], - "id": "e35fd24e64e7c3c8", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libpsl5/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4d0d1babb36c1bff69ef061f549c7cdac5ba92c48b775aa44343efc952b43b61" - } - ], - "id": "4e1412afc474dbce", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/librav1e0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4302abcc1ea1b6cbe8d19c79b892acf78878030220210707c19006828866207c" - } - ], - "id": "2fc8169cf38bf56c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/librtmp1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5e77ddcac7fb682d696bc4b034dc2869e5a9011e8c2ed3c570ab8db0f4506931" - } - ], - "id": "316ba06e2b2f1ffe", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5e77ddcac7fb682d696bc4b034dc2869e5a9011e8c2ed3c570ab8db0f4506931" - } - ], - "id": "3dcc9fd2e3f9f187", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsasl2-modules-db/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6da0653a365b80ab31478dbfe9e7c358e80d58b6d2b52b4e16b4dbb42d7d9f5c" - } - ], - "id": "0ba33cd39fe2644f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libseccomp2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "641806738b0c6a3d03168c2649e6b94205198bb66cd557e6bae3a20b71c9bb0b" - } - ], - "id": "6aa30f34e8bf06d7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libselinux1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e00e6a86c598f9e24ced0180a70a5f2f2e45e133d93adf2b17ce8a06ce4b1b51" - } - ], - "id": "d12aacc3afbb217f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsemanage-common/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e00e6a86c598f9e24ced0180a70a5f2f2e45e133d93adf2b17ce8a06ce4b1b51" - } - ], - "id": "a2b13bfea637b999", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsemanage2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "78d2a34606a0302057ec499a3b3c07bcbc43ca334064ce4c80891a0f69c8f6c6" - } - ], - "id": "a121035757ebe684", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsepol2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30539a2df6a89d844f43c727505a3193a60515f8ec6cdede8cc515ed22941d1c" - } - ], - "id": "9cc85479ac3e41dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsmartcols1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ca415a294c0e56958c4f795b3f1f69ea3479bca53d7811f5cdd020a258949db" - } - ], - "id": "8824433bef2e62f0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libss2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "98978241c573785aa7c8504e399bb66cfb3c40c1f20507a0d3c7580bfbf9d8d4" - } - ], - "id": "89723706333133c1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libssh2-1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a7da622fe0637a334d2a8fc470852d2ffb77d9a2b2f930f854e32a41ad6ef35" - } - ], - "id": "9664d7fd339ed634", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libssl3/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3084176c33edf29f8d290b9dbf4b96bb389162ee75b948f82ba56edbd43ca265" - } - ], - "id": "0dd39f5c05a45f5f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libsvtav1enc1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7d06854714a1ca99f6dbd1a1641dde5bcf28635be149f6554449618f8f427f3" - } - ], - "id": "caae22995add4001", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libsystemd0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "572ad60ad184d8f52c6dc66d83a61a68f137db560b3452ce00588c9ecf128a65" - } - ], - "id": "6cc2f6e524d86f01", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtasn1-6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d73e31b03a0d7a515851601c19fee5792c7db03a312efacae146ddf9c91f86f1" - } - ], - "id": "9f3343df8c41dfa1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libtiff6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0974fb41778e23c94111ff90da0546de8971f8270c58877283d372e6bd7f17e" - } - ], - "id": "9e68d57e6377c254", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libtinfo6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7d06854714a1ca99f6dbd1a1641dde5bcf28635be149f6554449618f8f427f3" - } - ], - "id": "9b7062ad5962460e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libudev1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0035f89e5317f3cec389383e8727788521b0fde3e75cea881fa0e92e1d48cb57" - } - ], - "id": "e04ae2f041e6de19", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libunistring2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30539a2df6a89d844f43c727505a3193a60515f8ec6cdede8cc515ed22941d1c" - } - ], - "id": "bd6a2d578fb3483d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libuuid1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "01eb328708a9454061dd13931b19135e1c2c6251a7e6a6d0efc4b9bc436109c7" - } - ], - "id": "efd60f382f096c89", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libwebp7/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b380a7fd5b2228f26e9585e56f14812efd3350f3df307507d2bc055dfd8de3e" - } - ], - "id": "27a14d6b0a665830", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx11-6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b380a7fd5b2228f26e9585e56f14812efd3350f3df307507d2bc055dfd8de3e" - } - ], - "id": "1e4b715327c22b56", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx11-data/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "993d16fbf3d32b7eeeae4081167e4a4b1d05bdb0e20b79b576113c0697c5f729" - } - ], - "id": "7feb44f9bf4a083c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libx265-199/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "118dd263a7b91c8f21c489f949bf13281dff9e766deea92b829dac4dce66601a" - } - ], - "id": "c368958ca0002da1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxau6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f7cb9db6bf6542f5417e3d674c780d3a5fd12291a54d63054fb576ee0cfae80" - } - ], - "id": "65cdbf9b287d8d1a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxcb1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1bcbb50f8603fe8b86d330bfa460b772ea04fbd3c70e4499f0768b5340b9fd6e" - } - ], - "id": "65bb025ed1d34ef7", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxdmcp6/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ee746b96cfa5be73c3ea3e4cfb1285e9b315d4c9267f99b2ee9c5d911d9fe3f4" - } - ], - "id": "cddbe462bc81acf9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxml2/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "60ff44bf6ae8fdc03aa67f4ebbc6e4bba30ac96938e55bc84b1777387a58992c" - } - ], - "id": "a59b16dd9fd9c805", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxpm4/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4b82c8dd6e55001a5921bea1d6db20be5c51e5976d892e870324026c23f37b6f" - } - ], - "id": "1f9ccbfdd1743969", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libxslt1.1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a123c93b07e781919ae996276ac02bb1c8b19dfde88176cd1240ab277c14a4ce" - } - ], - "id": "c306d521810c33da", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libxxhash0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "55b6dd1060bb758a1bd19a9b60f975dc223975c4941bb16dfd080e978ab90bcb" - } - ], - "id": "9284f953e273e820", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/libyuv0/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35e85e8e9bbb71492c5f5dddf39ed65b68775a02ad8d710c25d097b497f06c49" - } - ], - "id": "7d250731af5dba23", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/libzstd1/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a4c3e5b19700dd3cc5961663d204bd7150f65f913314682aede5931548c436d5" - } - ], - "id": "3b7963a6ed1a92b1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/login/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ca415a294c0e56958c4f795b3f1f69ea3479bca53d7811f5cdd020a258949db" - } - ], - "id": "db3da216f529169d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/logsave/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "167d04422f2fdf76ab565878c23be8ba0c2ebb2c57a5dac0a5a59ccd27e747a5" - } - ], - "id": "b7f4a9f3c9ccdde8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mawk/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30539a2df6a89d844f43c727505a3193a60515f8ec6cdede8cc515ed22941d1c" - } - ], - "id": "6d8c34c53d2104ff", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/mount/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0974fb41778e23c94111ff90da0546de8971f8270c58877283d372e6bd7f17e" - } - ], - "id": "860976646d80533b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-base/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0974fb41778e23c94111ff90da0546de8971f8270c58877283d372e6bd7f17e" - } - ], - "id": "98e75b64ddd18659", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/ncurses-bin/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f72e2bccf0bcd839dd447ab6f359336f428caa1987a9afec2bc9ade5711658a" - } - ], - "id": "63b2d81d1123562b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx-module-geoip/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f72e2bccf0bcd839dd447ab6f359336f428caa1987a9afec2bc9ade5711658a" - } - ], - "id": "ae2e117a81ad42cf", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx-module-image-filter/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bf0746e75035cc2b9c3346feb08fd7aa414c088719c00e76734c6d7fe9c0647d" - } - ], - "id": "0422cc93f15747dc", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx-module-njs/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f72e2bccf0bcd839dd447ab6f359336f428caa1987a9afec2bc9ade5711658a" - } - ], - "id": "9bb94aeb0c091f40", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx-module-xslt/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f72e2bccf0bcd839dd447ab6f359336f428caa1987a9afec2bc9ade5711658a" - } - ], - "id": "db4a76368ee97769", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/nginx/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a7da622fe0637a334d2a8fc470852d2ffb77d9a2b2f930f854e32a41ad6ef35" - } - ], - "id": "8996a1eac9c8e5c9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/doc/openssl/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a4c3e5b19700dd3cc5961663d204bd7150f65f913314682aede5931548c436d5" - } - ], - "id": "eb285723ee6ed724", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/passwd/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b52f3ca17b45473cb0da6ec46748949101fcf0dda1fd5d8b306e6c97fd41af4d" - } - ], - "id": "d080e17ad9544ce3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/perl-base/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "719320e425e8e6da53a55e0fcfa2f2ed9b1332cea16abd65321bd651b2a88568" - } - ], - "id": "2510fde290722d80", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sed/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ad7cb339e58a88918a883d553ca236795191f027e158788a8b33f747ff502fb2" - } - ], - "id": "5652bd86b6d4fba6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/sysvinit-utils/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bea61e0c172868e07845cf50423f97f093a9a46de167dbbe333a38be610c8e00" - } - ], - "id": "4cb6d066eb2cd581", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tar/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb61132bc0fc7b26ef5a82ee18b2fb644a1362f4f286ed980ff22e408471f59a" - } - ], - "id": "09bf85f9a3aaeb16", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/tzdata/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9836bfe2ef94505bbf29701e8c90799ab1a5fd966d26d60d019a822cdbf3d61a" - } - ], - "id": "583f360d542d7bd8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/usr-is-merged/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30539a2df6a89d844f43c727505a3193a60515f8ec6cdede8cc515ed22941d1c" - } - ], - "id": "a94c166eaabf4f32", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux-extra/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30539a2df6a89d844f43c727505a3193a60515f8ec6cdede8cc515ed22941d1c" - } - ], - "id": "852bc24f261de1ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/util-linux/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9e5b96d63773a5d177ba264254390f792be07e41748ebd94730981c6cac31cc6" - } - ], - "id": "09ce1597c06715bc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/doc/zlib1g/copyright" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c9ed655f391a2dffdfee2070e9c4bd1f502ffff17d19abff21ba492ab643c919" - } - ], - "id": "ec68219eb7863330", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/dpkg/abitable" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f27de5a36ff605486cb16efe42b7dd98ce48266b89447161fd62c9e3997e1bd7" - } - ], - "id": "681f87e18d4b3a53", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/dpkg/cputable" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7cf82a8325debc3ed63974c11d640ae205f017276654fbc939082a75034d40c" - } - ], - "id": "331fe45fd7b2e482", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/dpkg/ostable" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ee1c4bfdd26d2d22f6af3aa1123e7f30e0c5983a5cc3af5bc3aaacab1da7bac1" - } - ], - "id": "215bac43b0876b27", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/dpkg/sh/dpkg-error.sh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e67a11365119686218b5a245c60fc62484050daf676c6e009d9a0a0e4265f0a" - } - ], - "id": "d4f9560c37370dfb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/dpkg/tupletable" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7dae5045441ce7ab4ce9ee0ccbee84e2ae90daee9cfd2ac64cd887ee85c528df" - } - ], - "id": "34e9038806c01e72", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/05-reset-dirs-sample.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f04d1737c2a85925a6294f4b966597d03a30c9e4c551c7a8c270eaad514b2689" - } - ], - "id": "fec7201c300ea59d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/09-autohint-if-no-hinting.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9ae4308a18941969ea42f5881c202be052fe12da3fb1fb4fc4b940642ec74db0" - } - ], - "id": "e8f93a2b7a6334d9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-autohint.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa01699d6a43a1be2996233e67daf1570b9000bd1a59763463d3a12b852cdc3a" - } - ], - "id": "effa0ac054ecb47a", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-hinting-full.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0eaec3db6879f3460bd0e1ef3e09dd965168ca460a79d098eb0648c6740095d" - } - ], - "id": "4dda9178789d8b1b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-hinting-medium.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5970fa53c69874ee51349300ef3412592e46e7f133c06074befcf6ab2a3ef6e2" - } - ], - "id": "f89e52e735ba76b4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-hinting-none.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d138eca2bac3f78d45ff7cfb649ad792caa4a6e61f73cea7cf0ea54b091f1ef4" - } - ], - "id": "99fe8b66e41e6754", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-hinting-slight.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "75412c70f3a78ad090c79a9dc63cce6aae41b2cfc2f67f4a1a1b533526216d2e" - } - ], - "id": "748780a6899bc810", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-no-antialias.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0f00b5cf0ce07062ec65b9b340aa888f6c5fbc215aafebd26781be2d5a13ff6a" - } - ], - "id": "d981e2e4fb8c0677", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df8e99abb6f82384c61978906a45a95794940545da95790d87f01d9391e0894b" - } - ], - "id": "9e598303f24dfda4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "719006f7887a958da8efe5ad010a2cde689313074607ae20f0be4cd9e8bfffad" - } - ], - "id": "4a891ce6321a6069", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4cfc04f5fc5093d2ba20c40f8709c9dfc099997313d0f96bc8256597a15d057" - } - ], - "id": "b3b2c455a98ae7d9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "15178eb45f3206433bace02053214d5750b9d74a4ece727f48c7fbc8f8c9adb3" - } - ], - "id": "10aa9199c258f957", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "049680ed134d34c560be493a47301bf6542050e7e89c27d3df25145b41f8133e" - } - ], - "id": "f3d0f7c831ac9c0f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dca27a149268da3aeaa3416dc236fd1d76e2f997b1ba91e1292297e78c9281d4" - } - ], - "id": "4e4ec7f993c31bdb", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-unhinted.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e6d82a642d1b37f7d24dc37f938b999f00ff7aa4303b2602d04164d53f221005" - } - ], - "id": "ea9d2f9f13a21eff", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/10-yes-antialias.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76aec9d8dac48faabe1bbde9e887cfb09fa45f30be5f8826e945a394a0097e48" - } - ], - "id": "be53462fa1d2f7c4", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0768fd57ae0a50d54f2f2e5efae98437ae8623573b652f246ac22e574d5f38b0" - } - ], - "id": "99116cbf374c0db5", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0708443f97406b100a5ccfa67ea8a1c1473ff60ff03848e536bc62e2b2ddcea3" - } - ], - "id": "5576e7b2b4231191", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "278732c68c16177f2aa3c7e4ea318b9f720aee13a433c32eb15ba626806c609d" - } - ], - "id": "f423bb41863ef443", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8b8c05318fb3f4893a9522e7989dd9280d14233adbc21be867bd173add4a0d5c" - } - ], - "id": "b18fd9274e261fc3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4c17a813364e7f38ca5758350cf47fead36a9f5497e4a310ebf473f2e6103661" - } - ], - "id": "e8bbcc1a19a23e1f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/30-metric-aliases.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9744531dad3dda3f7a11afc4e211873c53386436fde19efa7efe964f187171f5" - } - ], - "id": "91a76e6794d0cd36", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/35-lang-normalize.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c56aeed6490db1d29602d7f8e028742b5e7a0268eaaa60de2fde582c6403715" - } - ], - "id": "2bd95a3e8ec38e10", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/40-nonlatin.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24de9f68189d544bb4cc084d9bd8f3a59d8b988a9dc44b11e9877d5add5fc948" - } - ], - "id": "baadd7d779583b52", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/45-generic.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30ee92d2633ea4ec2328975fa44e3ff4f8c6465b468b79c3b1df7002f0693d23" - } - ], - "id": "c6e607a35f33b782", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/45-latin.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "99d839cd8aa28854e8f54f26e7200b6e57951f39f56791a0ed473662488bcef6" - } - ], - "id": "6f9c26480d506ee0", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/48-spacing.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7849a11ce5243e8bb3d06bcad558737a8682e5122e73c8e427f4c011a2054818" - } - ], - "id": "a2064906e27c17b2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/49-sansserif.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "449137ccce57d60bca178d57519ba54e1942d757ad171f3a88cd78df2161c970" - } - ], - "id": "ff7b79c9c388e2c2", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/50-user.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dca9d917e1f66f73bfa495943b4d1eaab2d93810a51bc8e600cf4d4e9df03e67" - } - ], - "id": "864abe05a8a93a24", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/51-local.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "195bc8605dd23289d42c10d79cc13a5ce4a4b3cf965df5b30ecc0b7149bb951f" - } - ], - "id": "3a476a264336204f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/60-generic.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df313037dc3a13daa6eb82483aedfc236157cd3895c557250aa5e72b71ad5508" - } - ], - "id": "252c5956eff3ae21", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/60-latin.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c675fab143a3638346874798be45f51f6878ebec591b4362d83cfffb828ec4ca" - } - ], - "id": "a012973e9d4f2c9f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/65-fonts-persian.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0bc1c077ef01cb409f51f95218b97b144278c0568b5de03683047b2a1963c590" - } - ], - "id": "40aa04e34e071c5d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/65-khmer.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "da07ca0ef70fd8fef26918804bec0747a849af4f22a7e85cb92c71146f164bfd" - } - ], - "id": "01536b9bf8a4a927", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/65-nonlatin.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fa97c0cf5f79d70e2dc3dc48155d4c9220cd7c6a8bc95b89c4ebcc517f97479e" - } - ], - "id": "ee65b372c991f69b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/69-unifont.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d097ed60eb7e2f822c8f91ce82244b2767d4eca000f30204bc6884609b56b49a" - } - ], - "id": "f0239ab0879307d1", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/70-force-bitmaps.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47411e21901abd71e3d076107c375e9a8ffd1957410b16d7a291cdbe0e466a0a" - } - ], - "id": "f2b58a21ad679342", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/70-no-bitmaps.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "87228113c2e8ffbf5565ffaa80d5e5fde33b14f0725accf69e1e31c80df398c0" - } - ], - "id": "0c2d8a0388b07183", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "34f27b7fe9cd83b2b6d46f16ef9c477412f2d7ef63634f86b9b38b79bc4f81ad" - } - ], - "id": "c6634eb1fdff2f17", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/80-delicious.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cdd0aac7840c664a7127b64db66bdfe8dc22be3774d10bc22f4a41c98de5d85e" - } - ], - "id": "f2007a27c45bd552", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fontconfig/conf.avail/90-synthetic.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0d977336a6d5fba34eab8e3199eb218327161b5143749f802982c2bc34df0c96" - } - ], - "id": "653b4073dced9faa", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "abdc775b21b1bc470d50c97e790d276f2054b7504e56e5bd3e64f48d68582322" - } - ], - "id": "3655965d89532a34", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2964f6dac8e6e9d71613928340f17bf868e9ea51692cca333c79e74962f02233" - } - ], - "id": "50a2407909b77534", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0f5db4f1749979d961019838b160bec74abdf7f9eca69553fe1aa856bbff49a4" - } - ], - "id": "9f3619464f9c731f", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e2fd85eba2de65ac270d1cdb1685e252eb827f600850cf62af2d20c41b22e945" - } - ], - "id": "e740fc9c5e89658d", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "13e61509f5c81d7c3132810f4f903e3523df89c802bf6e0674621e8f659cdfe1" - } - ], - "id": "a5e19b34a01aa1b3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" - } - ], - "id": "8b3b7d50a08faa6b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/gcc/python/libstdcxx/__init__.py" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f904daea3a5c91d7b336377a93a85eaa0060842810230704f4c0b702b4154c6a" - } - ], - "id": "7c76a2ebab839820", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/gcc/python/libstdcxx/v6/__init__.py" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a11707c4086bfff865bb6533fe4a64729cea151955d692f4b7c71d050d09013b" - } - ], - "id": "db5c0b2cd3a38d94", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/gcc/python/libstdcxx/v6/printers.py" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca0a5c9a7f946784e1bc97407fce251f481bfbbd9813a85d628ad602af4b3847" - } - ], - "id": "546c65ac06a9ef47", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/gcc/python/libstdcxx/v6/xmethods.py" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6990e32948295b48e5732bb3eaa49a2833343bdd0b254f5fb4d91ca92aac4168" - } - ], - "id": "a70255ad97cbc048", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/gdb/auto-load/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30-gdb.py" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "22e34d2cb9daafab78e8b4a2e4734d925973f0a4726aa3aacc5d4b80058c2bd5" - } - ], - "id": "24a6b4dfab61ccb3", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/java/libintl-0.21.jar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59dbde1397f8edc4e4aa24829ba36f9583ea5b4480091c34b89dad9e56360a19" - } - ], - "id": "9761fb3f5a2cfeb9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-bookworm-automatic.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8bdddebd345030721f22d0f6a7291a4791a2183621bd444cc6a683d7ade73a6e" - } - ], - "id": "1969775f1c4e0900", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-bookworm-security-automatic.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1891e84fa2e1ff6db0acfbc0e398824379b415534dd0154ecb1d21e70fe2ac62" - } - ], - "id": "513790f0ee4e4552", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-bookworm-stable.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9395df01c1c6226584206a77d237c60fdc7039a015ece4e6bd3b1947db6c3b1e" - } - ], - "id": "8170a0adfce25ffd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-bullseye-automatic.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e551f90fa954a65b3b6c54160f9d8485bee806318afe7a6998c4d9bece8e0df3" - } - ], - "id": "ec848e7f1906e9d5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-bullseye-security-automatic.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0cdd043ff2e04448802488fd4a4e3812c298a1ab5d81374ea9a9693a274cef8c" - } - ], - "id": "50b70fc6eb752adc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-bullseye-stable.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "89d89bcedee9ed88b25eabb5be786fbca6259f121e6ad6ebf5651f852f5227cf" - } - ], - "id": "d99f12d05646ac49", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-buster-automatic.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd5d7f0384531497968f1866efa6118938e812582a8d2fe86d87b0266c495783" - } - ], - "id": "87133b06ec4cda47", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-buster-security-automatic.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "488a60d5065a97cc8b3c907be6d2c12ba5dee5b88f5efeebbd8beb60cc9cced1" - } - ], - "id": "26daac9b059794a6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-buster-stable.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0ae76038c1b1c9dd42647f0d71733523a7633b371d2f2ce9b7ea39b1a95e53ce" - } - ], - "id": "2224f98c4344ac97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-keyring.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6907acbdf667c89716d894a17a50b258b6935fb78d33efca71ac267df821477e" - } - ], - "id": "782cd8812ee12c93", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/keyrings/debian-archive-removed-keys.gpg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eec30745bade42a3f3f792e4d4192e57d2bcfe8e472433b1de426fe39a39cddb" - } - ], - "id": "966dbb8f1c1c4a5a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/libc-bin/nsswitch.conf" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "99b0c51687292125bcc4486fc173b331d0ef4f07b7dc8a39575a075e8b8f0407" - } - ], - "id": "529e106d13f335f9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/libgcrypt20/clean-up-unmanaged-libraries" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d8d3386a25eaa491d7054830ed31a67e3fb0946f036d1b557310700e5911dafc" - } - ], - "id": "fb1ffc059d49c0fe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/lintian/profiles/dpkg/main.profile" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e19d4799278ae88c25288dde97f4998f7b353694848db5bb42fe2ebb1233c071" - } - ], - "id": "2ff07b8022dc29ea", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/maven-repo/org/gnu/gettext/libintl/0.21/libintl-0.21.pom" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4fed4bc41a86a7866eede47cda3fff93801d2146d61f2a53e0d8a07e8912585d" - } - ], - "id": "3d7a2ec2b0eb51d9", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/maven-repo/org/gnu/gettext/libintl/debian/libintl-debian.pom" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1e862c7883df7a31e995769e90b4e6b87399a70f2cad6b2ce95fd865975286aa" - } - ], - "id": "76eb65f6f462d7e9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/menu/bash" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c8bdff923cdb32fc55c80c70546c344e22444dfdccdea6280d9c4c6fa25c7c38" - } - ], - "id": "33ef1e8094ffcc14", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/menu/dash" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "876766b4e80133fd490603e073d3567425b88794828a9292104244c9e40875ed" - } - ], - "id": "9e8c45858999f282", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/nginx/html/50x.html" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fb47468a2cd3953c7131431991afcc6a2703f14640520102eea0a685a7e8d6de" - } - ], - "id": "ee55bfcfeeec632c", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/nginx/html/index.html" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ea2840c7336e177f75943580824fe69a5edff790c30c1c40c286462151e22dfa" - } - ], - "id": "bcfcd3cf4abb8e1f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam-configs/mkhomedir" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "66528ec667294fd2eaa1418ad4372f51e0c9a8fbe628275242276ca070639276" - } - ], - "id": "51f6c2e1df097869", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam-configs/unix" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8657819f898333b2ff09e8bb4fcc6ffabb02acd015411d0ec89f28a70e672537" - } - ], - "id": "628a90e17628ecb4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-account" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e2e9985399c29f44638f97acc1b71f9b2b946cfedb21ead16a54cd12c25992a" - } - ], - "id": "7c9e1e69bc2467ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-account.md5sums" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "940827d13f472a45ebd38cca4c4b2f91b7fc22f08a266a9e987222e88df4cc9b" - } - ], - "id": "478021f734f3f14e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-auth" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9dfd7b4897f508b7e327e7a511c7d097551d7063145b411e266aa91f2c0c1d57" - } - ], - "id": "736e105895061b2d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-auth.md5sums" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1544e26ce2ef5a2de1457824fa9fc2ce8a82d5a16de92a8f3b1b456e31827879" - } - ], - "id": "076be70d2ca8f980", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-password" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f44a9db909d4ec8cc580261a4674f9a609ad5e7a776a7896087b738e9581b38" - } - ], - "id": "bb302f0abe3f5a36", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-password.md5sums" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b954c8c0b6182cf0f10f89d572be0feec4652d4a296f51f854b55b0352251725" - } - ], - "id": "2cf168bca0506cc0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-session" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ac763203bc998dde4c1ddbdf0c572be2afa61e3f59d82194a51f7b3a5d11f7f" - } - ], - "id": "f24389ea74939741", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-session-noninteractive" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c4e029edf22d18a793db84b3092d36b88ddfacc5e361b785364e4756755b10e1" - } - ], - "id": "fde51770677f3a51", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-session-noninteractive.md5sums" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b80d0e21fd90493886ba1dd4a4fbacf283e6ffc07815469a0ccb130f2e5d156b" - } - ], - "id": "2d5ec98426b858d4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pam/common-session.md5sums" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ba6314adcb7339b9730255a752b78863688d7628fe75fe5d02ea04607b7f80d" - } - ], - "id": "07a82a6ea4ab8ee7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/AutoSelect.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "66ddc0f2cb2cae1e92bce9f5ae48cc82aea652a9ade8ab86cf9a1a3093e1f3e1" - } - ], - "id": "5af1e716333c27ee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Base.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d1b308c40b249d160ca49488f5ef1658db695940b53c7bf83bc89f49640b066" - } - ], - "id": "23acf3037081bf3e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Client/ConfModule.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2aeb2dc9fdb7d9511a8839f894484bc8d5ac0e9b0dc22a9d43b1c339ccb5bef9" - } - ], - "id": "c89848f24006a5f7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/ConfModule.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce198ce50f9b5724d1e1f9e4da6ba2224b8ef586570bdf600e02b2b074b1a602" - } - ], - "id": "49a4a911f92971d5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Config.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c0e7a554455e3cf9c42d937bbc8a701627b43f048cbf7a1d7590af44f218338f" - } - ], - "id": "72951e6b87f84026", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Db.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f1ab41777506203508c4ac00b093fe33eb53dfcd506dcc0ff99a0eca455f7073" - } - ], - "id": "d64aefbc4c4eb9ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0dd39de90e426e2062483ea468348aef62ecbdfb76fb1292728f3679a42b9dfd" - } - ], - "id": "f84e4722dce86f46", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/Backup.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7075a4f322db7e12d96e2391267073cf11a01277ed972b8fd5285c8b3b89e272" - } - ], - "id": "4f72c1d522455566", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/Cache.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d79bf94498c68355489fdd90c09d7aaa62116e42f0845ae78ba2c3b45fef9859" - } - ], - "id": "0ced8ae5c9e4f810", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/Copy.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "feb9793dbf296b01cc866c0bb792843e711f2126a2ed4171f4a1f2561da76cb8" - } - ], - "id": "837a9bed818b3e25", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/Debug.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57aba77c08bd3c0106b9d21c1c177984e20a477c2528b85b13ef1345b20af677" - } - ], - "id": "e47f3deadd040c00", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/DirTree.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f06b915254f33305754ee99b117e37424a3229686a39f40f3d025645a7353bc3" - } - ], - "id": "e7b731e0ad87c7c9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/Directory.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "234ec40b59147b5cb3f6540bad7a9c4390f0d8f3825afd6e1efcbaaeb6480cc5" - } - ], - "id": "b07e8c52b1bab899", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/File.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "633a36005440e5101b822a293751d63e0574787fe2b13157aacc2bc00fb0ef02" - } - ], - "id": "9702789f397c6406", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/LDAP.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "081953795cd5ffbfc2b56cdc1e24c59f76be1fd7664ceaaee6688a55f12c1a3e" - } - ], - "id": "93c412de20866d5b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/PackageDir.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b50341f54a9e86d13c0fc1b607466df39f8db062f226b22123a97d73b1d73063" - } - ], - "id": "b6f50d41a7d793d5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/Pipe.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f55d0e3f3f4f3ad8910ca1db54838eea67ee5b4fd4efdfa668e4fb23b432f6b9" - } - ], - "id": "c31b58a2f1072f17", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/DbDriver/Stack.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "00c10272de11fd0ddfbacf752982b22623e629b9d796533c95d586d858ce2c39" - } - ], - "id": "4c921f4e5d0a6ab9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "81d60ef5716baeedcd3ec9ed5d59d8d310d6a187d7c902133770fa201604cfa5" - } - ], - "id": "f1b6df191f420099", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Dialog/Boolean.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "94044eacc5f6137204dc1c805e9323d8ee370163e21e16485961c073bd244c16" - } - ], - "id": "7ebe8e0f00250203", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Dialog/Error.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a89b6e6233776c40896589664ad74bf8c78235f23ebcc19e9dcda32beb21e9e" - } - ], - "id": "368a9dace4744085", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Dialog/Multiselect.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "768e0c2ebfbc4e9227ce359f38b2469e070135c56adba1ec7f5b7505e8ec87e6" - } - ], - "id": "c08b4837c81748d0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Dialog/Note.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0f795cb55435e9660233584f899e769e263d1e605e9748860b5edb02ffad3aae" - } - ], - "id": "bf45d6a940f44ea8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Dialog/Password.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "abe844eae752340e23f9f21ddcb6b24764f0eb980471c25f5158c452cfce961d" - } - ], - "id": "2c54349ef23600ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Dialog/Progress.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "024a308e995a3721990978bfc60d584e3a0fc8ed08753692727e1012cfdba322" - } - ], - "id": "48aa9b23ff387cc3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Dialog/Select.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6c2a414ab5362a2d25f5d080c18da7dfb6efee6d6073635b6e3f1da5793ffac8" - } - ], - "id": "3279f336d0778137", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Dialog/String.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d95c589193ffc32fa5f5c7fb151a458f210ec17a8f33ef5d1644b61110c7a8b0" - } - ], - "id": "d3a122bb75e7f8e7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Dialog/Text.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "03aaf5a065ce57bce012d4ac22f19c776eb5b49daf5842f06bf50de0948b7b17" - } - ], - "id": "905a14f30b41aa92", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Editor/Boolean.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dea5e8e710441f23f824944d013a72167c5e5a0eb9ed31502b543e6aea6d33ba" - } - ], - "id": "871f5bb481627918", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Editor/Error.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a607d19aec535e157cc301eb01a49d25335000d3312f5d0a06e9701d46edfb3" - } - ], - "id": "75da09a35859e61c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Editor/Multiselect.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f3922ec83c3ff8ab7f2a0c9a832628c64aeff1a92249544259df48f642df14b7" - } - ], - "id": "b419166ba6406f2a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Editor/Note.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e0802d54649714aafd6d6ef426ed4bf4f0429bc8b5ad930e8822b4835d66c4be" - } - ], - "id": "4bbb76c8395bd92d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Editor/Password.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5b8cf39ff9f833f719d260e27466e4e11839a488286c25dacb56a23b049f831" - } - ], - "id": "b4cfe5034703c6fa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Editor/Progress.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4d8a031e7a23ad208675d097d700692b04304704fca6764630ffaeaa647843d0" - } - ], - "id": "8a15bb9c77eea972", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Editor/Select.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f8aec4b503d26da2b87eba5acb67456aa6752ad37add8915beee15646626d4a6" - } - ], - "id": "469141f2116888eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Editor/String.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5478c4f864725771238f7a4d42071be055fdf1781098f9a67671ce4c082d6236" - } - ], - "id": "25cf334159b5e594", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Editor/Text.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2de0e06b467b7c1682dc4f301cc2443076540c0450e21ab3ac0aba1f9b9d00a5" - } - ], - "id": "f023cfd0659b80ed", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "254847cc4aeceeeb3b64a1c84cba614c2ce33dd63182246e5e1a8cf2f7d924fc" - } - ], - "id": "f0b02c95f9d0edce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome/Boolean.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2292d7d3d45fd14c8ee4d276fdb1a6858365249df49868518114fb6dc19e682e" - } - ], - "id": "49aadfe5bca9b570", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome/Error.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df7fa143150ffcd85c5fe4cb83a79d533c0d6408e15537a593d4dd0217afbcfe" - } - ], - "id": "b2f9352f7a0c3da0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome/Multiselect.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f87a9c18562d15b6d7933e1e76894f5b7058d66dd738fd37b9aa07981561ed9" - } - ], - "id": "ad6c55a6d7cd396c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome/Note.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "58755994eafd92c42fd7765afb988f6e1522f1a43a289fc85ed0ffa712403a3f" - } - ], - "id": "807908b694bb1f56", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome/Password.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04f10cf7e7c163ec96266afb533bc94828ae1343e13af66c32fb47be2ef1d09d" - } - ], - "id": "d69f0c4966d127e6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome/Progress.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2a5bf7f95334d01613049b945144682653b977c49b664ca610fee3636c29b8bc" - } - ], - "id": "64035ca845dba435", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome/Select.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "382add68ada4f5658b2efa1d5b0bc34356c6b5e3d5ca3445e2b1e17aac45e4e6" - } - ], - "id": "f9f3ff1c8a7c2d80", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome/String.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5cd8ceb1ccaca18d12569710eca5a868b953b79fd3e5f4193fc4ae7440f5a204" - } - ], - "id": "003c66c23a6e0e93", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Gnome/Text.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8f4919e0b67b61f650af51406b13998467a477cd04f7772bc8b5ad6cb18649c3" - } - ], - "id": "7d4641a357aed2ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Multiselect.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1b6db74cda4b4b43bdf2244350494ea6a53d13a1f7dfeaca90ed16b22d13791" - } - ], - "id": "f25ceb54e63511f3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "13e3e74cafc97617862521b51e2c4ba4b87e87658363d1537452fcd5d874d261" - } - ], - "id": "4718f408bd536f14", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Boolean.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "799e48fc5a362d653334159305bafe67cd451420d98988d3047d515b2408120b" - } - ], - "id": "ea4be6346aa08e7e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Error.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "14bbbea9a46115ea16632083ea3ba850b13594957e5dc49b7907ec07e14a0789" - } - ], - "id": "2ac1c2c4a72c6b1d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Multiselect.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "88f2b6eaca06a4b404d62cbdaad4f497aa17aca4d44e785c3a78a763b66c24d4" - } - ], - "id": "f2c20f5afcd7a91e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Note.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a046112c91b00436a614d93590338a04ad14710cf3af56ebdb883041e38a955" - } - ], - "id": "dca89831359c946b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Password.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f21d00539d3a4b8dafa82322d0e0cb1281f0493995723dfdd9a6fc7cc28a7434" - } - ], - "id": "db592d74c64a5556", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Progress.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e0b972e4af3cefd2ab4858fac0a20df5ac91feb886bb8f0003cfac187581609b" - } - ], - "id": "80836e311f4ce65b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Select.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "505643b340d236ba8fe6e3bb930640e79ecf6ac15b43513456cb81228c946e23" - } - ], - "id": "5f0349daff3daa94", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/String.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "17d40add0e5bf98fdfb6ad5f71f337a04536c57c5b4e663cb6f5308398f27349" - } - ], - "id": "14f50b6def6a1b0e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Text.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "249a05d5f564db0f40e09c13d79b0a77ab128563a19a1ceee585c3431b844d1e" - } - ], - "id": "8fe1dd794a8a05bc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Select.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a97d6deb504426af124f6c1dd8d522a6abd009dbb37fbe0a3e2a284b921ea1f3" - } - ], - "id": "cdb6c0e04d395d56", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Teletype/Boolean.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a271b558a75a7617474d93cd77402c339334e84938651ea0a01f7336db09d010" - } - ], - "id": "8f74eff5018d378b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Teletype/Error.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "603d0c59e9b8ef1c9092873118a1335db9485250ab78dc9604ba9e0271c6b0c0" - } - ], - "id": "1cdae1ad4175ee4a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Teletype/Multiselect.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0ea94576f9890a0f5f9a4a59361bd1e0f6153b3ff23b883e6078b2e08063155d" - } - ], - "id": "97c73606fdafeb5d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Teletype/Note.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c3cc0ef1ccbe6da38b3885610369edef2005a691d043023c27689621e027a39" - } - ], - "id": "eea8245632bb8508", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Teletype/Password.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "63968f89058f1066176e80bc3a4e4ada8f4f24dcf78fc56c722edc7aa12f0f9c" - } - ], - "id": "a95595a527457f6c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Teletype/Progress.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a5749589dee50745a7db1e2c6743788334381461cca018552058183edae81d8c" - } - ], - "id": "a17769a348b8aa2b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Teletype/Select.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9bbe2c52e9629b135b888fe81fdcaf9eb1280076df252bb86292ba904aad8a1c" - } - ], - "id": "b94a2ee3a42b6041", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Teletype/String.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f61a5ec96a09bf7671dadd87281a75622df7043b2736d788af6767f6827bcbba" - } - ], - "id": "6beb6acf5515ccc8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Teletype/Text.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e74c742b01709c060bd24a58f960c03cbe688a818919037295d6222f8c3165ee" - } - ], - "id": "3459a1b3e4b6ea08", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Web/Boolean.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1699c8211d030d2d67fcfaafd5e30867d2661c21dad41c574dec2d88bd96ebc6" - } - ], - "id": "73858d76c03fc105", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Web/Error.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "367f3dce72c5bb9e40587416570903867824a063eb04319b6d57afdce1039d01" - } - ], - "id": "aa4db6458b51e736", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Web/Multiselect.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6654230ab4dc25692f22f7eae0798896067c2f5471ceabc4bbfdfa63258970aa" - } - ], - "id": "4fd179316a982d55", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Web/Note.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aff9175f3d6d46cd1a98d602e670d565c66005bc1e482174ca8ca75b53a40300" - } - ], - "id": "ac44be6d4f0badac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Web/Password.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "430c8365d9c3278fc0375434cc93725f8fa75a5353b072f0f8cfdfe4c7dd4dfc" - } - ], - "id": "fe2a8b9b5b2a4f91", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Web/Progress.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "42a7752151c302e29228a17fa3d0fa8bd65dc999025846c013ee580e06d78766" - } - ], - "id": "17d89159e22e15b7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Web/Select.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3dacc1ab78f01cd9db77d95163cc33fec708f1ba1d3ca10146f5b14c6096def7" - } - ], - "id": "aef2dd9b7ccbfa1d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Web/String.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "03e9ea3bda1040086d423f3fbe2ee6cc93f59d90d26b4bf8554ab5c6cdc73885" - } - ], - "id": "5c2e7a9d068cd0ec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Element/Web/Text.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "801fe349da27f9312f3b6c60ea38e44e34bf7fce5138a0a9235b5efd1f7ff7eb" - } - ], - "id": "e50125168717f830", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Encoding.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ce727bb1a20759b641ffb8bd6c45176bae65e65f907e237c6dc1f093899b02f" - } - ], - "id": "a259d446d5a096dd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Format.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47bb2e39010d9e051b79bdae364bb5824c663441b05037babae6a634fd4c0fb4" - } - ], - "id": "0273013a35a79038", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Format/822.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e7a545c137bb45bfc70dc75f6f14f2246219a4cf9a60344bff9dcf04b1e25b33" - } - ], - "id": "6f3349455a897693", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f6fced693baebfa47caf48ec1ab465ec44fe28b1942fe48e5d5bb90ed59fbcc0" - } - ], - "id": "32a7269cd57b5fc3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Dialog.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24b3da6ed94ce2682a51501683188675dbb50d4b154496e875ef1488c391711c" - } - ], - "id": "8d332537a9c767f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Editor.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0bcbe1bc51af79f25aa3c2de2427cd27936c5e1aff04ffb45b6dc4cd92d58de7" - } - ], - "id": "1f05dc4b393db57f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Gnome.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "af31800eed184035c7cb762fdeff4ecf77d76b37fe433836cfed540c38dacccd" - } - ], - "id": "0e3de6678dd2cd54", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Kde.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1604a04e4c2ddebc03659bef3bfe94a1f97330ca8e4ea88b036b10ca509308e5" - } - ], - "id": "ab2e3d90e9dda802", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef86bb94c07c56f825585a680e65bdfe5f5f2cf6abc31903643945e1fa949cf2" - } - ], - "id": "41d97967880726c6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Passthrough.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "029fc88afb9c65b4c5ad675297717b9648c9b42ef7f4d23a936bffc26b26d034" - } - ], - "id": "8abb9ba8e6bdbe17", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Readline.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "abd4a309996b0f8798df81bd51d881fa014b66ebbd0d626220884aee2868922e" - } - ], - "id": "1041951426d3bf73", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/ScreenSize.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e01ec0a98b14a8092dda1656e66248212dc4f164248f4058178e2964e5b72928" - } - ], - "id": "260d75b9938c57ec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Teletype.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cf4595fb746e12a9c0a43cd6806aec7d45523aa71b2bf9d98328d8c713c8470b" - } - ], - "id": "c80cbce52640f151", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Text.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca7b97f7c6ecd207e6b161a89a0d42e5e547c81206b09c430b9a4ac1f0b9f847" - } - ], - "id": "d5cc1150663013ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/FrontEnd/Web.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a88fa616d014b4668aa0acddd4b62c6f16f23ca4d770f74c42a465bccd757ddf" - } - ], - "id": "90ab1387918adbce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Gettext.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "25e26945b7cd46f0807fc71e4aa0187668d883f9068076356ec4fc3515d58b15" - } - ], - "id": "c0ecd7bba8d3f448", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Iterator.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "295705788c02bc5ecab17acab91e8bca411c88a5ec5404b64ea1bf85f408d98a" - } - ], - "id": "3cde54dcc98cca8e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Log.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "028380a22abab29ad18b0f4411bb3f1a1f3bf192f139ae61121393cebf5acc6e" - } - ], - "id": "7c3437079e36b320", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Path.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bf398f78a07d12eb8aee3fb782ffd002f311027279d076eaa6fffd0de11ce0d1" - } - ], - "id": "128dfcc4c0ffea78", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Priority.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "457f0d6a12d8dc4ab1fc109b5c54c423a703184630b50e49abfd3b2cbba2e640" - } - ], - "id": "b35a3d7edce4025c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Question.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4ee3d67fccb651ed7bca60a48bd85758e3a177fdda3167a5209f1513379eb6ac" - } - ], - "id": "d2d832e8137842da", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Template.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3a0e780834bf3c643f32931ad4fe02b3447343b1a54def72f03e15823e6723ae" - } - ], - "id": "a631f78a68219270", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/Template/Transient.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "01a27c6a5acbf11d145efb8341e0328892a0c00db0526ad522a8c2165e4e01f6" - } - ], - "id": "54e835262b9de240", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debconf/TmpFile.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f4a24f0721dde56f6836e005b736f932216b8c190ef007d554b9465a23065e7a" - } - ], - "id": "84eeb3daa077d4c0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debian/AdduserCommon.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "18613eb5076afb75cd5cd97811c465b78533ab566d482023c9f3379f4f7fe7a0" - } - ], - "id": "9592031d1878a086", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/perl5/Debian/DebConf/Client/ConfModule.pm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eeeb058f68ea680bd614a470f65df439ee8d7ca0af74981fab3aabd607707644" - } - ], - "id": "793a7a4001eed561", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/pixmaps/debian-logo.png" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "af82bab73789222d98736a6f6e060b788f46b19acd01e3010ca49036de759fb5" - } - ], - "id": "5bfbb0715f02d39f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fbadb5f608b355fe481c0c7d9c6265b2372bfa35250662f81f68d46540080770" - } - ], - "id": "7d41f3f4ce26f49e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/tabset/std" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cf6c37b18ceea7c306f7e3a5e604a03b0dfb9c22ec99163e4b52f885ce063145" - } - ], - "id": "babbdeffdd627363", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/tabset/stdcrt" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "075251754239d9973945d82b95c18cd90997acd2017393e70c8832e9297de056" - } - ], - "id": "ae21834dc56163cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/tabset/vt100" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "61f8388cad6a381feb819bc6a8d299d06a853d15e1f4bfdfd6b6f40069ad4956" - } - ], - "id": "e0e89d228846de7c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/tabset/vt300" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3d25dc26469558ee0720665c24a7e68bb7231771b1ce72384f834285648783e9" - } - ], - "id": "7326bcf383deb936", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/util-linux/logcheck/ignore.d.server/util-linux" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76afafd572f6194858eef6d28389505d591d8d2a026da46568046554a87c207f" - } - ], - "id": "381c9e48f0f5e14b", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/xml/fontconfig/fonts.dtd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d2efac4e5f23d88c95d72c1db42807170f52f43dd98a205af5a92a91b9f2d997" - } - ], - "id": "2e5ebe44f7acfef3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Abidjan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7346770dc7af569c724fd1ce816d7149ffdff3e303420059faa1557cc959e115" - } - ], - "id": "361ed83d5d2a13ae", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Accra" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fc87a606ec2e31f061a7806193472eb39181dd3b1a8a3563f404992bc693a77b" - } - ], - "id": "e72ab15c04ff6c82", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Addis_Ababa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bda1698cd542c0e6e76dfbbcdab390cdd26f37a9d5826a57a50d5aab37f3b2a6" - } - ], - "id": "f3dd79f3423c742c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Algiers" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "65af76431c1dd400e1ada6687e648e0fba1f80138acccdf7987cd3e1cd01b199" - } - ], - "id": "37664f4d897a4ccd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Asmara" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a212ea76ad201e8a956438bd008cd333ead81dac3ebcd2df4fcddc5b0f59165e" - } - ], - "id": "b096e01472b91d94", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Bamako" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a72ce103a74d3432bfd869efa0276a8eb4f83398f93d94e922f793b9ef7beaef" - } - ], - "id": "508169f4f058b99f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Bangui" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f511d8d1785320b80330d02f1d8ff3a6619f71f09539a73daba97f91cf630f5e" - } - ], - "id": "29bb123b86d3b223", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Banjul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "223bb10cfe846620c716f97f6c74ba34deec751c4b297965a28042f36f69a1a9" - } - ], - "id": "20efe8c2e03aa13c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Bissau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "de96b327c8198764a41bc035efd36b63075f618e7db479ebf451226a54d4bd42" - } - ], - "id": "e1a65b54813e7cad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Blantyre" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4680eb49f8aa6b167969f6e27221d859792357cefe0285eb03f60725db664d57" - } - ], - "id": "5f201456c751eee9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Brazzaville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c880a655aba172cecd4ae8eddd5f8d4cdde07686f00223e4adcc086dad320e7e" - } - ], - "id": "da12957b6f45bb2b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Bujumbura" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2dfb7e1822d085a4899bd56a526b041681c84b55617daee91499fd1990a989fb" - } - ], - "id": "3bf3999f0ca67812", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Cairo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e11a956f0fc5dd9b9ca29202da2bc027c583c23e7044e0c007aeed0697577200" - } - ], - "id": "8ab7834d6931259e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Casablanca" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0b0fb6fe714319b37c5aa22c56971abb2668a165fc8f72a6c763e70b47c7badf" - } - ], - "id": "27dec3bebaa237c0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Ceuta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93b62b3d76c1d4a477d84d232c576f9b9f21e428a42635db94eaca2c59b7b2ec" - } - ], - "id": "56dad5531c443886", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Conakry" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40733be9374ab5a9bd38be2be2664e538f97a265bbe7d898a6167d3800cb228b" - } - ], - "id": "e01a66277298dffa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Dakar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4fc4f312a5287024c7f8473d753b6d1bcde396138d778adf5fce60dddcc9b53f" - } - ], - "id": "1a5a996ffcadb525", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Dar_es_Salaam" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b92bac77f2dd9edd59397c0315e116fd0dc4fbc1ae6cd266687a2822877959f1" - } - ], - "id": "5a061b44ade749d0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Djibouti" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3b014a5d1cbee2524ae309a895cbe0fe47da87c12016fe8cc2562ac79906590b" - } - ], - "id": "8d6be1fcc9897adb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Douala" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "516082a902c9c5df2ab13630f36933f56d6cbb05b94d1827670df5b03583cf6d" - } - ], - "id": "dfafc2fed9b823eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/El_Aaiun" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "77d05b2ed586a9d22f6e4a791ec0634256dc919faac6279bdb7db388a9c1f67b" - } - ], - "id": "8eccae9154ba6d23", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Freetown" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3ca27c9dd26ccfd118a270eaee39195154cd63f15700d14de650bf7493cec628" - } - ], - "id": "70d816d8d9f99e7c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Gaborone" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "22720486f3e24b8e4b4f746afd2e0020f22d3a6c055b79579457e3efc2373ee5" - } - ], - "id": "eadc11370fd845fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Harare" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6c1bcc752668e77585a308ae8543bd0bccd8e813865626e809bf94f3fe3d977e" - } - ], - "id": "6700bec5838c4dec", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Johannesburg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5159c8a843c9c072d3302fabe6a6501cdbfda29a1856c29dabeb5aff95d4c3f4" - } - ], - "id": "44b2cbe8e871c89b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Juba" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5e23eb14b36a74840f4490a272ffc7b1f271a5829a349015f878ddb2bf34d9aa" - } - ], - "id": "0c46007c4540e1c3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Kampala" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "318583a09dc070222d65d029a1e3a0b565830f1aaec13a27e6fe533863fbd3ea" - } - ], - "id": "fce260e8dfac90df", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Khartoum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8cd9c1bb40c4452e61520a9dfc9a409a67109bad6f41f413c786998d00cbc9cf" - } - ], - "id": "cee9c5a52b167a86", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Kigali" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ae6d0e96d674a4c232cb01faf61a954340d84ea92a71a63ebd060e1c67d8c08" - } - ], - "id": "eb8e5e6df9df8234", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Kinshasa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cffeb0282ccbd7fba0e493ff8677a1e5a6dd5197885042e437f95a773f844846" - } - ], - "id": "66a1e05d1e855f32", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Lagos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "44575c7c30a1281ec495adb7a404888ed4d7e41c0234f13767ae7b1a1458be73" - } - ], - "id": "3ab8cb451302166f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Libreville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b031c585ed04311c7c7c14b2ee23ba49cb22ded8ddee8adffc9f14de68d2ba8" - } - ], - "id": "83dce0b8815d98bd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Lome" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c87aa48fc0f0043c6d101335acc8c7ab4ffc2707c14a8f5b1d6d1abf3bdec69a" - } - ], - "id": "cd7aa2c7c3a52bac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Luanda" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ed509eccb6e51d5cd529388c57692a641a5b9313233897a1bfabdb612a415c04" - } - ], - "id": "ff203a8c56621056", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Lubumbashi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fac7c446a8dcddffc75a7dca5c762444f74df9f83c70cc505b138db85242dea4" - } - ], - "id": "7ccb8dc248c68490", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Lusaka" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8d17cee7263820e7a14499ba087cd792f4f4b358bb4c874f24c42537ce975704" - } - ], - "id": "8057ba431afa66f3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Malabo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93f19e9551d58868ae5820752d2c93a486124c364463dc9c9489d0458f8bc682" - } - ], - "id": "b1b0548c0f3df177", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Maputo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "be0b75733f8dfc6ff35bd69c3d0f94abc72e1d6897c81f53d0ba7da1d72227b6" - } - ], - "id": "a2781f8ddf6aa26b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Maseru" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b0b8a11ab3cc1a97295b0bcde33b1129de82616b2f83987687926e100d3adf91" - } - ], - "id": "4883f23e349784a8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Mbabane" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cf5c8032414fd86bdafddb2cdfd6813730f7ec4a08cb92b22a5f1403490fa7e2" - } - ], - "id": "8cbee65e28a66f36", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Mogadishu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f95b095b9714e0a76f7e061a415bf895cbb399a28854531de369cee915ce05d5" - } - ], - "id": "51afac68f31394f7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Monrovia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c89b2e253a8926a6cecf7eff34e4bfcdb7fe24daff22d84718c30deec0ea4968" - } - ], - "id": "8486d26a47e351c8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Nairobi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f13dc0d199bd1a3d01be6eab77cf2ddc60172a229d1947c7948a98964608d0a3" - } - ], - "id": "5145335641095e31", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Ndjamena" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "78a49cb93c76e4f036933c36ace93e46ea1d7ccf58c7b086dd8f1c5eb441a400" - } - ], - "id": "885e844ff3dd56ac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Niamey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7fde47dac81d3d51ed1bf257f8834faa4da20d4ba1d85b824f86bf2cd79ac801" - } - ], - "id": "d2c407c4801f07d1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Nouakchott" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fe2dc2c6ab2ef71c41bb3542802a3c18a2d657befa39f3e61321c12677d16caf" - } - ], - "id": "6c84e01491ce29a4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Ouagadougou" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30a8a8c8c9337afff37986d7c36afe814c8b56cb75e958dd89bca1ef6dff731d" - } - ], - "id": "98cded2e5876bcc3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Porto-Novo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "31d8f1a50dbaf2ecc9ed9c7566ba0552d454c2ab09e85ff263701857d157c352" - } - ], - "id": "ff8690858a9ff857", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Sao_Tome" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b5769b460fbd13ee9a46a28d1f733150783888a749ee96d2cd3d5eba3300767" - } - ], - "id": "c14788b0d0d393fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Tripoli" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "38554c10ce1e613d84cf46deba1114093488a5c165756c6c576b84a1364850d2" - } - ], - "id": "e5de415c3446e2e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Tunis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6e86fb9dacc1f86a59d59a8b924d023c60bf05fc76e0b05d8443b0192b3b87b" - } - ], - "id": "a1ae878d2cddb1bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Africa/Windhoek" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "201d4387025000a6e13c9f631cb7fccd6e4369dec7224052f9d86feb81353a53" - } - ], - "id": "f5273098405bb713", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Adak" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a190353523d2d8159dca66299c21c53bc0656154be965e4a2e0d84cfd09b113b" - } - ], - "id": "99a0f1f8f9a1089f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Anchorage" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "434fbfb6b97c6d6ef4a036030bb901a49c74b7a4df8b6e0a1dcfd3cedf8a1fc1" - } - ], - "id": "b96d47d088d250d8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Anguilla" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d63c0dde8af51ad22539678225d3f58c760f0f8971dc5e43783644853087b14e" - } - ], - "id": "c74ecfb89219526d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Antigua" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "929a628b2b6649079eb1f97234660cdebf0d5549750be820bb4f2cf7f4edf9ca" - } - ], - "id": "a116cb238d0a2885", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Araguaina" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9ed9ff1851da75bac527866e854ea1daecdb170983c92f665d5e52dbca64185f" - } - ], - "id": "844332f1e628733c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/Buenos_Aires" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7621f57fdea46db63eee0258427482347b379fd7701c9a94852746371d4bec8d" - } - ], - "id": "48abf396b0d7c2a6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/Catamarca" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d57a883fc428d9b3d1efdd3d86b008faa02db726e6c045b89acec58d903961fc" - } - ], - "id": "74714396ce9d5bea", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/Cordoba" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e474744e564589fc09e672d39a0ef25978024f1f664616a17ece3f5aaef4c0e6" - } - ], - "id": "6136db0b45bbff2f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/Jujuy" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "65ffc4dda905135614b7d319e31c5b4673aba766c7d43f818ec73448b15f4725" - } - ], - "id": "09266abe947e29b1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/La_Rioja" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e43262618790a5c2c147f228209b64e3722cc0978661ac31e46ca4b33b89f8dc" - } - ], - "id": "02ab7f70797017f8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/Mendoza" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4fded6003c2f6ba25bc480af88d414b7fee2c3d73e9e5a08e10242b1c10d49c9" - } - ], - "id": "9a1680af0d5330e2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/Rio_Gallegos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "013c34b91eaccd628fb3a8f3767eab7af4bb5310970f6e8e44aea3966b232f5f" - } - ], - "id": "31c2563963c38b23", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/Salta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa55baf776b44e7a1fcbe45d71506e598dc3bd34c6c56c1c61d294dd8f7ca57f" - } - ], - "id": "14d0124129feab74", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/San_Juan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "59875cae8e7e15ef8de8b910b0ac31ff5b55a339a7069e7c0ced7e049b36b2ea" - } - ], - "id": "fdafdb9ae4ed498c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/San_Luis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c2c8e0d5ae4033574fda08ebd75da4defb79e2dadc38e33f4ad17be31cef0497" - } - ], - "id": "8d310f50297a6922", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/Tucuman" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f79e3c56fabf929c3f357e6ceb9bd8b886eabf0195f8f071ab099cadf94b2345" - } - ], - "id": "a28cd6d86c2bbc8e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Argentina/Ushuaia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e05ef0b458a717e7c83d8bc16c50e3a74a719fb5f3725b1c4fe7569a1b07fcfc" - } - ], - "id": "7cb1d90104d28261", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Aruba" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1532ed164e8c8c9a21e55203809d927f807f88d7820f1ad5d0c5b040bfac3953" - } - ], - "id": "9fab0f946f3c2418", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Asuncion" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1af781ad3c751d43edac773f568a7b0a9fd57f4223385e6163e3c1533cc7920" - } - ], - "id": "5429f3f8d5959967", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Atikokan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7262e448003320d9736065c1a800c4537b8f800f52e67b7ea75015dd9cbce956" - } - ], - "id": "a9dea83b05d1d0ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Bahia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2fa88761b03552cd6996396514b1080075b865a66114aa06d99afc4d3e5a637f" - } - ], - "id": "b7b0cbfa7b02c6b8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Bahia_Banderas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a66be42bae16b3bb841fbeed99d3e7ba13e193898927b8906ee9cdb2546f4b1" - } - ], - "id": "bed0e78ccb0d4a67", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Barbados" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ff6e7c85064b0845c15fcc512f2412c3e004fa38839a3570257df698de545049" - } - ], - "id": "a4f09a0d7347c7ea", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Belem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a647cb63629f3dc85b7896b5a56717996030a7866546fc562d57b35e7adb930b" - } - ], - "id": "111af69a1b5b2033", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Belize" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b5537964f9883b7bdcdff6b2a3083aa9bbe385e838389b43153f72f08b96df7e" - } - ], - "id": "e1f108efea1a1e25", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Blanc-Sablon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5785553a4ac5515d6a51f569f44f7be0838916603943142b72d6ad4c111bfa1b" - } - ], - "id": "1d12ace3f0e540cc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Boa_Vista" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "afe3b7e1d826b7507bc08da3c5c7e5d2b0ae33dfb0d7f66a8c63708c98700e24" - } - ], - "id": "ae07ead89604b319", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Bogota" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ec742c34f262521790805cf99152ef4e77f9c615c061a78036a0ec9312b3d95b" - } - ], - "id": "7e83f0b5d719e83e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Boise" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ff8c51957dd6755a4472aa13ea6c83ecd7930979e7f4e624fe21f4d3a6f050ba" - } - ], - "id": "5c42ed542eb33e14", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Cambridge_Bay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e41044351dfff20269e05fd48f6451927bd173824958d44f9d953d13bb5bf102" - } - ], - "id": "1c9518edf4d812ad", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Campo_Grande" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "948e19b6206dc4aa8d1ef538eef452c1ce7e18397c24e742d80ea873db3c888a" - } - ], - "id": "0ff2995351b36741", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Cancun" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d8da705cf12d42423cd96099b905875dfeba54200371ac0ca5f84a4ecb80d31e" - } - ], - "id": "92c359f031e6ec46", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Caracas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6ad55b5b90a1262290feafb7905b3e0cb4d365af69b64887926265ab8017a18e" - } - ], - "id": "3f7e2d04995d8293", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Cayenne" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a2ab69b8045ea3681c799a08704335f1111f7373e21f4ee08e8ae84eb408fc9" - } - ], - "id": "2fd35cd64b1c8320", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Cayman" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "feba326ebe88eac20017a718748c46c68469a1e7f5e7716dcb8f1d43a6e6f686" - } - ], - "id": "c4325a57cad82020", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Chicago" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "64094f4ac51f4f7546a7555d89b9c721ff90b1d108a87bb35f5e70bb63f66109" - } - ], - "id": "2850c2e1417188a0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Chihuahua" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "390b2dc8faccc71de73446f380386afd6d262b8f7e02934c2bbffaa7ee9d27ae" - } - ], - "id": "b6ba38f5f3b95dd3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Ciudad_Juarez" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef8ad86ba96b80893296cf4f907a3c482625f683aa8ae1b94bb31676725e94fe" - } - ], - "id": "dbc677cc226c5bde", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Costa_Rica" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "74d39aef5420436779ba1edc97ec5999efbcbb79cc47d189ecf4a4b562033914" - } - ], - "id": "27cd6785a5d69806", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Creston" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "33416c47c4fdb388c54aecc3f108baa6ab5be917f6353cf254728666b9f9ea7e" - } - ], - "id": "f274f38dee326cd9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Cuiaba" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "646108ca5019e62cbfac806c5d112d1ff65f5912242c8f5d4233ff108ca7dec6" - } - ], - "id": "7d8e22448f3e5d50", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Curacao" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6116407d40a856d68bd4bf8c60c60c1f5c3239a5509df528fe0167bcc5d2bb3c" - } - ], - "id": "91769e179f5b667c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Danmarkshavn" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ac01e1cae32eca37ff7b20364811bbe8c4417ff7e3ff18b9140ba2595420261c" - } - ], - "id": "8b649e581a6c3394", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Dawson" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6895c2c8fe23de0804e3018237e2eb4bd8690ffe73587cd04de4802935843d43" - } - ], - "id": "9bedf6563313b62d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Dawson_Creek" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "32e819c00a43b3c348f539d700d425504f20b8d068c16418d26fa9b693e775c9" - } - ], - "id": "50c27601da0b82a0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Denver" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "85e733f32a98d828f907ad46de02d9740559bd180af65d0ff7473f80dfae0f98" - } - ], - "id": "6adaf882f55c4d54", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Detroit" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7e7db465be161ee7c531100137bf880f3acee56b1874e20661be218ae48f0a8c" - } - ], - "id": "0daaca5607f528ea", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Dominica" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f939087dcdd096f6827f4a7c08e678dd8d47441025fa7011522f8975778ad6f1" - } - ], - "id": "e157098c3e84fd6d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Edmonton" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a52f741d9cd1c07e137fcba098a1df8a9857ef308fa99921ff408d6fe7c43003" - } - ], - "id": "a55997d4b2185855", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Eirunepe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "82f18df0b923fac1a6dbfaecf0e52300c7f5a0cb4aa765deb3a51f593d16aa05" - } - ], - "id": "a780bc1f0c856d19", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/El_Salvador" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ab7ce0ebdc3ad2a73eb990074eed3b367466d9c6f75d10fea0c78057df2d89d" - } - ], - "id": "ffe219c458010d25", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Fort_Nelson" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9884ee32b44b4535b2a22174e0ecbf519f20c59a1f4e95c36e533cb7b721ed28" - } - ], - "id": "c8742c2765c1117b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Fortaleza" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1bc0c62c609aa47fda60217f3a168be50a277fb14e02000fc1e94ee61b425817" - } - ], - "id": "37bc495830ea0215", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Glace_Bay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "26068bb9e8214af5f683bdb914e7c882982fb2ac591b29163a1019586a506516" - } - ], - "id": "bbe2c58f88b371e4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Goose_Bay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1838510f2bad017a5dbf7c2b18eaf499c5470c24a8e22adc8e7ff4349211305" - } - ], - "id": "4336cf9474317244", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Grand_Turk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c9885c70cded8b2588d77c3834a38a148e0836ccfa5c5e7e2bc25f6033aae7bb" - } - ], - "id": "1030b3f7f16d2a31", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Grenada" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "add9720f2ed382210e7a64178c261615160071b7d576af02633317deae9cc702" - } - ], - "id": "61f2e326dc44c070", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Guadeloupe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76e81480277a418e76c87907b943f88d15b3a39c78dfd2108a06980af105e3a4" - } - ], - "id": "7b0649ebcf1a1257", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Guatemala" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3db705e1bbc6026f9a17076d18fa2d272de46f8370a325b0c60c0bf7c05e5160" - } - ], - "id": "64571d6b66762b1a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Guayaquil" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "89c1eed182c2261c24f43e3b7f85420478277b1eb21ab638245b6391f308783b" - } - ], - "id": "99631e4dabcc174d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Guyana" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4d9a667393f05a82df4df42843f6f7535ec113689529278d911d07a3c99b4e7f" - } - ], - "id": "28f69706643fc8b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Halifax" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1d441e02e281b04908e522d98eaca75c808e51539a8e42b3287e6bf8ebf939d7" - } - ], - "id": "19a446ece96b9af0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Havana" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a79550695411bc38d9f3d30a71b5e5e6baf4b3386c129408acbc37751ad2980" - } - ], - "id": "496602a53e0242f0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Hermosillo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "90d2b2f4a8fd202b226187c209b020833300edec5ff86a463ccc685e8707532c" - } - ], - "id": "9f0952c0cbf19ee0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Indiana/Indianapolis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0acbd9e412b0daa55abf7c7f17c094f6d68974393b8d7e3509fb2a9acea35d5f" - } - ], - "id": "a5d476a52ced3821", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Indiana/Knox" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7f7b50fa580c49403b9ef9fae295e12ad24bee65b319a8e809e81ae4c10949b2" - } - ], - "id": "a68a85de2cf85417", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Indiana/Marengo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "03cf0e1ee334460de230b1e32a05eafddda36427554b2b5442cfbd5b429c1724" - } - ], - "id": "c4bd4ef0d77d87d2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Indiana/Petersburg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1d5aa02bf58d815df2f8a40424fbcd5cde01a5d9c35d1d7383effc09861867f" - } - ], - "id": "1e4a1f978a7712ba", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Indiana/Tell_City" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1fb551d86fbfb03fc2e519b83f78358910b515608f8389b43060f73f53cbcec9" - } - ], - "id": "7b1d61d9b4b6d283", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Indiana/Vevay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eb6980c53ec03c509aa3281f96713374ea5ef9fb96d7239b23a9ba11451c4bb0" - } - ], - "id": "c70faaa28c1f4833", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Indiana/Vincennes" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "69918cda347c087f411d252aed7ca08b078377a768ad72cf5e0db8e97b1b47ab" - } - ], - "id": "59c9754a94f1cabf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Indiana/Winamac" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e89fa66a90e7ae4f40d4bb6cc28137e2da92cbfb9f79d70404dc62c64ac48c8a" - } - ], - "id": "986d6bd4cde6154a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Inuvik" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7de3a7c40374374afe335aa592b03824cc9ac28734b6a69ed2288108f0c0b389" - } - ], - "id": "f1906e7d7ea5abf2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Iqaluit" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c256a089e50f45fe7e6de89efa1ed0b0e35b3738c6b26f2f32cf2e7f6f29c36f" - } - ], - "id": "174f6d48a1e63e05", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Jamaica" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93b8716f46864677e713e0c18b72e472303344fc807f4fc7c34bd515f8c679bd" - } - ], - "id": "bd7070efc3515112", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Juneau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4fd3bdb157f9ffbc8423c71709efb0067868fac8bd4a3e99f77f089db3d8355" - } - ], - "id": "990d2630c7ebf303", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Kentucky/Louisville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2ed7720a8f3906b5d0b3aae51fad589bef0aa961c7e8fc003a30f44318487733" - } - ], - "id": "a4f4f8ca682650a2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Kentucky/Monticello" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3c0185d9553f40ec36c53d42a9da763fc023f615cc55694207257b72f7c843f9" - } - ], - "id": "3061446a36f069af", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/La_Paz" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2470c283de6ec3a044bb86b819fca2926d6cf2b9bc02c60f1bc749c5040d645b" - } - ], - "id": "e61d8e695e02fb04", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Lima" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "68977bb9ad6d186fefc6c7abd36010a66e30008dcb2d376087a41c49861e7268" - } - ], - "id": "385d31ed5e14e2e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Los_Angeles" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a738cd82199e1e1bc5e1a237703ab61bfe6def505234621b4401793662720e6c" - } - ], - "id": "893a9a83f636071f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Maceio" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c41cc5d350079f61367c3f10772f831c57b7e94aa878da4a3df0a176e04a59d9" - } - ], - "id": "17b87ca8956a41a0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Managua" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "969e91964717250ee64ac2aa9c4802f2cbc956b143264ff5eb1c6f7e9352a4ae" - } - ], - "id": "c0fd97c1c79f487c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Manaus" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ccb3cd24394d9816f0b47fdcb67a37bdec9780b536016a65eb9e54ee9cd2f34" - } - ], - "id": "c36b22137c8b753a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Martinique" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7eaf8fa9d999ad0f7c52c1661c0f62be3059bf91840514ceb8b4390aee5a8d6f" - } - ], - "id": "8d224efd6ef70e24", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Matamoros" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "450415c251151d1a765fe73fd21278eb2e7869b4e5a94b8b932ad45227327398" - } - ], - "id": "84ec94262fecb236", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Mazatlan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "02bbfd58b6df84d72946c5231c353be7b044770969d3c1addf4022c46de0674e" - } - ], - "id": "13188f71a1d6c018", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Menominee" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3912421a23b69971be924e59646ae8d4c36e2aa467271e87265be87b34cc33dd" - } - ], - "id": "9c44790218a06b2c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Merida" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b709a27864d563657e53c9c5c6abf1edab18bfc1958de59d2edace23b500a552" - } - ], - "id": "c0f4f5605dcccda0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Metlakatla" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0393257c3519e0ed7e8cc4d1b7458f7a6eeaa9c5b436bb2596cd6195cf02e3e4" - } - ], - "id": "d19e65a8a76ecc18", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Mexico_City" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c1e3fb359fc8c508ace29266314768a6211b28e217c2457b2d3c6e9e0cdbf06d" - } - ], - "id": "4f0032490c83ca53", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Miquelon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a6bfe6e4f5a28a7165b33a9735505bbaec739fc1a224d969a1dcb82a19cb72b" - } - ], - "id": "2dd19d4204fb2d3a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Moncton" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bca04b5631b46cd543234ecce16c0e56fd8a6eb60954d4cb99cd7d88cd82bd35" - } - ], - "id": "0f35f4b6333484b6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Monterrey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e237204de80ae57f05d32358ce4fb7a32499e14f57434f546d327f9a5bbc37bd" - } - ], - "id": "cdc6c2fd485f9ab0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Montevideo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c5048b50bdc8f0e2e1ca4643fea2eda2375c64df32c6d4ca7d36bf23e5165df7" - } - ], - "id": "cfe66f67fc5d5062", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Montserrat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "304a41fcbd71dd49f0c2a8cec0da83bc27e04183ce9e10768dec0bc223b15788" - } - ], - "id": "b3cd78f6e1180042", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Nassau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e9ed07d7bee0c76a9d442d091ef1f01668fee7c4f26014c0a868b19fe6c18a95" - } - ], - "id": "6ae33ce0599fa58f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/New_York" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "da2cccdfe3fe3ea27dcdae8c761cc57ccbcf14dabb1a29baf6d02f1303de636b" - } - ], - "id": "7206d79f760715de", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Nome" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dd1e252d5f238394a58e10b9395542939d58efb11f8e8eb309efa8a6983f145a" - } - ], - "id": "a582ea00a6debfc3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Noronha" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aad81ba8dbbc3370241c5da7fbfa12a6cd69613e12c607256e490f29b5da047b" - } - ], - "id": "3f99b6277f43a837", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/North_Dakota/Beulah" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5959b2bd60a92ab942f2054152dcbaff89dc5bb7b57bcb85b810ed0a9f6d2cc" - } - ], - "id": "a21634d8d25b08d1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/North_Dakota/Center" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0c7fdbb107ee5272b6a1b75bd3a2a08ac3b85cbaa1b75d815ddae052c659bde8" - } - ], - "id": "1e8152d9f199c46b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/North_Dakota/New_Salem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d10822ffacf8c01b25cee6d99f0f862eea713a894818a9f1a3b63353519c4202" - } - ], - "id": "4ab7a7e144d8b51e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Nuuk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5c6ad804436483eea7eebd3331b35e4275df5229a532facbc4ccf045c364374" - } - ], - "id": "6ff17c64a29af9d0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Ojinaga" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "91ac80fe976931c490d058c8ce8b5d71ffa6d4961f6ca13ea9c153f0b0bccea0" - } - ], - "id": "a02a0ca461cf15ee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Panama" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1e6e6d0f05269e84eb4d43c43b8580adf485ef8663cb0544a1ccb890be751730" - } - ], - "id": "2a675f21f3cf15b8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Paramaribo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a5973d2c62e2cbf2520f2b44e4a2ee9d2f455c93f0f45bfdeb4533af1584664" - } - ], - "id": "c47421123bda60ff", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Phoenix" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d3d64025de083a23297dda54b85d54e3847f851b7a06fa409055ce9d83bdc8e3" - } - ], - "id": "5a01e3d98b362e70", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Port-au-Prince" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7b813d9e39530528917fb32a700cfb9d905c061228eb45f90153e68adc52fad" - } - ], - "id": "9f4d94a0919cf13f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Port_of_Spain" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6517f380612edba86797724fb6264b3921468ff58149b38a7622c2d712327397" - } - ], - "id": "8027eec4e8321ce5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Porto_Velho" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8491e557ff801a8306516b8ca5946ff5f2e6821af31477eb47d7d191cc5a6497" - } - ], - "id": "1fe06b9b3e657e97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Puerto_Rico" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dfd2c88e86a8399349656b1820dfd061d842e1caea6c2e8b5abc683d6761f441" - } - ], - "id": "f01ae968eb62bf0b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Punta_Arenas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9d782a8cbdced815747a6f9793ca9545165bfd7d324261c4eaf9924af23d2b37" - } - ], - "id": "2ca97f58dc920f03", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Rankin_Inlet" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a314dd99cd97b9a0161d97c020dd2c261a38f625e558617d95a3bebb836b3a2" - } - ], - "id": "c0510f33dfc610b1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Recife" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca3a93d3ca476c80987bcdc7f099ad68306f085a91bfb4dfcdedd8f31b97ba4c" - } - ], - "id": "73c4a9bd2d275fe4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Regina" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0a7314d9d048fbadefb7cf89d10d51a29c7ef1bf694422e386faf270c21e7468" - } - ], - "id": "12780b4b5fe2a32f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Resolute" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7ba27926f0ffd580c904ae32bdaebd2ac0d9e2eeaa7db6071467dde0de5b4eb" - } - ], - "id": "68019e0d6fbb99bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Rio_Branco" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a5fe5237a4f679ed42185d6726693a45a960c0e6b7ba6c78759d6b3f674f8d7" - } - ], - "id": "0d0bb7fd5f892b4e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Santarem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef9d2bf24112c65671eea391722ad6ae2cbf5f2f6ed5fcee8cc2c860780bfa01" - } - ], - "id": "28a960475c576515", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Santiago" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0cab5a123f1f43ddb26c84d3594e019b5eb44bda732665156e36964677a7c54e" - } - ], - "id": "4bbca48cdcf2df01", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Santo_Domingo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "70edd519e90c19d49fd72e1ffd4824a433117acdbafa5d68194a038252225108" - } - ], - "id": "0a871ebfb0f8e8cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Sao_Paulo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "75a39cf7fa0b8f250c4f8453d43588fbcc7d0e0ae58be81e2d45ce8891292c96" - } - ], - "id": "0f5807343b0ae50f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Scoresbysund" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a24bb164dfb859a7367d56478941e17e06a4cb442d503930a03002704fc5310" - } - ], - "id": "83aa9240d88f156c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Sitka" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "af5fb5eee2afdbb799dc9b15930fc32d941ba3ac2f8eeb95bbb0b6a43b263a02" - } - ], - "id": "9c5afbf4f983b7e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/St_Johns" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "afc412c84fb12ae86faca5a8e0878cbf91c32dd3c4b7485ead82d4533d0059f6" - } - ], - "id": "b29492f217e63af8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/St_Kitts" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "236ae9122a1b4b1cc9f8e7a2f59dcf167198b208d5cc058bea4642d60a2d94de" - } - ], - "id": "51964aabdeeb1127", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/St_Lucia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b1f38380e227d9d815400286437a6fbdd8ef838e724683db5f4655a6f351553" - } - ], - "id": "2f89245448dbe3ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/St_Thomas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3549bddd8952b7e47d6a5d04d501d522521e3380e3b04e864cf13b661f5ffdef" - } - ], - "id": "ac5ad45ae319370e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/St_Vincent" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "45128e17bbd90bc56f6310fc3cfe09d7f8543dac8a04fecbbbcd1abd191f3c36" - } - ], - "id": "f924133b1d7f404c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Swift_Current" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1333b3ee7b5396b78cabaf4967609c01bf0fb3df15f5b50c378f34b693c8cb0e" - } - ], - "id": "0369d0c4433b5723", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Tegucigalpa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f31b8f45a654f1180ee440aa1581d89a71e2a1cf35b0139a8a5915bbc634da2f" - } - ], - "id": "25958fa51a6d602f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Thule" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e7bf90f4b49336e4e2773fa5393c03cac9a50a878551749e72f555a8d59bbab4" - } - ], - "id": "82c5c8ac1c77e830", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Tijuana" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a587a1a1607439f7bac283e1815f2bdbafb9649a453d18e06c2e44e6996d888f" - } - ], - "id": "c54f5537c021b52e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Toronto" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2630eeb7e722f660ef4df14899437b18d2cbc092f66304427c0538257a08bda2" - } - ], - "id": "a189c38a3a56e25e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Tortola" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b249ca1f48d23d66a6f831df337e6a5ecf0d6a6edde5316591423d4a0c6bcb28" - } - ], - "id": "f589a10948caf601", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Vancouver" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4eb47a3c29d81be9920a504ca21aa53fcaa76215cc52cc9d23e2feaae5c5c723" - } - ], - "id": "4de28abf19fb7b08", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Whitehorse" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ecffbf610ae77857289fb40a4933a79221a3129a450e7dd9e3c309d6aabc541c" - } - ], - "id": "108566d087b7d83b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Winnipeg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b45c2729bbf0872ca7e0b353027e727bf2560ddc6309eacd0edee83b05303b63" - } - ], - "id": "76bc95936d23cb5b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/America/Yakutat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f8c45f27605f5b7f12c009a914042a53ad991ac268056fc49b61a093d620be52" - } - ], - "id": "3c5463e42ff97ed6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/Casey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e8fa24c8e69a212453375dec8acb8681db79bc6e40d98a8da282697cb4dbe524" - } - ], - "id": "125c94d14f69c975", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/Davis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "83c1d02d8f9a377a7a6b3fb4e0a74739d65816737fffef25b4746e63d7905fe2" - } - ], - "id": "407a2407ea498ae3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/DumontDUrville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "89eed195a53c4474e8ad5563f8c5fc4ad28cab1fe85dfe141f63d4aa9cdcc1ed" - } - ], - "id": "a2be023f5da9e1e9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/Macquarie" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f535b583fcf4b64e447de07b2baf55268f1a80eefe2bd67159b8aa34a9d464d1" - } - ], - "id": "1ca2ea14e3c05d73", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/Mawson" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bfcb3bf057d9b44e1c5fab524e1493c8c05f24fcd78785de5ec9a06e9733a322" - } - ], - "id": "f8586856958402dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/McMurdo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0d6fc35c1c97839327319fb0d5b35dbbc6f494a3980ff120acf45de44732126e" - } - ], - "id": "0a67a5428ce0bb05", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/Palmer" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4102359b520de3fd9ee816f4cfeace61a3b0c69e178cc24338a33d4850d43ca8" - } - ], - "id": "d2d1f400afc7f248", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/Rothera" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "56799d572a5d25486c070d57b97644704408166a22aa861c76997c86ddfb4206" - } - ], - "id": "a66609736d6b2484", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/Syowa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df3ae1f8ffe3302b2cf461b01c9247932a5967276ae26920a3f4c3a9cb67ddce" - } - ], - "id": "be9441ccc7834e93", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/Troll" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fd919da6bacf97141ca6169c92cf789f6a6e5a7c816564b5a9f17b329124355d" - } - ], - "id": "4ef8ceea66ac2e1b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Antarctica/Vostok" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "74f10e9f2d5a1d2bb1f0fb84ff35029d1e0dea924ce40ce1828dd3bfd2f7dad9" - } - ], - "id": "54126899acbfc090", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Aden" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0027ca41ce1a18262ee881b9daf8d4c0493240ccc468da435d757868d118c81e" - } - ], - "id": "902a5017ae9bbed1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Almaty" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5fd1b785b66b85d591515bc49aaf85e05e94a1c4156698f0a2b6c17eee93d9f6" - } - ], - "id": "a73b765760dbd08b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Amman" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8430d3972e397a3a1554ff40974ed398aa5300234625a20f95c5cb45bb06ff88" - } - ], - "id": "9d10b8f540838c40", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Anadyr" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0397b164ddb9e896a01494dc6ac81d0ab43c8223aa6761053115580564daa990" - } - ], - "id": "d759881dbd988c0a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Aqtau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d0ecfe4b1047bb8db59b8eabf398cefd734a3a01d65e084c504be7ce5a9f32c" - } - ], - "id": "cdbdf7a52c13a87a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Aqtobe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f80d85769995b272c61e1c8ca95f33ba64d637b43f308e0c5f3d1d993d6dba7" - } - ], - "id": "b9451043bcbe3848", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Ashgabat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dee128f3d391c8326a43f4ed6907487fd50f681f16a88450562d2079e63d8151" - } - ], - "id": "4394c3197615ab17", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Atyrau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9503125273ae8a36dca13682a8c3676219ef2ad4b62153ff917140cde3d53435" - } - ], - "id": "cb99be4e5d313108", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Baghdad" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e7bfd6ad48c4aa065512cc0835a11e40ed127e12168c28e429e25c96cbdf3dcf" - } - ], - "id": "58576df75407d3d5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Bahrain" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "be11e796268e751c8db9d974b0524574bca7120d0773423e22264d7db0de09b3" - } - ], - "id": "2c5e0da05526793c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Baku" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "798ab4be1f3d3758f4ebd511a10bed06ed277446a5e853ebb5b17c58228aa43c" - } - ], - "id": "076fa0f4bf3bfda8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Bangkok" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d9cd42abc5d89418326d140c3fcc343427fb91a2c3acf66d1a7e0ce622596c9a" - } - ], - "id": "698b2b4312fb3cc9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Barnaul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fd9ff664083f88bf6f539d490c1f02074e2e5c10eb7f590b222b3e2675da4b6a" - } - ], - "id": "c4c11feb246d8929", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Beirut" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "768ff8922d49bd22aea54aef973f634641eca4385dbe4d43d88901c85b248c93" - } - ], - "id": "6ece789bcdbc1405", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Bishkek" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04c323c04999f6b32836959f83c22b94b8516cc29b756e3ca5a75117e146a257" - } - ], - "id": "b992e41f8e8da29c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Brunei" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e0808e7005401169cff9c75ffd826ed7f90262760f1b6fef61f49bb8d23e5702" - } - ], - "id": "8e1f3d273652ae32", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Chita" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b09400023893f55c86ef7758869624ab8b5c99f21370fa6201af185ec0e529a8" - } - ], - "id": "e78e2ee93ff9f909", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Choibalsan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1c679af63b30208833ee4db42d3cdb2ad43252e9faec83f91efb19ae60096496" - } - ], - "id": "11d9cdadb9e1c986", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Colombo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fb90ce2ad6329e7b146189c13108a7dd7b2d850f58e651bebdd9e20fde6d2037" - } - ], - "id": "27f87bc781c6e337", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Damascus" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dcae6594685ca4275930c709ba8988095bfb9599434695383d46f90ed171f25e" - } - ], - "id": "46b537d2674e8124", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Dhaka" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a6d8db69c73d24ad29bf62690fe80732096bc18363f4b30c22e6b45346533147" - } - ], - "id": "b3d4a3b7424abf17", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Dili" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fa06b49b7b9af58ea4496444cf6fd576d715024abcdd6ad6defc63048ed6346b" - } - ], - "id": "20dcf04d2aaa4c64", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Dubai" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "15493d4edfc68a67d1ba57166a612fb8ebc0ec5439d987d9a90db0f3ca8cc7a3" - } - ], - "id": "62d31abff6c4d0f4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Dushanbe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "085adcca077cb9d7b9c7a384b5f33f0f0d0a607a31a4f3f3ab8e8aa075718e37" - } - ], - "id": "0b6e2c60cd996ff8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Famagusta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b7463171440be7754d2a729b2a28e7d0e13f31aaf21329e89da6ec7be893b73b" - } - ], - "id": "4e6261f785183a34", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Gaza" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e98d144872b1fb1a02c42aff5a90ae337a253f5bd41a7ceb7271a2c9015ca9d4" - } - ], - "id": "9911afa607906828", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Hebron" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e23774e40786df8d8cc1ef0fb6a6a72ba32c94d9cb7765fb06ed4dfd8c96065e" - } - ], - "id": "06353c1597f4a2f8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Ho_Chi_Minh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a5fcee243e5ab92698242d88c4699ceb7208a22ee97d342d11e41ebd2555a17" - } - ], - "id": "e5106613e173a194", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Hong_Kong" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2549cea2cecf3538b65512b10fa5e7695477369ba1b17fcf8b5f2b23355ed71c" - } - ], - "id": "68bb97e7a4f057f6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Hovd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "894259095063a5f078acd2893abea0d33519b5c718624fc6934c13925c7c623d" - } - ], - "id": "cd1acdb3941b1c2e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Irkutsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4ef13306f4b37f314274eb0c019d10811f79240e717f790064e361cb98045d11" - } - ], - "id": "b89dde01a830be50", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Jakarta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a1cd477e2fc1d456a1be35ad743323c4f986308d5163fb17abaa34cde04259b" - } - ], - "id": "5a54a4085ab3d5cd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Jayapura" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "254b964265b94e16b4a498f0eb543968dec25f4cf80fba29b3d38e4a775ae837" - } - ], - "id": "35300bedf0c7e6b9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Jerusalem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "89a97b4afc1e1d34170e5efd3275e6e901ed8b0da2ed9b757b9bab2d753c4aaf" - } - ], - "id": "61359f9af19fdbb8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Kabul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a4103445bca72932ac30299fda124c67f8605543de9a6b3e55c78c309ed00bae" - } - ], - "id": "27681b0a0f3e985a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Kamchatka" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "881fa658c4d75327c1c00919773f3f526130d31b20c48b9bf8a348eda9338649" - } - ], - "id": "55a7ba453a2daa60", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Karachi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4d4796eeb0d289f3934ac371be8f628086197c621311951ffb4123825c910d6b" - } - ], - "id": "e0f47aa12134bde4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Kathmandu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5d8cc4dadb04e526b2f698347070d090413d693bb2da988548b006c7f77e7663" - } - ], - "id": "f1788ebf72dc5fc3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Khandyga" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e90c341036cb7203200e293cb3b513267e104a39a594f35e195254e6bc0a17cf" - } - ], - "id": "f5a4d7c7b693747b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Kolkata" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9f3470e0f2360222bf19ef39e1bf14ed3483c342c6432ddc6b962e38e5365f02" - } - ], - "id": "edfd3510bb2385b5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Krasnoyarsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1a414f6514a08b0bdc3253e926d12e4445cd2d12f0d82be067ab4c8eae63e5bb" - } - ], - "id": "d7c420d203c65f1e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Kuala_Lumpur" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2ac02d4346a8708368ce2c705bb0a4a2b63ed4f4cb96c8fb5149d01903046134" - } - ], - "id": "809442e9f925017b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Kuching" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "012915ba833940360fc0c411e0798174be07bebfbeea2c77a8ceb7884a609107" - } - ], - "id": "4c49ee515e7ab9cd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Kuwait" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "32f02447246cac0dabd39d88b65c85e5b8761617918c8d233f0834b88887d989" - } - ], - "id": "79e5e8ee8770f51e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Macau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "72ac23290b7c4e5ce7335c360decc066ecf512378e7cbc4f792635f62f7391f4" - } - ], - "id": "b841f8d6dbdc97d3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Magadan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3a126d0aa493114faee67d28a4154ee41bbec10cdc60fcbd4bfe9a02125780ec" - } - ], - "id": "7628e4d500bde2a7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Makassar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ba37ead24975121c5c6123ab1be152ef9d1a35a614b754d3e1b16e2b811c2ff7" - } - ], - "id": "c9ed33d13520d58b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Manila" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b955876fbfc5248022f0037c730ce8c17ac58c5bd46701e20364c3f24745ab61" - } - ], - "id": "78042bfc982350db", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Muscat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d149e6d08153ec7c86790ec5def4daffe9257f2b0282bba5a853ba043d699595" - } - ], - "id": "e0d6325fe75dbde9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Nicosia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd019ca8a766626583765ef740f65373269d9e8a5ed513c9e2806065e950bbdd" - } - ], - "id": "e1f7d1a0ccba0af4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Novokuznetsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0292f7b36d075f6788027a34dc709ad915dd94ba2d55bf49be7665ed6d6c334d" - } - ], - "id": "16e8a1c93513c0ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Novosibirsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c316c47ac7deedd24e90d3df7ea4f04fac2e4d249333a13d7f4b85300cb33023" - } - ], - "id": "9b57613a083344bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Omsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "88c8ea0f82ef0e0cb1375e6fec2ab211d043c8115a3a50a1c17d701f3d898954" - } - ], - "id": "f7b4e7bf64ab4294", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Oral" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "acbe7662c323fd5d10cf906013321fd67f4c451c7436f4acc8d5717f70ccbcad" - } - ], - "id": "4ef34ade4b717011", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Phnom_Penh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8a7397c2e2ad8cabf5cff7a588f65222a8d2b7ac21b6ec613de1b56298d4fc14" - } - ], - "id": "31a07c49e24aa41b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Pontianak" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ffe8371a70c0b5f0d7e17024b571fd8c5a2e2d40e63a8be78e839fbd1a540ec1" - } - ], - "id": "82a637d2821768e8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Pyongyang" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "574ac525d2c722b4e82795a5dbc573568c3009566863c65949e369fbb90ebe36" - } - ], - "id": "b5258f111a087eb5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Qatar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f76633d7074fa667abc02f50d5685c95e2023102c3c1c68d8550ae36c09e77b5" - } - ], - "id": "35105f242007dedc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Qostanay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6a2491c70a146d0f930477f6c1cc9a3a141bf3a8f78d0a57c1c41a48f9c0b705" - } - ], - "id": "ae0f2a8a5fb78747", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Qyzylorda" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aeaf4a3e3f25d050679ca9fddd690c780d489e036d4f3939fe8578b04661738c" - } - ], - "id": "746614c3b6fe9078", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Riyadh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f7901d3f03a049ed20f70771ebb90a2c36e3bd8dc5b697950680166c955ca34c" - } - ], - "id": "be49d7357919f83c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Sakhalin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0417ba1a0fca95242e4b9840cafbe165698295c2c96858e708d182dfdd471d03" - } - ], - "id": "b66518916481c31b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Samarkand" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2c8f4bb15dd77090b497e2a841ff3323ecbbae4f9dbb9edead2f8dd8fb5d8bb4" - } - ], - "id": "226148951667fe18", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Seoul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "64ffc2e43a94435a043c040d1d3af7e92d031adc78e7737af1861baa4eeef3e6" - } - ], - "id": "553ec8dd53007b19", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Shanghai" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "739e349e40a3e820c222f70c4c9d55810b65987ffb14e494d08b145ed3445711" - } - ], - "id": "337cb0fe5c1ed875", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Singapore" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d039655bcab95605c4315e5cfe72c912566c3696aebcd84d00242972076a125d" - } - ], - "id": "e0c4b249dc49b5f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Srednekolymsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0cc990c0ea4faa5db9b9edcd7fcbc028a4f87a6d3a0f567dac76cb222b718b19" - } - ], - "id": "4304eb00392bd92e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Taipei" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d2fb24f1874bf5be626843d23a7d8f8811193bba43e6a2f571d94b7ff9bf888" - } - ], - "id": "ce83b74dee091c25", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Tashkent" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c3a50dc60ca7e015554c5e56900b71a3fbbb9e7218dba99a90a4399d18227ddb" - } - ], - "id": "88c9d897f752d60a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Tbilisi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0f5a94fc30be39237e42813b2b1566756d1c956064f1f89261b0dd30bfb89f24" - } - ], - "id": "8dc244a6044a6085", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Tehran" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ba26bca2be5db4393155466b70bc248db4f3f42ed984bab44f88e513862fbaf4" - } - ], - "id": "1b0dabed7364fd09", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Thimphu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a02b9e66044dc5c35c5f76467627fdcba4aee1cc958606b85c777095cad82ceb" - } - ], - "id": "9ed9a85bc6cf4e4a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Tokyo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "efb6207492f111344a8d08e76871dfe78c4102a372c130f0410999e6fe80ab6f" - } - ], - "id": "b93bddb75e5a7112", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Tomsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb2412cc8065d1fd935c7ae6526dd53ecd42f6ba34d77858980971eb25238776" - } - ], - "id": "439f57db480905d1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Ulaanbaatar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0045c32793f140e85e3d9670d50665f7c9a80cd6be6d6dc8dd654d4191c13d80" - } - ], - "id": "e4aff854b855cea4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Urumqi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2406614403dd6ce2fd00bf961ce2fc6998f1759c4b9860cd046302c3d4cab51f" - } - ], - "id": "2d4da98ac3dd14de", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Ust-Nera" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8bfb2a6f1f2d1eb19da3f4c8898fe59ae2cb41aab690954857e95bf9d9cdaae6" - } - ], - "id": "2336eb9b18335e13", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Vientiane" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a892182d8f69f0523f7dda1ed2c9f07f7d134700a7cf37386c7ffa19a629bc7" - } - ], - "id": "67ef4cdfd8f4e65a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Vladivostok" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "455088979d84bccae9d911b6860d9c8c34abf5086cb1c6804fe355f35c70ef37" - } - ], - "id": "92884d23a4f96b7b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Yakutsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "647b97f97547afc746263acf439716edbf23414bf78a1c9df95ccde78e6694c0" - } - ], - "id": "de2f654f55e43ff9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Yangon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "37355cd8388f7b2c3415d307c123d0245f64dedbd676dac44d988de7ca72c4b9" - } - ], - "id": "a72a780dbd7579b4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Yekaterinburg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "934587b56416fdc0428dc12ff273f4d5c54f79354395fd7c950d3fbba7229f5a" - } - ], - "id": "627a237c1edb1392", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Asia/Yerevan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "43926a6dee61e960e2d7a8f02bf07be20596839f28d1382b76007f7306e1cf3d" - } - ], - "id": "17e66aea06499a47", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/Azores" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2cd18a7ccb2762fc089a34f2cd7acb84c3871c3bbba88ebb45b60d2afbc8d792" - } - ], - "id": "d8b011beba68276e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/Bermuda" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca62bdb9faa986f3630cade1ce290de067e4711dd07820623cac9573a16395b0" - } - ], - "id": "59a1e85d2bfa4f61", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/Canary" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "11242f13775e308fa5c7d986d3224b12c157e4a465fbb73a803e4eda1d199bd4" - } - ], - "id": "95e7c5e2fc669a85", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/Cape_Verde" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3626dd64f66d6a99d847f9b22199cc753692286b0e04682e8e3d3f4f636f033b" - } - ], - "id": "d341571f34850304", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/Faroe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "db565ccb4c51a83377a18f239a38cef8b23b682dc6f66712f72b5a620d20ee29" - } - ], - "id": "b63092c3f88d46e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/Madeira" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "99291a4411992de52b9bcf0478771a5a711ddf95a7f808361b5d07b48dc6d9f8" - } - ], - "id": "31301ca14812ba89", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/Reykjavik" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "419ef67d12a9e8a82fcbb0dfc871a1b753159f31a048fba32d07785cc8cdaeb7" - } - ], - "id": "29fa4e812d6a62e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/South_Georgia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a6dfe04a0d3889bca9b71df65370184b41c8a83efb4eb1222da544478d0f6d5d" - } - ], - "id": "ed36b4cb5bd9c9ed", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/St_Helena" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7b128c2f0f8ff79db04b5153c558e7514d66903d8ebca503c2d0edf081a07fcc" - } - ], - "id": "d480b8b6122f19e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Atlantic/Stanley" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "95dd846f153be6856098f7bbd37cfe23a6aa2e0d0a9afeb665c086ce44f9476d" - } - ], - "id": "8bbdcda43f2a8c65", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Adelaide" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "796e90cf37b6b74faca5e2669afb7524ccdb91269d20a744f385c773b254b467" - } - ], - "id": "2ae62228e61ad03c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Brisbane" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "de4ff79634ef4b91927e8ed787ac3bd54811dda03060f06c9c227e9a51180aa4" - } - ], - "id": "e3d1d4762de8a676", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Broken_Hill" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7e7d08661216f7c1409f32e283efc606d5b92c0e788da8dd79e533838b421afa" - } - ], - "id": "9ecffb443c19bcc7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Darwin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f112e156c8cb1efdc00b56d4560a47fab08204935de34382575bc9366a049df" - } - ], - "id": "78dcabb895a370a5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Eucla" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "18b412ce021fb16c4ebe628eae1a5fa1f5aa20d41fea1dfa358cb799caba81c8" - } - ], - "id": "ed87e0441df05b53", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Hobart" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c4ce94771db6a0b3682d1d58ec64211ce628bfc9f0df140daa073f35543624ae" - } - ], - "id": "76504c479cbb266d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Lindeman" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2ee7f42f1fe2247ba1de465de0bc518dfdfab4b179fb05b650531534a353ee08" - } - ], - "id": "b7229ba1bd3e1e51", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Lord_Howe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "96fc7f31072e9cc73abb6b2622b97c5f8dbb6cbb17be3920a4249d8d80933413" - } - ], - "id": "df47275ffcc31e91", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Melbourne" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "025d4339487853fa1f3144127959734b20f7c7b4948cff5d72149a0541a67968" - } - ], - "id": "dbb0a3d6089a9fc6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Perth" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "42c3857585b16db2f8ffd47ba19faa60f473340de8d4fe9320ea7be861605906" - } - ], - "id": "f112e59c57c7c71e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Australia/Sydney" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a38a2692b33f22c213c68a14a3c92b33ddb55df05dbd1b3d261c065c677e6298" - } - ], - "id": "287ef7b7d6bada58", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/CET" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5866ed6751708d15fa25ea3f4c25cab1f783b3857dba15c625f7272c9864decd" - } - ], - "id": "c38de86c59b0d40f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/CST6CDT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "80656c5b9faa9c8eedcbcbea54ad400d686e9ebbc04fc9140bbf4651ffbfec6f" - } - ], - "id": "523f33cf4e62e7f5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/EET" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b8a13f54f29fc46c9812ccaa57f0dd136316e79becfea522a0e7489f91a8a1b7" - } - ], - "id": "bd4593c9e624de63", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/EST" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7f0cc4313d638276367438ddd04a83976ebfecb0bea05e3c05de27839df5d47d" - } - ], - "id": "3f8e967f9a7c1725", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/EST5EDT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6d9f378883c079f86c0387a5547a92c449869d806e07de10084ab04f0249018d" - } - ], - "id": "ff0721638dbce681", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d50ce5d97f6b43f45711fd75c87d3dc10642affa61e947453fb134caef6cf884" - } - ], - "id": "357411071d74da62", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "244432432425902d28e994dd7958d984220e87a70ae5317b1f4d0f925b3eb142" - } - ], - "id": "fd68f0253823b916", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+10" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b56bdcbd830509a13ad27255bc3aeba2feecb49becd4a4183b2ae1977773714b" - } - ], - "id": "f873cd54e82528d7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+11" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6fbd0712112babc2099aaf31edc399cb8791fffddfab9b871e98ef3c1107a8c0" - } - ], - "id": "51187991bc4b50ea", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+12" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4fa129e7386c94129b61a10215407a8142a1de24d93f23285b59238689f1ad4a" - } - ], - "id": "e9e033d57ffd82e9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "406a18ac4d386d427e3b32f7eddb763194f917158d2e92433d55e025bb2d6190" - } - ], - "id": "ab26a6acdb35b81e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "456ae43648bec15ed7f9ca1ed15bee7c17ba2eb595a643c98226b94106049c1a" - } - ], - "id": "49b5fa3f232a81e4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a1199e0b8d5d8185d3fb3cf264844a5cdf48bdd2f60dae674eec261b6fe9ac80" - } - ], - "id": "4ecb97e57c1f7e77", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+5" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "77a7409f089e8f2148da7ec0cc59455b4685013eb360d123048106d2ebb4b1b4" - } - ], - "id": "0e57ac27ed13f002", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+6" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4ea8d86f3774607a71d708ac160d3c275f704e983aced24b2e89e0658fe5a33b" - } - ], - "id": "23ac8e990a234a8c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+7" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b61ffc6c832662044f09eb01adb981851af48d03bbc2177bd0b898f477f02729" - } - ], - "id": "8ebd568fd92b9f2d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+8" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "42ae44ea2512ec9309232993ed8a2a948f0cb6ab55cb49abf6deb3585b5673d6" - } - ], - "id": "26c9e3700883afba", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT+9" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef7175794f2e01018fde6728076abdf428df31a9c61479377de7e58e9f69602e" - } - ], - "id": "c26c9026894217f0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ca5963702c13a9d4e90a8ed735c3d2c85c94759934c3f8976f61f951cb522b5" - } - ], - "id": "81758ed215dad0df", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-10" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0f64bbf67ea9b1af6df7fdaf8f9c08ac5a471f63892dc08a3fabedc3315920d6" - } - ], - "id": "3bcd0ce13fe3f37c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-11" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "99ee15ea599623c812afc1fb378d56003d04c30d5a9e1fc4177e10afd5284a72" - } - ], - "id": "d82aa1484099e533", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-12" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c5b99b1b505003a0e5a5afe2530106c89c56e1adedea599ac1d3ca004f2f6d1f" - } - ], - "id": "977c81edf8b91294", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-13" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3e95e8444061d36a85a6fc55323da957d200cd242f044ed73ef9cdf6a499f8a7" - } - ], - "id": "a80328b0558aaa79", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-14" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bdeea158b75eba22e1a9a81a58ba8c0fa1cdc9b4b57214708ee75f4d9d9b6011" - } - ], - "id": "62e13cbc3d569105", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "37bee320b6a7b8b0d590bb1dba35d94aef9db078b0379308a7087b7cc5227eca" - } - ], - "id": "dcee6d53265c6e7f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2d2928e5f547a8f979cdfc231aa91b31afce167beda53ea8ff8c58c4dcfd9f9a" - } - ], - "id": "02daf541e048a1cd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b8b69247931bd7c1d14ec000e52bde63d3c027dedd3bc433216a8d5dedf065be" - } - ], - "id": "cb7db275ada77e24", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-5" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "25237e454029849e747e922fedc602eae9ebb6bcfd4b55a66bea620c79467bb7" - } - ], - "id": "aa9ab7765df344e2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-6" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd500e17cc54f53f444a7c3af1cd12157a5cbe4a28a5a8b04d1d336de7c71d25" - } - ], - "id": "d90ed3f3f2b23b59", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-7" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4bbc4541b14ca620d9cb8bf92f80fd7c2ae3448cf3a0b0b9a7c49edb7c62eeeb" - } - ], - "id": "0f67464b84cbb2bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-8" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "239bc736650af98ca0fd2d6c905378e15195cc1824b6316055088320a3b868c2" - } - ], - "id": "006936ad030b2de0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/GMT-9" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8b85846791ab2c8a5463c83a5be3c043e2570d7448434d41398969ed47e3e6f2" - } - ], - "id": "42fefbcbb70e6a27", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Etc/UTC" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a70f079e056dddb53942b473bbbd2a3a67faf5323292592096f554b5ef67b4aa" - } - ], - "id": "a37c74f75d1aa791", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Amsterdam" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8130798c2426bc8c372498b5fef01c398ba1b733c147a457531f60555ea9eae8" - } - ], - "id": "eec9358f27a7a493", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Andorra" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb0b732fdd8a55fa326ce980844f5e1ea98c72f2599b96f48ece460dd5882444" - } - ], - "id": "9a4bff2006a90aba", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Astrakhan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5c363e14151d751c901cdf06c502d9e1ac23b8e956973954763bfb39d5c53730" - } - ], - "id": "1442d7288c3c337d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Athens" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3a95adb06156044fd2fa662841c0268c2b5af47c1b19000d9d299563d387093a" - } - ], - "id": "780c1f80e6f73981", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Belgrade" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ee475f71a0fc1a32faeb849f8c39c6e7aa66d6d41ec742b97b3a7436b3b0701" - } - ], - "id": "f826f3ed6e49b403", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Berlin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "812f55aeb6e8cde9ddf4786e15eb4256b21e82cf5f5d28da1bad17d94570cac0" - } - ], - "id": "d5658ee952cb8bc1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Brussels" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9df83af9b5360fa0cc1166fd10c2014799319cdb1b0d2c7450a7c71ff673a857" - } - ], - "id": "dc93f0190e4e6037", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Bucharest" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "94dc2ac5672206fc3d7a2f35550c082876c2fd90c98e980753a1c5838c025246" - } - ], - "id": "f5883dd1dfbb42dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Budapest" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7527faea144d77a4bf1ca4146b1057beb5e088f1fd1f28ae2e4d4cbfe1d885e" - } - ], - "id": "4626e1065be8ad02", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Chisinau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "abb8806e477bcbd42f6c08ba5c664450e4f034309161646ef55402c54ad9d355" - } - ], - "id": "8266f305ac432af0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Copenhagen" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "40e8d2a1c3b572284da39f6f4245b1bc814f452c44f5aa73d0a011571d5ccc43" - } - ], - "id": "f22bf24740d50643", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Dublin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6bced6a5a065bf123880053d3a940e90df155096e2ad55987fe55f14b4c8a12e" - } - ], - "id": "19816fc858ae5cf7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Gibraltar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "63454225987aa547bd9b47d41f274ee90de8d52c66c3c624d42508da55cf8cb0" - } - ], - "id": "0db785414ba57a47", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Guernsey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "184901ecbb158667a0b7b62eb9685e083bc3182edbecdc3d6d3743192f6a9097" - } - ], - "id": "951b18e595ccdf69", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Helsinki" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8c20e22715c8950b0a30c68f191d9fbf2ebef60189279f2ca99cbabc14ec1b12" - } - ], - "id": "5abdbeb30fd8497f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Isle_of_Man" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d92d00fdfed5c6fc84ac930c08fa8adf7002840dbd21590caf5a3e4a932d3319" - } - ], - "id": "77c49bd0e75d33c3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Istanbul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ae8f42ddba0b50ac3b52b23f967a0cd0da7cddbbfdbc711152b38d4146b673d" - } - ], - "id": "5663316d2067697f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Jersey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b3b19749ed58bcc72cec089484735303a2389c03909ff2a6cff66a2583be2cc3" - } - ], - "id": "9aa490dc7af879bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Kaliningrad" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3fb4f665fe44a3aa382f80db83f05f8858d48138f47505e5af063e419d5e0559" - } - ], - "id": "9ff3db3ae92aabe7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Kirov" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fb0ae91bd8cfb882853f5360055be7c6c3117fd2ff879cf727a4378e3d40c0d3" - } - ], - "id": "6131e21e09fd0570", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Kyiv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a9529c467b13216ce0489832d242ce7e18093ba66eed838a985b4e382a495ed" - } - ], - "id": "70911bec8ad5d687", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Lisbon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2267951ff4cc76cebc3e804b8cca03648c169ec16ce0cbf9e5dfbe51e748043f" - } - ], - "id": "c3c59afa7a549a31", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Ljubljana" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c85495070dca42687df6a1c3ee780a27cbcb82f1844750ea6f642833a44d29b4" - } - ], - "id": "b82ff511171b3578", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/London" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f7be03bdffd7d50212286d732224c92487c66afa1b3b6d475154be1dfcac39c6" - } - ], - "id": "9a0cc372f12c2d5b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Luxembourg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a42d7d37ad6dedd2d9b328120f7bf9e852f6850c4af00baff964f659b161cea" - } - ], - "id": "69775142deffd19c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Madrid" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "12129c6cf2f8efbeb9b56022439edcbac68ad9368842a64282d268119b3751dd" - } - ], - "id": "dd103b6e816d2e18", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Malta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a7f3acddacd5a92580df139d48cbd9f5f998b6a624f26fd10f692d80fae1894" - } - ], - "id": "d5fde6809e34039a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Minsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e74b956576175ea7e7afe2b8b6c48d976e8265b463bbae42f924e9f35f305fce" - } - ], - "id": "c70d6721db7e4eba", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Monaco" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2a69287d1723e93f0f876f0f242866f09569d77b91bde7fa4d9d06b8fcd4883c" - } - ], - "id": "57eda73a752aa90a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Moscow" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "51d0844618f5258a71de88e68a5691a32568478a8c035f8f12fea11b09e9b090" - } - ], - "id": "a10b3998fe87850c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Oslo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ab77a1488a2dd4667a4f23072236e0d2845fe208405eec1b4834985629ba7af8" - } - ], - "id": "c77de4a172c6eaa7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Paris" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1bd7dd8545e6cf1eb9d419f267a57b00e60857d115e5a309326e3878968b2d9c" - } - ], - "id": "bb13785eb137645a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Prague" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "849dbfd26d6d696f48b80fa13323f99fe597ed83ab47485e2accc98609634569" - } - ], - "id": "2dced1a32a314a91", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Riga" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d5ade82cc4a232949b87d43157c84b2c355b66a6ac87cf6250ed6ead80b5018f" - } - ], - "id": "43d947cc7ad40614", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Rome" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cf68a79ea499f3f964132f1c23217d24cfc57e73b6b1665aa9e16a3a1f290fb3" - } - ], - "id": "44ca03591efecbf9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Samara" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a3e49aca8bf331e3c6d0faf68ab466cde901c8051a8674e926acd2c66deaff57" - } - ], - "id": "47bf28606fac51f0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Sarajevo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "04c7a3e3d1e5406db80960a1e5538436b0778cfb893d270fb3346d6fb32b2772" - } - ], - "id": "a6695c1a43f1d699", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Saratov" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b7397bc5d355499a6b342ba5e181392d2a6847d268ba398eabc55b6c1f301e27" - } - ], - "id": "0b9b6be94a51e432", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Simferopol" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "50301171643800580da77e75187dc2f9ec2e0b40860578248c9c3dd0c348dcb8" - } - ], - "id": "d692664e243792ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Skopje" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84240a5df30dae7039c47370feecd38cacd5c38f81becab9a063b8c940afe6d6" - } - ], - "id": "fd8c84b62f7eedbf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Sofia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5e0a7819287cfa9cdd78978ff13436d235830d48f5ed1ebd87a4584db2d87768" - } - ], - "id": "3d7ccfa85a83f2cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Stockholm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1ae890b4688a4ccea215ecedf9ce81b42cb270910ab90285d9da2be489cebec" - } - ], - "id": "5d7332010b57d063", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Tallinn" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ced959c824bd5825de556f2706e9f74f28b91d463412d15b8816c473582e72ec" - } - ], - "id": "eba6b0256e879307", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Tirane" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c5b207154e64e2885cc7b722434673bedc7e064407c079c79be9bda31472d44" - } - ], - "id": "3332a20488485ebb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Ulyanovsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a7b7adba7d5cbdab931406b197603bdb12f5b9952ca7e91cf8f17c5d729955c8" - } - ], - "id": "1a68c9dfd29a7437", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Vaduz" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6662379000c4e9b9eb24471caa1ef75d7058dfa2f51b80e4a624d0226b4dad49" - } - ], - "id": "9a643c6211946e4c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Vienna" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "505cd15f7a2b09307c77d23397124fcb9794036a013ee0aed54265fb60fb0b75" - } - ], - "id": "dacaf110bf8de8c5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Vilnius" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "46016fb7b9b367e4ed20a2fd0551e6a0d64b21e2c8ba20dd5de635d20dbfbe4b" - } - ], - "id": "cc048f90a39b9ad5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Volgograd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4e22c33db79517472480b54491a49e0da299f3072d7490ce97f1c4fd6779acab" - } - ], - "id": "ab76020314485fc6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Warsaw" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "799e8a8826651db19a97b6231c4aca1813391e942ddaf289ceefcb1f868e620d" - } - ], - "id": "74a1df5710aafb07", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Zagreb" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2b9418ed48e3d9551c84a4786e185bd2181d009866c040fbd729170d038629ef" - } - ], - "id": "34a44087432e08d5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Europe/Zurich" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6851652b1f771d7a09a05e124ae4e50fc719b4903e9dee682b301ae9e5f65789" - } - ], - "id": "44991e242ec683d7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Factory" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d589029dcbe02fd6790a6528e1593c55b426800ed9010d0fb44dfb8f5c8e962f" - } - ], - "id": "3a21a7e1a6c3ad9a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/HST" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7c045fb862767cb86ae329a1a808dbfb8d04910550be71a4fcf5ebe5e5824c99" - } - ], - "id": "46d54b939efdbd77", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Antananarivo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "db7076ea9c302b48315bb4cfefa1a5b7263e454fe8e911864ab17dde917b4b51" - } - ], - "id": "2d4149fec0a4b8a8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Chagos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2782345835ff2d8009c6cc76bd4d0477114940a444fab44bd54bcd42fd3da42b" - } - ], - "id": "b3844cb8825e9202", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Christmas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3d7fa4f09a6085a8e3be1963b418d6a336a2bbd361512a557a8002cb6700c4df" - } - ], - "id": "ee6140067fcb2088", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Cocos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4f2dc7f436427a68c992f877d9c331baffef0f65023fd9bca4c0dd697e88ff70" - } - ], - "id": "fb2cb918e8666fa8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Comoro" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a08bdde9b99014c2d479fa019f87357d04ce01ac0672b3dc9a07b68d4ec1b18a" - } - ], - "id": "2032cd29c5354986", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Kerguelen" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "64d5e36a82ffa3ae7bdb15e0b204a66dde43fd291a09a6b2a25a523758def36c" - } - ], - "id": "747d4275ec90bae3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Mahe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7544016eb9a8077a1d5ac32ddcad58527078e3b03a9e45b7691d5a1f374b17b3" - } - ], - "id": "a891c84651297f89", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Maldives" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93abd651571f537812d4ad767bf68cc3a05e49d32f74bc822510802fb083d20a" - } - ], - "id": "d61b0230ee81c8c6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Mauritius" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ab52952d2b74e897e330f67b329a0a4c7d34e9e585cce1ada8a10cbd4d11523f" - } - ], - "id": "fb6742bbcb773325", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Mayotte" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9479d2561ec2602b83044338758b160e4d34e81480ce79023f18e24ed2ff5a22" - } - ], - "id": "8a7b51a423175d4e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Indian/Reunion" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8b708a4ae3f837f3c08fba3e09b93cccf11d16cd0259604201f8362570f1e55f" - } - ], - "id": "fff81914e7f64123", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/MET" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e88430bed4f5d81cf5a538aa16ea15c4d63ee15892ed9ad81e8e673d6c3328fc" - } - ], - "id": "c92fb884ce91eaf8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/MST" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f75d04937d852a84b265663f1f5f551da56fa9bf89b2f9d64ce387be1acab04d" - } - ], - "id": "0717fedf2958e0c8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/MST7MDT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "43b4c22e413af5aea0ee63e83c092a860fb4752b728800b48d594cef6286fd1f" - } - ], - "id": "7a98702b8068fa15", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/PST8PDT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "726e92e83d15747b1da8b264ba95091faa4bca76a8e50970a4c99123d9b9647e" - } - ], - "id": "dacb16f91adfd0f9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Apia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8000e3a323e8fd0212414e9426b020707a771c368ca0e151747f9ddb7b814b27" - } - ], - "id": "a3b3605a35c8829a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Auckland" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "64a0dafd2ff68129663968b35750eac47df06c4e7cadf2b5bca64766aaebb632" - } - ], - "id": "54029cd4a3c7e138", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Bougainville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "96456a692175596a6ffc1d8afa4dae269dac7ad4552ba5db8ec437f200c65448" - } - ], - "id": "19d840e33440e4eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Chatham" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e886032958ae4430bf455c750093b16b35444fa719b5dbff2c513ac5bb4622d2" - } - ], - "id": "3a43e77808819bd8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Chuuk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "64eefdb1ed60766dd954d0fdaf98b5162ad501313612ce55f61fdd506b0788d3" - } - ], - "id": "2448710a9517f85d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Easter" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a46e0d31578cde10494d99d99aa78bab3dd0e680a08135b81cef91f457bddba0" - } - ], - "id": "6855a68639baa20d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Efate" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "828c3e4a0139af973c27f020e67bc9e5250f0e0eb21fca6d87f6be40b0dc3eff" - } - ], - "id": "417c1464f3d2c9f9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Fakaofo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c955305c2fc9c0bc9f929adf08d4e7580add30ba925c600e7a479ee37b191a23" - } - ], - "id": "d16d0e2b0fe02d81", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Fiji" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3fe5d8c25590a56bd2dd0fd36057b7ec1ae0c4a272e6d83b3c71103420c6bf95" - } - ], - "id": "37644c6271410737", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Funafuti" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "31db650be7dfa7cade202cc3c6c43cb5632c4e4ab965c37e8f73b2ca18e8915f" - } - ], - "id": "d663a7176086484f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Galapagos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cfa79817cb2cccb8e47e9aa65a76c1040501fa26da4799e874a68061bbd739ed" - } - ], - "id": "06fb258e1f015c58", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Gambier" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e865fe5e9c5c0b203ae2a50c77124c14cab8b0f93466385ec6a19baf2cdf8231" - } - ], - "id": "c0f6164a585ac2fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Guadalcanal" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "131f739e67faacd7c6cdeea036964908caf54d3e2b925d929eb85e72b749b9f2" - } - ], - "id": "4d2bd104e2023fcb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Guam" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7f03d1bf5264e7ab023a2ef9b997ddfc8cb6936692407c770762b9c549523f33" - } - ], - "id": "941930e248b2a874", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Honolulu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "52f13b7d5b79bc64bb968297d7489b84d8a596288dab0bd001757d3518588603" - } - ], - "id": "d85e691cf7be71c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Kanton" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5474778aec22bf7b71eb95ad8ad5470a840483754977cd76559e5d8ee4b25317" - } - ], - "id": "63954ce36cda8f56", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Kiritimati" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "566e40288e8dbee612cf9f2cf3ddb658d2225a8a8f722c7624e24e8b1d669525" - } - ], - "id": "7ddf6bc6f46cfcb9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Kosrae" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f89c7deac6fe4404a551c58b7aedbf487d97c1ce0e4a264d7d8aeef1de804c9" - } - ], - "id": "dfa775b1a4cd8adc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Kwajalein" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0f0aa1ee05e8cfb0eec2ed67ed717cc848e133850b12ce362d2432cbb17eab34" - } - ], - "id": "609d9c82d70233c5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Majuro" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bb3b2356896eb46457a7f1519ef5e85340290c46f865a628cffafad03ee3b9f8" - } - ], - "id": "ec2e7f2bb7673e7f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Marquesas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9b903c517a790a878e17f41acd44f8782af3963a4673ae296d93ab906494cad9" - } - ], - "id": "c5f54537aaf78e16", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Midway" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a06c68718b2ab2c67f11e4077f77143f9720d2ab6acf1d41ce81235568c4ffb8" - } - ], - "id": "fb59586013731ec1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Nauru" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "29cd01460b2eee0d904d1f5edfb0eea91a35b140960c5328c00438c0ee98350d" - } - ], - "id": "771d439472590bc1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Niue" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "09d11733d48a602f569fb68cc43dac5798bccc4f3c350a36e59fcbf3be09b612" - } - ], - "id": "980d35b8d195777e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Norfolk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1526a7a4038213b58741e8a8a78404aca57d642dd3ceed86c641fcfad217b076" - } - ], - "id": "db256f185ffb86d0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Noumea" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7c262b62985863aad47f13b0ef5db2e5cc917b5d38002de9a2ea83ddb0883458" - } - ], - "id": "476cc54350ba3311", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Pago_Pago" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0915bffcc7173e539ac68d92f641cc1da05d8efeeee7d65613062e242a27ce64" - } - ], - "id": "ab3dfea4b9b4db86", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Palau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3bae4477514e085ff4ac48e960f02ab83c2d005de1c7224d8ae8e0a60655d247" - } - ], - "id": "8b4ad9efdd491442", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Pitcairn" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "62a5eb2b08e1527c56c95e8f160d4bebfceef3831f3d6f36772a5fd12ee91ed4" - } - ], - "id": "c3c0ed1366522e77", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Pohnpei" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7a2fd78e68910cb87e454f78bafcfd0822084451f5af45fb58bfac07ee8317ad" - } - ], - "id": "f220a4ce496d6705", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Port_Moresby" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "deeaf48e2050a94db457228c2376d27c0f8705a43e1e18c4953aac1d69359227" - } - ], - "id": "313a6bdc302aee37", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Rarotonga" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f1d685991ea1f04d186f9c9920b6d5905220348b5291a34be8be71f4aa717774" - } - ], - "id": "9bbf3c3076e9e4aa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Saipan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f62a335d11580e104e2e28e60e4da6452e0c6fe2d7596d6eee7efdd2304d2b13" - } - ], - "id": "0e6ef360cf40055d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Tahiti" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bd3e94c56eca786a6d761f34163f404804c698bc7c59a8badf494c2f89b083cd" - } - ], - "id": "cef1c9525a77e138", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Tarawa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f44db6da6015031243c8a5c4be12720a099e4a4a0d8734e188649f4f6bc4c42" - } - ], - "id": "192a9b8b2cd08ff8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Tongatapu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "75327195d81c69dfa41ab383c28e1c0071914ac4be2b77e3799eb65845219859" - } - ], - "id": "2dd0005efc568be2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Wake" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "080970d47e60904479964bed98763ea69a062f784d998c5f31a5d0a48d1f4ce1" - } - ], - "id": "8946621cae7fb7d7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/Pacific/Wallis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "49cd25d3711f56cfda222d7b2382b2649164c220076ade418298eeb850e1810d" - } - ], - "id": "ebd0a93d3267ad61", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/WET" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a01a5d158f31d46ad8e6f8cc2a06c641810682a9397d460320f68d5421b65e71" - } - ], - "id": "2aa568b657d25417", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/iso3166.tab" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "05b9f00122deee9aa83ef22e3e2709a15b6a4b0d320faa6c991c628b743cee2a" - } - ], - "id": "0c570deb1ed85c97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/leap-seconds.list" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7e30b7f44bb7c01e88e20ef1fd52fb1f3bc355b88a6cb5237d0004828ef8e362" - } - ], - "id": "932a22a0cca0035a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/leapseconds" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a448e3b8dd1efafbbb02b1672203805fdaca0669a9e88f2f6071cc68fa7bef7c" - } - ], - "id": "a96823e2e56c8bbb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Abidjan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "07a74996ba11157b9fdff93c4ee1c84e80311f5b81e847a3e1ca81f1fd67a2ba" - } - ], - "id": "b077b5c9db6ea874", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Accra" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eb302faf9d9e25d6ffbf6e2262d5eedafa65ab8e639d500d3cc29315bc9f2c1d" - } - ], - "id": "1c68dc15549cfa3c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Addis_Ababa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4dda6208102162f92e82f234be034ebb906ea8e5270350da56f1ee23301bb97a" - } - ], - "id": "a45c8615bbca9f34", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Algiers" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ebf39daa7bca212c37833f6031c6a9e0f8d08418037dc1d8db9850d3e9dec008" - } - ], - "id": "c710c260129282e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Asmara" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eb534d391f21fc52ff83253274eba352f78dec2568488f8094e27ce34ec33c1b" - } - ], - "id": "8156c442407d3c1f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Bamako" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8165c66dc3cea945f8014af87cec63668e393e58686d85c07e6ff065977a6fed" - } - ], - "id": "a73a347fd2aacf4b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Bangui" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "62f87e0b461d26af6c5c10c8ead6c7b43941c0284ffa60b61fb2a7c7b8c8bda7" - } - ], - "id": "09112d44af768586", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Banjul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d61c60c9fede253d27d302ab0776879b72c0803068731a56806a912fb31c86ac" - } - ], - "id": "83340d29cc256f72", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Bissau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47c437001005889924a382d2191c63ec3413c59509cd3b2f05dd8be9aa78546a" - } - ], - "id": "6803655195457eb2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Blantyre" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1430b1d49f65db7ced2d347884eb1e86d1d35b5e4c8d169fb926601253f5a473" - } - ], - "id": "ddfd158bb258ad7b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Brazzaville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "526df39faaeaf8e82f0fcbbede0d01afb8e7bfc17776c43e820620bd2804ad73" - } - ], - "id": "693fe5ad183e4936", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Bujumbura" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b7515dc1453a6051ecb802d9a1a7704c832a8d26898729057d5aecb48e09ceee" - } - ], - "id": "0258a4ff5a515b32", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Cairo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cfd0f8318c6f8c55af3e59ddb9acf01881443bfac260f2573f05ea1376d8dbf4" - } - ], - "id": "d235a1760c6b6d6e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Casablanca" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "055ee7d4d7aa9040b4d84c7f57675df31f104fcbff23b308d2d76f2e0834a583" - } - ], - "id": "99ae97792dbc9e15", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Ceuta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eafd47bb5d01b47758c59d3a862ea7ae38851b76431b3b3a3dd00f6c0728231f" - } - ], - "id": "ddb4f5de1597ac0b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Conakry" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f1846bce6a8ada3a718292b1bc444c79177a63d8dba816bce0b9766b0b5d48ec" - } - ], - "id": "40b3a713c4c088d9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Dakar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0850172e62d7df62da85239794b664b2a7bd6b26ec281df1663e843e619ff7b9" - } - ], - "id": "3df1007cee4d1f29", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Dar_es_Salaam" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b3e556e38dd3f0182fc85ad81a3e580b64483fdc2c75efcc543b1db44eb65393" - } - ], - "id": "50d6292d1f47c38b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Djibouti" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e84a43bf19cc6d59b927209ad7c77ddd0699c6287054c4d679c81297e6cf05ee" - } - ], - "id": "420b3d344aede60c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Douala" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c3be36f994111c3de19d1f56cafc80a764e005346344c49072aa012afbeca6ac" - } - ], - "id": "825abfee548bf467", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/El_Aaiun" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e10af2de2ea4c765b774334441c49b2408a42664daec604cc6928e8d4fd083e5" - } - ], - "id": "15480ba9a1402e0a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Freetown" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6cbe0dd7e679df4c832bccb9a9cc167e45996570724bc47b59e78ff1892dc6c2" - } - ], - "id": "d3617ef9c91ea98d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Gaborone" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1d659e2f5168be7444b7a2c1eb555658e24871bc6ca8eed23c34be01d3c34005" - } - ], - "id": "352fb86c0120d77e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Harare" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2c1200180351bb5b73dc8d0751b62bf6a10d0503b85d1bcfe9918cae9a4c0f30" - } - ], - "id": "09261707b35f2e59", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Johannesburg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c850cf5aecf218f83e595ab79e5ee95652254769ac3c324fb93e230736044605" - } - ], - "id": "201d47199a474524", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Juba" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0da2d5bcc62bbc9194d6ca9dcf3e68ccaf8f13e4536ae3cb90f08d07825eb60a" - } - ], - "id": "e27a14ea2487f2c2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Kampala" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "66e2ec792ddc70af87c2653a8d85a10071b0d0a2e3664a4b00ab6f8a33c27562" - } - ], - "id": "6e8c7670747db5de", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Khartoum" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8665d90e6dfe8d0f38ce0aa6dd2171f9a75925bb7d2401c3966007c55523e493" - } - ], - "id": "10f093bcdd180d14", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Kigali" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1b41ec6ea93e195760377720ba4be74153dee1946e527426e60b2a965a997ac3" - } - ], - "id": "b34cf3ebf9405927", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Kinshasa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "483d6d2787a02b2a1198bcf16988526c652471114d27bf9ac61f0d8eb8bd9470" - } - ], - "id": "89ebe056e9ea899a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Lagos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f3b3c7dcaf9fed837da0ae3d9e944949a92e0e942af4c3ac18438693abda06ac" - } - ], - "id": "cae9f65b208cebb5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Libreville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30d340465baa62670b778cbc13850f61ce75d97b6df77217609896e7bf5107a3" - } - ], - "id": "913132b7b32a07ef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Lome" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "655c653862ee670d360c4e35353ae175ef4ae7e22f3fe1246684be245a580a82" - } - ], - "id": "01d348a1694886b4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Luanda" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "650d608fcb9a5e56c17e01a672f7007a1b6b052e360d93f3e42a594be6a0bb09" - } - ], - "id": "852dd7a7eedfc721", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Lubumbashi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "42616a66882674632fd2c344b27c28ed4b680292c1088caeb93ff08252ccfb6e" - } - ], - "id": "fb102ef03b82fd5f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Lusaka" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c143e813c184f78c27829c6d8c33f1199cdbb6a238fb3f879f5c1e9251bd1e0e" - } - ], - "id": "c6d881c388481a2c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Malabo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3211ade7437d40d92519111d1b0c036bf35ac616680a212b70b2f08fa6b53fde" - } - ], - "id": "8c6a8308b121e07d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Maputo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f3ec32c82735aad02f968b2d9acc798e28f6dc94767b074bca72b08c238b0329" - } - ], - "id": "fc1d3f5b49090a40", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Maseru" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f02343e0e2080059085435409d39149186a7de6d5b99c991d7b3959aef0ec2d0" - } - ], - "id": "38903cf6eefcfbca", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Mbabane" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f8f52b6c5a291ea484f3cc96792bf6e5ade99f41d7b42bae23fcc7e65fd83fb0" - } - ], - "id": "211d9b5ba1a9f95c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Mogadishu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "67a90bd43f7342a4c0fa5f6cf90f275a6d33d06e11df3b3c44562a25445c1cf5" - } - ], - "id": "3156ea58185e40e3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Monrovia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8910fc3ef38aac15f59a2ddb2b3b01f0bb40bb00e0a4c8e3267069d61d9fb150" - } - ], - "id": "0a5c93e2d7cfe534", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Nairobi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c86851d20552c2c2bee86a0124b8edfc9c1f514c6aeea45d6f7185cdf0aeb25b" - } - ], - "id": "6ad2816bcfa0501b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Ndjamena" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8978709b46d8b5f8f5270caaeb39d59ac5ccd3c85ce7e2fa8ae018f7c61940ca" - } - ], - "id": "c3700081d048f8d8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Niamey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2a9a48c8f0b5c3c0e5235c656af4141233213099539021e054c6f7e0e0dcae16" - } - ], - "id": "0ab73772eea636a8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Nouakchott" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f719651e6f574a5fd5d044ca75b55aa40de50fe705c3b2a941f4c6657859a5b6" - } - ], - "id": "6c99f8f4540faf11", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Ouagadougou" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "56f21b2b24136e2ace0f4e66b33fd4cc3ef37926c8d7b28829d5ed52bfa42545" - } - ], - "id": "23be831044f36735", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Porto-Novo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "042e0c44c614f962ba3bf3be41871147243c911e154a4050c2b4b6cb92d79eae" - } - ], - "id": "2373fff967167873", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Sao_Tome" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b93305e0d88d0a91a1545f93d474bb6f094ccc9eeda96240c59cb1631e6581b" - } - ], - "id": "5466ac28dc381bd0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Tripoli" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5ca4618f4f96786bca490ede781309d28a2179f122b650a66ae67c135a228aa" - } - ], - "id": "d99ec8e8bf3092db", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Tunis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "46984c5daf6d4e18a8da380b264f3d6af52bd8ea0576e336455736408fa08238" - } - ], - "id": "da67cc911dc06455", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Africa/Windhoek" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f8e9ace8193836fc47945d2cc017fd2fcb313ece9d13b470f65c9abdeecb2772" - } - ], - "id": "b8962ca94f4127dd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Adak" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e7e794a27c33611c56df517641711cfe7f8b94da2b791dbb8a6397c6cda5eda6" - } - ], - "id": "bca0cef452c9fb93", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Anchorage" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9d6654f407c287eea3a25b483656d8b84288fcaefebbb5bf88a5deb07754ef81" - } - ], - "id": "daadbe488bb62226", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Anguilla" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "de1cb4c347cb48c348f4a4fc60f2d92f07af75c90e623b9d0d2ed947d147cc74" - } - ], - "id": "3c015b08ab969eb1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Antigua" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76d979c455d610b75139b6109c7fe898c08ac20966117a87eba83f94e0c002c5" - } - ], - "id": "c384ee7e3321378a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Araguaina" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "abc69452b877d6f85010bc0e72f58033979f47fe16a3ff558d98b39a2998f324" - } - ], - "id": "5da543609af58d49", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/Buenos_Aires" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "342f634fd1db567b76517d0193cf934fbc97393c1430c32d8a01056fb7a4c129" - } - ], - "id": "d8177300bb26602f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/Catamarca" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "da7ece270618ae328d0631ff45cd230761c0a3b94c6f216141cef2cf06c7dd5a" - } - ], - "id": "297fa9536eea43a1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/Cordoba" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d3b0e2247fc5a0be823b8ca2004e3835496c2a50050004919f0429abb513d657" - } - ], - "id": "bb8e4145c87773c9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/Jujuy" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e9143a64b71dcf06748f4bd22585e9024b57fa7b2dc65394e5bdf89289294ba1" - } - ], - "id": "21b5f75e05727fac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/La_Rioja" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "944f96d11be2191c8cb8de2c056776423a2280b78987e5c800b5d636ee8ef772" - } - ], - "id": "98860cbd86c0511f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/Mendoza" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "09b0dd72e8f795e814594d101a2692b69d0c51bb41cbbe13d451dc33e9d894e0" - } - ], - "id": "61dfa9319e3511a3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/Rio_Gallegos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "615adacf846087af462f2fe0d7a03877123171668bb4f61f32d0b5f74c611872" - } - ], - "id": "ec05fdddc6405e4a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/Salta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8317031e069179ebe6447f43cdf44591aa6420a4fecddcda2992cfebe0475305" - } - ], - "id": "efbfe85b62e3f019", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/San_Juan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c99fb66ddcbacbca754cd60277b6c4aba4f2bbad02dc0f58334df20526e88f86" - } - ], - "id": "e1cb8ab54c9f6721", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/San_Luis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "021e59d5af20fa2fb37382dcb6ff9782063608e3108f99e26de894f07ac17381" - } - ], - "id": "f1c851c1fbf30be4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/Tucuman" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f6501bb2ed32ea45cb028227428fb905615c9c88d247ab9ad1697c0349c29a4" - } - ], - "id": "4417d9f81cb78c4e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Argentina/Ushuaia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24dd9a15edad714c16cc394b71ad9030b3c3835e7afc2651f1abc7df8f3fc247" - } - ], - "id": "b2a1c4faf83bc001", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Aruba" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7aeef1d4b736484bfd711a9845ad91e840e6636c7f788cc306d7b7e4d35508c2" - } - ], - "id": "ad3a95fbc28b3919", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Asuncion" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "89d9e65bedf306607b2a9f9dcdd2605bf4a6bb009a8131a5bb99e6b5a1f858ad" - } - ], - "id": "4ce7038aa8fe47bf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Atikokan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e2560ad326192c9872b2e0fb1a6d81b9d0f210f98d191824134c46006440ffd3" - } - ], - "id": "39f005792aeb5848", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Bahia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "da098039011a343c754142bf7e5adc71d33375ed2f7d87568d09cd3390325424" - } - ], - "id": "a82c5e9cf5280db5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Bahia_Banderas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7727aa5617d6155b17a42833cbeec8d06eb0c5bd296243e61e40769151897c1d" - } - ], - "id": "b963f3f51e251788", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Barbados" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "39bca023d5e705367b64ca4a61b1f0ac9769550a12079f64d80f2c6ea81ab9f8" - } - ], - "id": "70af0ed8b9b3c9f0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Belem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e8c1a2e27a6b179ab1af52789a335bc24565eb686740653beabab574129ec2e" - } - ], - "id": "3532be632076c45a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Belize" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4b1c76102dae7ef12d9088ea7bbfdd1ccbba8d9bb45f654b7bfc8e0ae46d676b" - } - ], - "id": "446a22d38880794d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Blanc-Sablon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "41f137bc736cc36cde22e99e1c4476da215fd3a35d82645fb6dae2df3a8612f0" - } - ], - "id": "fd47aac3a3fc1bdd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Boa_Vista" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f8dfe5add595b7bcad8acaad06adb751264ab05185a29cee6fb3cb5f794d2b94" - } - ], - "id": "b13f542fb65cade7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Bogota" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "663c4f6a377d06bfb385db370d70bc98a3ee63dba7ae429a291ea31cfb2d4dba" - } - ], - "id": "707a645a061a7783", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Boise" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5a907b0faa2bab59c7123dc29db8254af89694c648206df1003702107a7d4229" - } - ], - "id": "2efb8ec56ef90948", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Cambridge_Bay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f37d5172a5d1b4918415f9ac6e523a596add078bc70b27f61ba15644d92e5201" - } - ], - "id": "9cba4c0e927f7f3b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Campo_Grande" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0056415c704f73a9527ebc48612a5a33592c6bf9a1d1378fa3d07713a54660d5" - } - ], - "id": "0c73180cc33549e2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Cancun" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "859d1888a8e79b04956f36fefd0d0de46f2fc2a289a43f313bee27a1dba3b6e6" - } - ], - "id": "7cae16e7cca280a4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Caracas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c4b03a5d321c1330b73843c4830c01ea1d092369e342d52e6595057df5df17c0" - } - ], - "id": "1d0f15c2c04e7a8e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Cayenne" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6eb7dea7c606d51acd655791d142b9d907e457ec577ba708a735fdb19a5e5fdc" - } - ], - "id": "67c09c12c80bcd11", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Cayman" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "21907699b11e9dfc199334b52830a9f8a07e2dbbf552370fd5abcf55c968f869" - } - ], - "id": "f6ac26365c2b6edf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Chicago" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "38e4b3f19e9da8d773da6c331cfe3ebecb28d914d7718e533394844c4bd0b838" - } - ], - "id": "cc4e751c8026e9a2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Chihuahua" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fbdcb764e91c71c1856385e4ad6aa17e1d989e5050766f020a8e644d4fda3e61" - } - ], - "id": "da48452bc5b0586e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Ciudad_Juarez" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "530b148c8df55e0e3927bdd272b3eb04102ffd6e6339b4f3197026cd3af20883" - } - ], - "id": "1643f9a488c8827c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Costa_Rica" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5faf159af5f1d1577ce3ab31142398cc8eeb893c4f9c1c205fea5ae45f4524c5" - } - ], - "id": "45dd27c65d90f90b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Creston" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5778857e75904f7689b37adbdcfd0a27d902d130dae4c92c205695da67b461d7" - } - ], - "id": "4aa2ca5c1497b355", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Cuiaba" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3be869c783511091916739602ab821a9109aef9bbabc30e621ffcc4978143630" - } - ], - "id": "2cd70e8016befbc7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Curacao" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c520f08b81b4ad0c0306892253669caf4548ad0d33d589970da9375e21d2408c" - } - ], - "id": "89d1b5d7718893e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Danmarkshavn" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b787161b06c092c8fdd0b3c2c7d98d0e409dbff4d649665b8714c17b65a290aa" - } - ], - "id": "e281d24d7099f5e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Dawson" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2b4ae2ab5649b1f0dc58a49e6222ba84b72d6f0223f4179851773607100e075e" - } - ], - "id": "e99828beb48b1d4f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Dawson_Creek" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "de83a8bbc759f18e6754c3164a6e9405b21f087b9d4be0ca43b31fb8a3d057dd" - } - ], - "id": "7659e4c9ef1059bd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Denver" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "afa1d4c171e8355c482ec727f9845092d5ace5a0db769052b14197ad95f60a73" - } - ], - "id": "dff4eaf5e627dc6b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Detroit" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f83748410d5170316285c873aee16ce37c94ae0beec3eb8a30a86a0d45669ecd" - } - ], - "id": "03b7ad0d831e1ddd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Dominica" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "61721264943b4216e9f888c6a766bf3da283ad4e10d7675833200eec320bca3c" - } - ], - "id": "aad97aa3b4ad4120", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Edmonton" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4cd30f316df2d6fd3362d80714fb456cd56258635716231f57be4604c2e9ef38" - } - ], - "id": "7684ec81335dba53", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Eirunepe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "421d7987cec62879562a2275e11dea8c57fe003bab61c08c7c432d2bf1317456" - } - ], - "id": "382e24e05b4da202", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/El_Salvador" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e377507a964b4e5ad493a34572df556692ed3fb1c4149b3d8307d6abbe87ce6f" - } - ], - "id": "f4dd4277804a1888", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Fort_Nelson" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e3a70fa842400a63af1fc8e37f5393496c6dc8e9a61506a968d8f1c1faf926a5" - } - ], - "id": "c19587ebe900e1eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Fortaleza" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f49ef20f6d263d0e320e30969791b76b20c9de7d57d3a9e3d0f024025e9843cb" - } - ], - "id": "4afc27f3978d6efc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Glace_Bay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "849269d79949c91166c0a3dcae99c18cc3cafd82c71120b19e329526235663dd" - } - ], - "id": "4e884740ab753066", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Goose_Bay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e6955b36d0f30ea8504c02d6f15405ce1b48521bd751fe48b8f69d42385c46a" - } - ], - "id": "d77f9752ed78a082", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Grand_Turk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8c02a8313789786b093110eadbee5192cb3927faed8e04c9283548ca721656a1" - } - ], - "id": "d01f68c8f3eb8078", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Grenada" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c582e1957b12b51fcb05e621958a4e6d7ed5137354471c22ed7d41d4a44cead4" - } - ], - "id": "82d73b3f0136565c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Guadeloupe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b7205b2aa263f694b4d678f9d116b7b284e141f4211740bc6a1dcfd69c321d9f" - } - ], - "id": "211deeef52595908", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Guatemala" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b8bcdcc31d3cab9eca65e144d75e392c7bab0f8d11702d6f28d55001539d0365" - } - ], - "id": "1a0f63db810be357", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Guayaquil" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b63b6839ca15af1bd907cbe8d56012f23fe05b77e5787e349ae53d8c0c36fc60" - } - ], - "id": "b8b513db498d7a76", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Guyana" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d36492cc56018be2626f0b991d84a881a90b66de42d2d5f109f7ae020a199849" - } - ], - "id": "660654ae3be0de35", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Halifax" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5c653095f98f2a9558b70e71573d4c7fee2bab88994d72332e3ca7eecec0c2a3" - } - ], - "id": "2fde399f169dcb39", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Havana" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9f9f9674223b890dbd1f17dae70de4643af45f4bbbdc9b97ad27510ad913148d" - } - ], - "id": "323e0c06ee5e5889", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Hermosillo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ed8fa58fe890edf257d50f6ff8c3046490e821433cd142857872966b26ab7f8" - } - ], - "id": "82321fce692c8e46", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Indiana/Indianapolis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ca6a535642eec105c3c384bf745371bf30de53fd8aa37ce2a907a1654ccd40f0" - } - ], - "id": "d5d6ef6e6e51e971", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Indiana/Knox" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bfbc5452fe5834f4f4e7b18dc09dfb1d6c1aa680a50b0d046f4d0c14c1311f2b" - } - ], - "id": "653225358f3080bd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Indiana/Marengo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e5d6bf2ef1e9b88af33494ead12b2dee99d9c96dc2adc211b1ccdd7d2ab2373" - } - ], - "id": "9624b319e25bb26b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Indiana/Petersburg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "087cb01fabdf69a5279b6fbb564aab70c52ef4c524c8aac52775b7c16122ac81" - } - ], - "id": "6028e1dc0c7bc4fd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Indiana/Tell_City" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "adc95810e49e07596a7f24f38863386443513466559c58a134c73c16aafdfac7" - } - ], - "id": "7cdee3637187f34e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Indiana/Vevay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "941d07844945233282e4b13cfb64f444ef18ae98b9b8bda15bf1386ed6930235" - } - ], - "id": "339939ea8a5f5e95", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Indiana/Vincennes" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "24c9f9eece3702e00e4686ad078a0acacd3e7e38947e51951f6497fb0b07892e" - } - ], - "id": "ae4cd355d99ed0a0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Indiana/Winamac" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "da468fca8d2aebc002ac1411fb47d6ad72cfa43e35f7a10a0f5b1d95612df0c7" - } - ], - "id": "7e9c436c45f9e2a1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Inuvik" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84e53d530fee52154e34cc31a9c211152428aa82d8edd99cb62bcff17f422cdf" - } - ], - "id": "5f6b26a1cebb6dbb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Iqaluit" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c40c059da4b2b040d079415d0fd13470aeb34ba77a4fde8c1f240279b4aae169" - } - ], - "id": "17946ad96fe7559b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Jamaica" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ef65d743a692998ac6109c82f61fef7c2702da2eee29fc91a34261dfa4d636de" - } - ], - "id": "36c73f1279d6e9cc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Juneau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1e46bde32b7ef83952bb714665e7ce522ea0e30c84a732b2cab011aae8252a69" - } - ], - "id": "20638d158af63555", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Kentucky/Louisville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "72033bcaf3369341374103f9d9e5dd174929a9ffd76e0264a3a12e3c55bc24a1" - } - ], - "id": "4fc50f2f981bd552", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Kentucky/Monticello" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "429fabb96c477ba0ac34d9083048e63e846605e3ceae5e288aa5f7386b1d6d31" - } - ], - "id": "b76ec50728116e70", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/La_Paz" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f8d22bd08c670826289a959ffbc6413ef6ae8152e9a0a0d9319e4080c3d4ffcc" - } - ], - "id": "e6f8d36860bb46bc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Lima" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eaf39f7dbf3fbcba5d05e65d76990c50b9e188d5ae6241b6a7b563074df015c3" - } - ], - "id": "012493f45a0be1e9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Los_Angeles" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e90f31207e8ab524e5f70ab502d0a45a0a19033ffa0367f2a9db60b7f666d6ac" - } - ], - "id": "82391f0810b8d479", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Maceio" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3d7d7f3f82aae47a719f4efd4094f2241a2096698b260c250b3783c36c300aa6" - } - ], - "id": "5342d0ed13bff2b5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Managua" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f37a0b07e668388c67af0daaeaea3b2c406d02e2dbcbd579b246084726b0d1ae" - } - ], - "id": "0fa05b1aeccbd7bc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Manaus" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "577daff8f5aea105985636b383a570918923be7ec4cdf765ee8424fe6568eab7" - } - ], - "id": "d153fde15d71c633", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Martinique" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6192c319da20eb029e4d732d0b1f8515f9763aea6c9fff8f986723a793be8135" - } - ], - "id": "bb7dc41785102d5e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Matamoros" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9a2163e5d3e3d1a80c34ee55c02b72354664c5ff93f0b7bfaf9b02c97f08b645" - } - ], - "id": "8f8ac2c4d0364864", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Mazatlan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "35b0217162d25f8128eaeed26b62d679c38df5550bd62051b8dd31a298af58eb" - } - ], - "id": "b66bdc46029c67b3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Menominee" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "45b120b13b06820ef9f149d57854b308169ed6052fd39a8f1ab410a40e09f9d6" - } - ], - "id": "a562417ba897027b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Merida" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0aa997a2ee2519e946b07e48c9c34e605eebf95fbdf3a5a4d2854dd9dfdc32ba" - } - ], - "id": "230b36e2aac0c04d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Metlakatla" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8d6af428317d232ccf6791d2b174aa68a972b0cb81cfb6990b4f74cd85e4f05a" - } - ], - "id": "1bf65f2cdcd45733", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Mexico_City" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0404a08947aec6d7cd73aa38eeead05229c109c70a460a3de86f3aa5354210a9" - } - ], - "id": "b0f9cf3d348b9916", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Miquelon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1750b3fe280d36d76f1ad60c63d03a231e3eda79027f95e50f1c39d2712a654d" - } - ], - "id": "f6326d6bb964d497", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Moncton" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6cae7a49b4473d3903bb9bd69b9155b2183cf0f621526e06efdf39717c5b1b42" - } - ], - "id": "8af0283c8d2d0c52", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Monterrey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "488bdfc1b5170b731520f5b8105601ebfb3b35a39a19c8f9df9c9d3225a4824f" - } - ], - "id": "55a91802be83e76c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Montevideo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7561cb74e046c6a384182e8e69cfb8b61562a5118e4f14bf37061f21fdd0a9e" - } - ], - "id": "1d0c848c891d633c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Montserrat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b726e7a3d01cf5aaae0b1bcf5c8788f4f51c7c8b0fe079b8d0026c3470f6a629" - } - ], - "id": "f9346a8ece50d07e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Nassau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2536090e22269263a8cfd9de3acdfb51b6c9ce98dc1369e5dcbcbe250aa2a066" - } - ], - "id": "e558cff7fd52dc59", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/New_York" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b43b5135126e7370639dce8ae648e43b882a30f92dde9109e48a4b89e2a2ab0e" - } - ], - "id": "f7f78475b0c0585e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Nome" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "43bfe953f02bdb2658cd981296147d33ae0ca0aeeac4ad7816cb81345b404712" - } - ], - "id": "e601c1701bc15818", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Noronha" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bad61e25cbc8695f02a7da438cb30d1d182fe2336252a1d01f7467556cffba72" - } - ], - "id": "8b51c761bf8322ea", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/North_Dakota/Beulah" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a2f5609733e714473938442c89cf1a993473ed9eb58ea2a77779d60879946c83" - } - ], - "id": "367a4362a0de435f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/North_Dakota/Center" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ee5d887780201b629353bb55fad5dcd0c2fd3531fa3dc1fe9df907f846334672" - } - ], - "id": "afc9946397e2ed81", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/North_Dakota/New_Salem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "25bd5a5694b8423c5e291700696b867f325d87d52eabef4d2f05d6cbd1d1bdce" - } - ], - "id": "4cdbad47d79b9a71", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Nuuk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "32ceab60c7d4d333786820112a9c0c2ab2b4856720c28836bec6ffa964a761ee" - } - ], - "id": "9610d293adbf48a3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Ojinaga" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4ba89f692822e0ccf0eaff206308d80bca5791d0f0897bea43f126459565b698" - } - ], - "id": "7dd3e2109d421776", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Panama" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aaea31ce5015a118f2ac350c1ea0b4a2ff69248c59f04151741a2ffa06781719" - } - ], - "id": "7bc485d79f637974", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Paramaribo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d18924f6224bd48ab70f31ac612e7207d23e551e448302bdbfe74d904adb1dd" - } - ], - "id": "4594d2fb9fdc7bf4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Phoenix" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e89f7c1645d632c3925241e5b6edf0849694bc5c4cdb0acf47bea92294242772" - } - ], - "id": "7b2a11c05f9ecc7a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Port-au-Prince" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "63d3f628b79a6677501eb44e6ea23ffc777f3512a9d868a808c90ae79ad655a3" - } - ], - "id": "080f0e377eb2b1c7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Port_of_Spain" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "09d1e286f1f8039beb2e0f5bca88ebd230588404edb0c3fab5b109182c105317" - } - ], - "id": "9e1ba5fd8abd89b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Porto_Velho" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9d8c418b78940fe183b2126219d7afcf1b8750907cf202a0a58285375f7877a6" - } - ], - "id": "aa7a3862d13effae", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Puerto_Rico" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d57273cccff3689bb571e604477ccc60f5e2dc95df4371d464f296dc3e8108d0" - } - ], - "id": "8bc2343a399c138f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Punta_Arenas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "138abab4310d89d970db1b016445a32924cdab79f91a9c49afb9ae2e6662a4aa" - } - ], - "id": "67deeeea2577176d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Rankin_Inlet" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a235e736ce2867d4163bc4dcf8adffd4006c8c5b39a0651f1c33628c405cbe35" - } - ], - "id": "bc2c3fe39d569985", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Recife" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8163657f8d06ff346059fbd56214075e285b05d4cd2811749c0c68f673450c3a" - } - ], - "id": "0f42029901ce9c98", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Regina" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c3974a1af647651b6c017bb02e5bfc6ecf7d4c776d2b1042725a10cafc84af15" - } - ], - "id": "42bab665be75fad0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Resolute" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cb250bfddcb33333016cac334c9da2fed8272dad674f5fddfc05ecfc905375d5" - } - ], - "id": "ad0ae0b0334e121d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Rio_Branco" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9793e0f3562640fa46694e927edf061b645737ad3a70feaab946004846acf956" - } - ], - "id": "ea1aaed0ab87a473", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Santarem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fc7f25175578426f7ba2d0c6d1d5296ecb20f6fee2d9476b747a6516252053cb" - } - ], - "id": "186126a0d740ed65", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Santiago" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f2da0e8d2ed6e3c20abc25abeaf8e9f5fd196219cb7a7beaba86c0647b21d918" - } - ], - "id": "3765b57e12ef3213", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Santo_Domingo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1f119727d818b0a7a4b68ce4f2c1bcaeade057125f49f83f2e423506f90f3679" - } - ], - "id": "3eb488cce2c65175", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Sao_Paulo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3a595c996024797fd5e23e1add7f0dfad29daff8ad23ed7f2c7377036cc2fa7e" - } - ], - "id": "4cf4ae090529e82d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Scoresbysund" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce93c3ebe3dcfddd48ef6e3d83f09d3e4ad1820ff948e777ba63329e1795474f" - } - ], - "id": "54a385d16d43b97c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Sitka" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7aeb1d476fb75c6c8d99d978d394a8dd7f2334cee03dbe47ce4ac955df4d8c92" - } - ], - "id": "8eda2daaf2a80de2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/St_Johns" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b5d4d159d85fe2af5545be9673ab2abd428a8d7cb7616574474808c28ccbf0eb" - } - ], - "id": "85866f6bd0fabf56", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/St_Kitts" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6ea008a1eadf831d94c39f48522742f6d81ec0e2080af3822904d8f54ba0db3d" - } - ], - "id": "dc9c2fd4d0882e1f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/St_Lucia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1dc93ed8a9454c84b458f6f2147ba6f0b695156ed8e8951d6363a2dcb7dbf347" - } - ], - "id": "0ed43726f10bcf0c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/St_Thomas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "06e7a11becfaa697396945d2a2761b64c4e0f01524f76275526bcfcc10bf81a7" - } - ], - "id": "476db80751af554d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/St_Vincent" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7abd26512316f1d5d8000e9289ea02d68e74753e8e7da3da4b31c25ae4b777b8" - } - ], - "id": "93b3c291d9095c46", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Swift_Current" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "54fbbfff7d1154b405f9a1915ca33ac0a7983e702ca8b608c9377b079ed9608a" - } - ], - "id": "9f824afdce6c7d38", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Tegucigalpa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "af153af7af2720b74e0c02321d53befa6b29d6ef9fb7e827595dbf07c2aa375d" - } - ], - "id": "254ce5b911f5854b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Thule" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "10faf2f34996e3696380e3b173537eb97e4491eb6a0057c0cfcbb0ce93f37f67" - } - ], - "id": "59af199e63037909", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Tijuana" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ea04dedeb3c14f1a283a1638620f4bd9fb36f0f085f4ed79997910146b848a1a" - } - ], - "id": "7abf137a96a31c8c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Toronto" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "05bf2ea8379ce41e0d6eb28b1df4a0f743a8d3c90ff5ff2579fb805d54528bfe" - } - ], - "id": "1ae2f7c43faa5d66", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Tortola" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b1b44c6cef095db3f9af07bf3f2233ecac65d86e8266bde2b9fa7e9be7afe87a" - } - ], - "id": "0e437563828cd5bb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Vancouver" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7ca8f6faaaa27b4207caa529d838bb4c67224edcc6df037d752543d913ef483" - } - ], - "id": "8f2b95095dfea5b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Whitehorse" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b6c5fa7e27323a32e756e23c86a827121c29db2885e394a1270da182aab4b864" - } - ], - "id": "993b6a13500bd10e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Winnipeg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "30c7801fad057b3e6245194c2ce7011c3aa676c6cf6f161e9a0767841714a181" - } - ], - "id": "9d3f95817d16fb97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/America/Yakutat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "76a56cbfbf2d4f83ea44aee0665b9dcd76c31108daccfc66a6a3959830966df9" - } - ], - "id": "8ecfc87fa80f8068", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/Casey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3947a243926412eb281a887a6fa205fc06054d8bd3794593ba7052eace140c43" - } - ], - "id": "62946e227f21b00a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/Davis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "eeb05bddd802f48f9dc02bbd4103e6821b742bdb3ecde5ece46c984f93968a30" - } - ], - "id": "0454b7f4ad93148d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/DumontDUrville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5235857473aa3d113d6ba5542e92fe5b42e70ece04d261892ed084edd9bbdae3" - } - ], - "id": "26355334a1b30058", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/Macquarie" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5584a0d0dad56c12cbc2ff55cd959758b9149d446c2a2bc812648e8be3b48e28" - } - ], - "id": "89740f348db24b77", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/Mawson" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2ec3caed9470444bf6e9c108668259b37899ace255ed3beb8a8ed3ed7b73ab62" - } - ], - "id": "c735e0b5d237e6b6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/McMurdo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b8ffe90eff67f1c319199c1c22a1998322352358645be54c9bfd6cb3446faa09" - } - ], - "id": "0d4220b8789ee0a2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/Palmer" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b98f1ec01e60bb90a44c217b4d620d6de96f66008fb35a6058ab42cc70175796" - } - ], - "id": "3b91236ca06fe72b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/Rothera" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9f46201d0cb02c8cd726746fca6202eb7261dd2a860c7e0cf6c60f1a4d4d1c98" - } - ], - "id": "7101b6720b5dfdaa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/Syowa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6b627577d8b64d70f797224d2633c5990591b393d198167ab2ca38a34bc374a0" - } - ], - "id": "864be71f7233517c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/Troll" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "565f46c00a03bdd5538a784c1372b06268cdbaaffa8fed0d1e74cae6c59a6f5b" - } - ], - "id": "462768e590e9e718", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Antarctica/Vostok" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cd516ff957f7b0c11858924adc02e6285f670c80255a97146e508d4830cd5d9c" - } - ], - "id": "1181918b5e1ef17c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Aden" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9240dd7346390d886dcdcecad9eb9235d7d34d80db18b9b361bc0d6107e6a55a" - } - ], - "id": "4a1c350f1183e5c6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Almaty" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "85227911ee2342cb749b9ac75883866834f070c9d403d72d619e358127450efb" - } - ], - "id": "5f28d8b39362d7f3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Amman" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "241c2a34b642cdde7c229735e191426ba854475853ae2f7a386fd4e41b1df437" - } - ], - "id": "e344467ee5edd5b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Anadyr" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "216ef3dfb33df6ae2457bc984961be39d3f0a3d016017eea18af278c47a8ef17" - } - ], - "id": "b44e246a484b4f20", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Aqtau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5880fad242f766d35060ac90ecce9725b802abe39481d5598fd4910b526da7ee" - } - ], - "id": "10a4db369d1f5c98", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Aqtobe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f4fefefbbc1726788869598f8deaa92e8b8c70ff121739dbfa949adfb2500de" - } - ], - "id": "bd95ef2f48a49598", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Ashgabat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dce50cee61b201829d96d312305f77961833239a7bce04f94ef65c0c706a3828" - } - ], - "id": "48210eea38478166", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Atyrau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b80bd20f70848845165e96e0c6dceff500a608923c4741e29f8948ccd5fc6471" - } - ], - "id": "efac16e7a92d453c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Baghdad" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ff74b50af69022fbd3b2d7ed5815a4ed523155923fd72addd38f6a8bd8a5eafa" - } - ], - "id": "66e4cc7bcdf0a449", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Bahrain" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "49965ef5a007ac2d25e50170c15ab37e27db67421eef66d03774eb55b1cf8ab8" - } - ], - "id": "efd5106bceae41ac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Baku" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b0ec55280b92ee78b45c1c44418ea91bf54071aa4e916335e0f53a64b570ba8e" - } - ], - "id": "9f32062a93f698f3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Bangkok" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ecdcf9a8a65200582f9e684f63c89d79f31a5d4b1c9ef3a9e7ca2efb0f812e04" - } - ], - "id": "ed24e4728284a2b9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Barnaul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6491468eac50e1384809e4e8b4cdb65eeb149918c065e8fc446ac6e3343dc005" - } - ], - "id": "4c25a3e24cf20bc6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Beirut" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0879ff6badaa924e5512e0e2d2e335b85f21bcdd1c9936dc6f27c08435408f35" - } - ], - "id": "81933af2e94ff9f2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Bishkek" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5c2b59d8540875dc097a95f6e2e710525da72f6eff1a6e6e0b925d8adb111bd" - } - ], - "id": "92198c990ad51288", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Brunei" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "68cbbf5e2ff9f99d7277beaa31cdf0bb93f39c8dbe9af562b1ec84e1a86b0708" - } - ], - "id": "3363887f6b72b2e1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Chita" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "20f3121d86a4746e5625dee89c87751e9f5d7470d68fc123e7c7c68bda6d1db2" - } - ], - "id": "a9e1aa20d3dfc4f6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Choibalsan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "109d1e21f748ae494c52308d498e8f79477d5f471162720ff6414cdfaf881b97" - } - ], - "id": "ed81670d1999434c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Colombo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e3f815b2395f5b8b9431bdaab94ba54d90d1fbabf396126029c7108682d9cd17" - } - ], - "id": "188f6c3e29ce908a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Damascus" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce20f320d7637389a9fc05613cae134c88948d98fc4d9f7170386ba37158c355" - } - ], - "id": "59ab6f82131368e5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Dhaka" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4c91a0ee7f972b643e715350ea4cac29a4986898eccc6ebabff006c60055009" - } - ], - "id": "b198ab6f41fa325f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Dili" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7a35aa1d6a29a21f2197d7b617c02a4b679c38712ec4eb0be10340f5446f77af" - } - ], - "id": "f80d06a257fc6ca1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Dubai" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "05f7aa13b10d13e32537f070da7676e9470aa9347968d2852a9c38d34eeac346" - } - ], - "id": "9ccb5ae6c32dcbdc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Dushanbe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "64bf8e00278d3113ec83223e9d0faf81999bc54d63ef4c5e558dfded8aefd4cb" - } - ], - "id": "f579b9a44f5e1ff9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Famagusta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e54c8ab219f975dcd936e6e40da01cd24788ad46f5e94c728ed17f47236540a4" - } - ], - "id": "e8110fedcbb4bbc7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Gaza" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "58e13a3dcba8967d70a11b0af9abe2a40e137b79caba9c0a7a1ca39fd26709ef" - } - ], - "id": "a81aea1363fabaa8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Hebron" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "feb3435ac0461044a2ca23b08e4fccb680b4c4be80831164a3c350a28e51f75d" - } - ], - "id": "b46c29e381079f6d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Ho_Chi_Minh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e4a7c2b3cfa7ddee3c826b61e196cc807bff1879add4026a9029e732e131785" - } - ], - "id": "e5e3b46a1a2d5a03", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Hong_Kong" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a871af163fb3e981efb0d8688f0f6048ba4f00ff2db40772752409b037bfb292" - } - ], - "id": "14d6b73181f8f984", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Hovd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d3f38fb447cea2bb74c91849eda697e084042f33cd5edf2f1d9d68f302b92432" - } - ], - "id": "c019fff349934f07", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Irkutsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9b04f007dbc2271f30c53b29993fc429a89fd5307ba9a91e102fab31906d51d3" - } - ], - "id": "1aa6d198cc8c70f6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Jakarta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f5d7cb7dcac51f9ebac6f345b5ae200fc2dd14f4326a810e53708d21465eb1fa" - } - ], - "id": "1bbe1ad9d8af6917", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Jayapura" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fad6129afae401a295a884cf3610cc2d421e0542ef174a7b6380bbabc2dc33cb" - } - ], - "id": "eecf52428f813064", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Jerusalem" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "811a95584c332d4fe81ad43e86e56c0355365f772e432ca176e500c2869efc31" - } - ], - "id": "f7af9c881fd14a4b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Kabul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a26aef06829cca53a0d3f0fced8393a9277934307346a4e5dc6efe95adaa6a11" - } - ], - "id": "05f7b802d42db152", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Kamchatka" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c7c80b4b0b64988c16f2336f0205b62165125b6583d28c18d323597e7b1daa2c" - } - ], - "id": "85e981958f12dd31", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Karachi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c8931959bc8bd8620bc47aa8a8d50012682bfa3b888e7d7c429890275032ab08" - } - ], - "id": "05ea692f5dff4a09", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Kathmandu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "43f649c62a4853f8129f7374fd463405ba11662f92b7b59dddb92ff424daeb5a" - } - ], - "id": "ae77fe129aefceb1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Khandyga" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1cee9f3b011e6a57de208b2161d1463aafa3c2d89883c2b0939549c306121b99" - } - ], - "id": "1e59dfcbf8fa2919", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Kolkata" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c1bff84bc509df7f5f25566920cd534c4b2e30447e9305613cf66f8beecbbbed" - } - ], - "id": "aae6e89d8bfcd6c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Krasnoyarsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e3eec6c0d8d3c12df06a6a65d1e376700409f8afc46ccfa89a7b7e321c27885e" - } - ], - "id": "af191d180635735c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Kuala_Lumpur" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3f4182ac56036beec535fe7c35849773ca05d74f95b3cdbbadcd96785613800e" - } - ], - "id": "39740ce634edbda0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Kuching" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8e2546d4f16002cf0f75f400834668c6665769ee016678bbe35981cd83895b7f" - } - ], - "id": "5fd13281cae50d33", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Kuwait" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0e462630121ea128938b865e887aa175450b521b0cafef610f49930b8b174e2c" - } - ], - "id": "2ea3727ec230b5a5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Macau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "814b39b91344cec404f62fdd437cc5b94e022c0e76a6d7064167863067815082" - } - ], - "id": "4d120bda51164dc1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Magadan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d0302af242e2ba0d63e8a344d80de413a366faf0040101b66c354e4bc5dcc105" - } - ], - "id": "c66a398d063b7fda", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Makassar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6448d34c7b941d55d5681bf4c43d809a35bee5ba55b97ccdeda2e38b46cd35ab" - } - ], - "id": "99dd87d5ab076f7d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Manila" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "70423804f29654ee481510b51cb09515ecdf273f7dfc3404aa6078e9eab659f1" - } - ], - "id": "636e851bbc30144e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Muscat" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d7c615bd86a8feab71d4d330d465707a2ca11b435bdefddf057000dd03f76d23" - } - ], - "id": "33023f1b14d7b8c2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Nicosia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ad40b1b97f06afa7aa310d9ce28cb339cd9a7018c3c0b8f7a986612c0b45b80" - } - ], - "id": "ddcf8b443ee015cf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Novokuznetsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f6aee5e3c51d11b4ce07e151e627d4007adb44db36eb035916eb2a311b193d22" - } - ], - "id": "51709aead6ec36eb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Novosibirsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e99f1bc31e369121d9f6ab077d7b9d711ff5e2d9633dafb8f7f179eaaf8e8886" - } - ], - "id": "8e6c707df216cd3b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Omsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c7939981d91a7c3c1b5bcadb87de5ddb2d8545e8c44ffde5a1bb0c28595939ec" - } - ], - "id": "7e4f05a616511aac", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Oral" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "963dfc5670bc923736e9d167f8aa39cadafaa5e225f2c7d3d284b3e0d4d7cc51" - } - ], - "id": "1e96c82feefcdc2e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Phnom_Penh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5ce89605b2a21faf053446a9e4827df59bfa22a0b8f3306d37c278a2f6a4fcc3" - } - ], - "id": "9eaf41cef38901f1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Pontianak" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4128b9be626af284e869e25373fe6b055febbff9ae05d78939c4fbb3fbc49a5" - } - ], - "id": "c9f2edfa1549235d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Pyongyang" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8f481c177659c503896fe93e08f383fb73256f10e1144f497fa8357bb31a2cd0" - } - ], - "id": "4297907c398eb32c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Qatar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fc74c1043cb4aa0f1e922e21e59c562042561b84ab51d10ac25486dcd18c197f" - } - ], - "id": "9ce76f398032b21c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Qostanay" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2e6cbe933648a6cad0a18cdede4fe6e0814c3887fccf49436d03eb4c2fe41b4e" - } - ], - "id": "98a4cc051ac53f5b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Qyzylorda" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d0db8461364f93a0a946bd7f9746e76e1b56bb5ea01b0d921dda322eca3ec30a" - } - ], - "id": "fdd2f8a78cfc4edb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Riyadh" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dca44fa210e6303c1740ab9484c0423cc0c11975c3cff592abb16929608b4e87" - } - ], - "id": "bfd41dd9ce53f974", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Sakhalin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5307365a028a0db387c9b5281bf3ea4b7364cdadb92d2edf9dd38c1d7a00487e" - } - ], - "id": "cf6a112fc1c32a60", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Samarkand" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "38bbabc66b4a0c422cc3b0412aedfb3ba09e8e34db3786a8bab54b9b09f87e9b" - } - ], - "id": "b91126415be99311", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Seoul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "edb53f36fe8bdcae0864b40ea96518b3361d28cf721cb88bf6dd1f4d84ad577b" - } - ], - "id": "3cbc4b7f6929ae12", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Shanghai" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "78fb5401e6fb10e65e7d825a03ed30be128b16b523d29a1c72c268323890938c" - } - ], - "id": "a6f3507315d948cd", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Singapore" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a0286041902d8fcf4394fb09bd4b109fd50967e65f3f7bb4d691c40fb23a3f8b" - } - ], - "id": "a5d38b1bacea8097", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Srednekolymsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3783bded85f6dd75ae1e0f91b4695aa4904262e7c97fd8e5250c9910cf40f5b6" - } - ], - "id": "38788f7a2a48699c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Taipei" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f9cb8978f0d493dbea3d83ddede7e47e8474c790af64badba235fea52e89efe" - } - ], - "id": "3abfd85888eecfcb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Tashkent" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "73fd7e1be4c83eb80d6469957bffb593a3ddfb515068f24c1f35d549d4cb206d" - } - ], - "id": "fa22a0dae8f70b79", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Tbilisi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f48823800e18278d4c91cd7361fe806a939fa3d4f45aef9913b6e58c68a2e61" - } - ], - "id": "1dfa35ff53a3b4b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Tehran" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7c1eb9c510c80b32eb38bdd3d7fb1ea0a827e550645000119ed96de73bca125f" - } - ], - "id": "f11ff9e294ac6513", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Thimphu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d01faf22065edd03e5b9569c173481d3177df52e6e9061f5aa527bc25fe19501" - } - ], - "id": "d9005f84dd28b86a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Tokyo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1505b48f8311d194fff885adfbd36393809605ec3b6f27140c08204e08b6ed3b" - } - ], - "id": "6eeca05da5cee7a6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Tomsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d0145c583fb739264c47dbc1ff08e2e099cf538d859fef3bd53f911fef88518e" - } - ], - "id": "703569d727385d30", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Ulaanbaatar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "69fb61697b536cba77d73a12af240f7365eeb4adde0f32054159ef86595cdd48" - } - ], - "id": "12600ed4e4a1f2d3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Urumqi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3b2c312569981d866d3dea8df9a14989b6a4c8fe84a04243e5a1f380969cda9d" - } - ], - "id": "33a56c5632a4fefa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Ust-Nera" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3469b5804df00c485cef6ef9e9ffcc9bd41a7480a0972196f155df1c5ecf5cf4" - } - ], - "id": "c9c6e785a3e8951a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Vientiane" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "707bd6cb6907b4c918a39560e197cd6c7549be67993329cc510dfba29ef98b85" - } - ], - "id": "66aa6a9c088a13c3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Vladivostok" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9b1ea2341f7abf1927e7a379cefc0c3bf65ab7a658187694c4c4b66006d86ea4" - } - ], - "id": "a5b72e7a5012ffd5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Yakutsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47ded83a406849c0a93733308e834fa94374c148e12ffd762ae33c583b56bcb4" - } - ], - "id": "9213e4f6324cdd29", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Yangon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3da898b3bb413e5fbb1b2f125de2b21df240710e3bee90741e2f2587239d669c" - } - ], - "id": "f088d420fcb56f74", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Yekaterinburg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c8df9e834779a566ed5ae499d995b6da9910f2a504eeeb455c12506547ce55cd" - } - ], - "id": "957cbda7090a13dc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Asia/Yerevan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8368a7b1f914247c1ce3b22f6c8fea26088d6835eb9d0aa735a515a5a1e7f8c5" - } - ], - "id": "3fb0c73afefd0197", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/Azores" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "affbc8a72e53598fe6126982b37333a5da296e310ba9db4db73d1e05b2682974" - } - ], - "id": "68b17f76b18e9ee3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/Bermuda" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b195f252d0ca252ae130ab9d201b9ad1d171082c98a4dc3a7ec2c4fdb332fc75" - } - ], - "id": "2d9816a52c30db49", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/Canary" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bf4651b37a34c683333b5c71b84d365ee6be2a874560fac5600e67a70700ab66" - } - ], - "id": "8b7320c117ec5aa2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/Cape_Verde" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "56621aa3ef5fe6e7ee5b9d57a56fed24107ebc645d1bf84965a302f25db23175" - } - ], - "id": "339b41f8cfd6c528", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/Faroe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3f1ed0c5432d5be1110882203a53d9542f39ec6d48164c6eff15bd97f86b7da7" - } - ], - "id": "95f7c60267a2831f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/Madeira" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0222489cb7c91ecdddf856371c981e4ed9d27cc9a9ac9d6bc9112482e4b7b065" - } - ], - "id": "6471c798ef752ab4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/Reykjavik" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2f5e6f6ae604e09ba41a43ce260117b651146f33e96c4716955b143d8276805c" - } - ], - "id": "036662581036f4b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/South_Georgia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3601724e4a4733b7f68015be58a9bf8694c5b3319395e2eebfc7907ddece044a" - } - ], - "id": "a334661ec61d878e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/St_Helena" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5b9f9ace77a245ea311cf264845620758844792edb77d416060f301a9127685b" - } - ], - "id": "ae208e7f1d2cfe38", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Atlantic/Stanley" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "532470338427ea4ee50cc48f6f9681dcf620ea5df996e52f9fb8757d7e91dab0" - } - ], - "id": "86177d0636451cdf", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Adelaide" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "02486d225bd4737546eb79ea0e0752f419520d3e4ac8c938cef87f01946d9ee4" - } - ], - "id": "8e26adc1191b1261", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Brisbane" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5e4264e5ce01aef073683a16504a317be3006eb4ffeea701d1f592045f9bbf8b" - } - ], - "id": "e405aac96d00e5d7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Broken_Hill" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7a097d4593535ba95f9025ff26d811ec1b2c521c1be6561bcf9ed14408d4c84b" - } - ], - "id": "4a0412171fb73f51", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Darwin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0fe4876be0ed8cd127d41a0a82768ba9d1b707bb25db1e74db7f080ec076a7ec" - } - ], - "id": "1c8b65aa4f17f85e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Eucla" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "249276aea8c04de24ddf5fa77cf7c34aa9eca1e001ac88bf7e976aa2ce6e6900" - } - ], - "id": "0dd7a3602f97a7bc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Hobart" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "384b6534135f7867d70828b04d927174f3ee1de4be6690e8f814141cd8e2520c" - } - ], - "id": "efe0ba154362e632", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Lindeman" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e3c917aa2b680d0437706ff7cbffae6ce2728d4dbb8c0353cb2e33f742c3d0ac" - } - ], - "id": "012d2e97b7a86ff6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Lord_Howe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce54d281c85f376ec4c23bd2dfeb183d177292bfcdcad8a5036d70f2efa2d371" - } - ], - "id": "eed9f40d681fb553", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Melbourne" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "814d755b0a61b272d30f51b34464c341427f208c4918fd887c88c40efac7e323" - } - ], - "id": "2e11031f6286d9cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Perth" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aee81482c82368f2a573cc58bd4c71fcd38c6052f9b228a648bd5c46d366356a" - } - ], - "id": "549deace8b62daf4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Australia/Sydney" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e51d28ab10e553e243a634d67be91012628ce28e7ee076345501aa42d609e44e" - } - ], - "id": "cac68da6a726c8c8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/CET" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "cba49c0d5eb95abb4e015fd306d9c5fd3f3804f553bdd552c2e3b0da2cf94588" - } - ], - "id": "3fb049cc5be4e702", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/CST6CDT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "84d10751c45e495046ce4f754cda2238399246035f4631c111155e5178f8a670" - } - ], - "id": "596d5840cc5aabbc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/EET" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "be5ad2c1c15f9af3a4b64705e5075376e0ac695e7d03e9f042d96a96a68b94d7" - } - ], - "id": "995d540f3f41543e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/EST" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "86e7246da07975c4f60e33926f40ed1a09bf1772118b167447e9444512bdbfd1" - } - ], - "id": "73cd623822130756", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/EST5EDT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "dd8afee7d9c956f3898d9e097e956ce683a00f46a90d85cd95763d561b5c13be" - } - ], - "id": "e7689e8c1fc5573e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a9675b961f67634ab2ef6cbd7fce0a585b554d31f0282ae572dc5a7c5bbe6d87" - } - ], - "id": "4c7d9dc05ef28d32", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a326d325f19dbea2b8749d948809eb0ec7df549a73da0451a36a44f5e8ec0a4a" - } - ], - "id": "ca4eaf9ede45a102", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+10" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c6911a55a8577759f5c1d31a1eb6bcd978ea20aea8e028af0c1b22975d92cbc1" - } - ], - "id": "c02164ba72e3b462", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+11" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f10ef2c93092b452be7ff1f239183a3bb470b76d13a56836c2191c0679a801ff" - } - ], - "id": "54878cd194a5d294", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+12" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d0e12c918374228b34e7a9f4772f2493f751c355f8a041079a5356881c047690" - } - ], - "id": "9da2bdbee05522f8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ae1192d752f974faa2d1b85dddf7ef5e604781ce87f6b88317505d933c85ca86" - } - ], - "id": "56662186e8a00d07", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d005b55c8308a4579dc26d5d26caf8a298322d4b29898a228e87ae1eac229236" - } - ], - "id": "cbb6e69c522f1506", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "21c0f7d6578856179b87ff65a31f212adee867f5b2851f737392566c58e3bed1" - } - ], - "id": "087c6aff6b077fc6", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+5" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e34d5fa86726cbb89760fe8fccdfba9c5e3e02b828eb56bfc1269697d012120b" - } - ], - "id": "d3dba763f4782aa7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+6" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e3c43402d3dddb59293126f63bfec1c95bef086c8c314daca063ffb0ee23d0c8" - } - ], - "id": "f1327bb7fe09f951", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+7" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "93c31656ac4f3bde45df13e23a132b2e23d25f9b4f802766a7896d23da9c7a27" - } - ], - "id": "51c10f219a534c83", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+8" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "af1d299cd86be183b33d86100246bc6c65403bbec886a8307826c58252002a60" - } - ], - "id": "934ba74f7c973100", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT+9" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "53df8103d396d50d69196ece245156891e3c299e21340203b36e912a99c500ee" - } - ], - "id": "141d5c24e271bcfe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-1" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1ee42a3c286a92d9374c6f74293b1ea431a14162b4e459926b6706dc3222c469" - } - ], - "id": "25e61d6cd20a046c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-10" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ffd3443d9f3ef009d2d1449aef266e51861bcf26920c8093e38c8989a01665a7" - } - ], - "id": "b3d805982fe89ae9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-11" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8c61e6ce86cba676e0dbee4df49410ff8ff08df394a83ce0bce519552474bc19" - } - ], - "id": "3d8bd3d7ba1423c4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-12" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7d3c9d2c8ac075b2f6e69a2aec60e2036f9f2a292914979ad1c581f5dd83fda2" - } - ], - "id": "c088fdf27d1680fe", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-13" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d80928313e1a5bc3a896e04c0d9542534f36cf54b755560b5ed4e31d3b0f6e71" - } - ], - "id": "9d4d0b03f64e11b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-14" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "29f215ae923cfc85879416875ec9553f0d2367afd25fc332b366c42aef3b187b" - } - ], - "id": "926f8706fd8672d3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-2" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8bccc6f0abf722b65b7ff4920cfd8fac7d956f7823b376f1a078fa9e4e7969ae" - } - ], - "id": "4fcd149acfc7a6a3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-3" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1767240ffd539255310399e143a0f31da9d428e882e006bb873d6baec3ef54a8" - } - ], - "id": "ac56493aa3a014ee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-4" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8d21e2e85216c864d7f6f0e48c87a0ff9220cbad297720143d21f49ed38d5ec1" - } - ], - "id": "6adc45f33d4918d2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-5" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d41a52807f4d908c4367082bea08ced1e026edce057b79c7f789edfefc7ec631" - } - ], - "id": "cc9ab5033880abb5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-6" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a51e249bbcf2b831f80d08d051b9f7e87f0730cfed2a793f6769c1fe2d5c76c8" - } - ], - "id": "901f9a845f805cef", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-7" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "229d432b491b13fac6572303a85ab1d430d3e03d80cb0a1e00fe0b7a167c26a0" - } - ], - "id": "0a3b87bcee9cc67b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-8" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "01fd19d3593d32895162fe47cbe581f1b1bdef27d484ba99488403d774074899" - } - ], - "id": "ee25033c0484337d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/GMT-9" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c8d2a43e0cd8695bda98b5957284bd1c80983836c79994f4ae0ff46281c2f05f" - } - ], - "id": "9dcbe5fa79df13e4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Etc/UTC" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e1be61c41c1aaa2df1ce981d0031f353e7bd0079e49c3ad12d0df74a86306d0a" - } - ], - "id": "deef94aaa73db32a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Amsterdam" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5f9926836ea166bd0a5f8c7e091d54960e5e78e40995651ddd5cc78dfbc5f502" - } - ], - "id": "132c1feb682fb6e5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Andorra" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "df41981b366b7f7df159fb465e8e9c18f0516d972dc4cc7ea1af897cc0dfd3cb" - } - ], - "id": "6f89087280ec92f7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Astrakhan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e55952c91068347568e6ac146f045305a8511e7f5015c1458122b7bf6695bae7" - } - ], - "id": "d8f33cdc542cc61d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Athens" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a0a3a4b34d71a6cbcb1c512c6bfe853ef12a2bdfbb03be71dd7073a322e7f52c" - } - ], - "id": "d149054edaa0dbb0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Belgrade" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c1f9dad9dd22274985c7492e69fd203ae95a031fb5bb7a3622aebe5b7df1bfc7" - } - ], - "id": "b15946c8fcf824ea", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Berlin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9abf64e70928e8a807644663d617290130ee607bb260079a4b5ed2bb574f8220" - } - ], - "id": "b78eca98f453e400", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Brussels" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "22bdab31f9d0653063381d42c24c4cc32cd7027bd925525fe50c1f928b9b0b92" - } - ], - "id": "8d50435218e12a9c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Bucharest" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e27040b3678d922d09c669cc1a8ad46a043a07b53ac2ddac4ae559b91c309ba1" - } - ], - "id": "d12d862214fe2b92", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Budapest" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a065a4bfc68203c5395e80db6ebf141d6e7975ad08cb7d0f4cf934b8d5f01a7d" - } - ], - "id": "166eed7f9cb2f5c1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Chisinau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8742d995e6c2765e68320c511a8daed151c9b68f4400cc9c1f77624cc71355f2" - } - ], - "id": "c0d72f7c332f1871", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Copenhagen" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d9986ed8d835f0b7d1d167177434d593f66615fce400f84ba3d4be07f49e03c5" - } - ], - "id": "77e87b54dc4f1fda", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Dublin" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b3de00ba7f10405128e2f8fca2d618544e429e1e249aa3abc577fff120b6934f" - } - ], - "id": "35b4cd569a011505", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Gibraltar" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e371e1f42f51107dc4bfd27f64865a0c5096e9655ee17753529c9bd855afd0db" - } - ], - "id": "856febab6737d1b7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Guernsey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7ff7186c99a559c372f7fa2713cb50a742fe64cf5dd60c61f263fe76ecca2054" - } - ], - "id": "d4ff4722c83e2618", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Helsinki" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4ccf18d199645d3556b51d4821d9e2074700ca910d98c5b53d4d1b8491d1b2fc" - } - ], - "id": "5d23b7eb3c7e6ede", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Isle_of_Man" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "61afc44b72c34410dc6f6c7dab85242c9adc77667ebddf8e5cbe72abc8955cfd" - } - ], - "id": "4b7d2f39c9c3186e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Istanbul" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "8268b42ad06adb240c3ee97bd00d297ed21d67272245957a729bbac494bf5019" - } - ], - "id": "347c42e66f0c451d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Jersey" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3bdee5f15f428d7a8b3b3ede5ae7e83e5cecce6a6760c8702043de90bf7b48be" - } - ], - "id": "fb60909f82ce6239", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Kaliningrad" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5276e4a0c9e1fc5d80bf6b268c85e29674fb7b6de0338f19669482ca0b209e86" - } - ], - "id": "660962e0dd7bb811", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Kirov" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6f92b082a8f59e819b7c525c67508f4541aca01cbb8d9906632f9aa5bfbfccf2" - } - ], - "id": "53fe9b3458978ff3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Kyiv" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "fa7ed99459b8561dd6d847b792542d0b26f6f544b38addf6de16daee9e17c55f" - } - ], - "id": "11842882221d440f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Lisbon" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "522bb8c9e4d4cb7cf0041076e179b067fba7c7fe6eccdcd263413a769d66ee5d" - } - ], - "id": "4b0c8e60751bbbf7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Ljubljana" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "21377ab0d82528c738408e307acdc70b5be305a50ef72c10927d00b4e60b7f50" - } - ], - "id": "dbc9953bd27721fb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/London" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9d4c5f9791e84580f0a31ba5f29b66cedf9f9f655c11fcf0cd8d11ee7ac6f426" - } - ], - "id": "57e53ddabe3ae6a0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Luxembourg" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3bf30cd26eca3cf19b5df15043cc0c090701b921752d8519ecc64f15f8e91746" - } - ], - "id": "ef42a46cdfa4d92e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Madrid" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c32d047fab6686151252bff2420aadedd198ea9930ffa38f007f499f9e06fc68" - } - ], - "id": "65b341e4fb24d1b8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Malta" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "50eec561d1742d98b4eb0c9efa3b8d9b2eecc66a578cfc37ea18c36fd61a522f" - } - ], - "id": "684a30926d5d43b0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Minsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "51ccc5e3a78dc04e0766b891801b7c46e52466662ee688604672423e19ced671" - } - ], - "id": "37809010f479e79d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Monaco" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9c1cda51f2006c1170ff24b606b6ae203f65ac5b53173bdf8d074624481912b9" - } - ], - "id": "525f583a472d8ee4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Moscow" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6e642c49de953ec569bdf52e9da7e615cf6d7343165bf98199716524a6562816" - } - ], - "id": "9d2226514db83418", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Oslo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bac0f1b88b6b98da8a5b0816c522c992e69e783ae57bd193a8c7d3984a405829" - } - ], - "id": "5e84aa60efe8f5ce", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Paris" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d07b776f45907865444a81ce9a3a5e5ff25eb3c640d16eccff12d45b8c9337eb" - } - ], - "id": "9f877395f9aebfb4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Prague" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "045a0cf661874f30d480872d1a0e5bb98f8af3c30dbe2a5bdd0c3a93e5399571" - } - ], - "id": "e34d69fc8fd64db0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Riga" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d15bf1df9a51662958ce7b715088675597c6d969c616e28eaabdb0a0b09f2440" - } - ], - "id": "28f639e9ca1e1649", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Rome" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6e675ee965c57688f1cbdb1937730c296b10e3ab5f328fc9b04cf0fa573827ca" - } - ], - "id": "b3ff56ddcbfe5b41", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Samara" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "438cc9c651a7805e065b2ea36d33504131061309e140685875708a8b2a00e492" - } - ], - "id": "6c276b00a7e830e2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Sarajevo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c7580110050d8952966be8b92ccd8e4d7c38bedbcf5cb89e6a50b0f8735c446d" - } - ], - "id": "db28d325fdc920f5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Saratov" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6907c68a5223b0ae07a1507e877c421cd98b30413bc8fd6df5c8b59366f6cfb0" - } - ], - "id": "32016bf1328bd9c2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Simferopol" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0137756ab1a0e6f91ca5840643804c998fabefa0af1bcfb503258836d2b68954" - } - ], - "id": "b78f0a71b3a07c80", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Skopje" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b69cf7ffa91f5b284e6d493ef89c802fcb3cf98877642b1360d57f944b119f58" - } - ], - "id": "0c43383ef54d27c8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Sofia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b2ddea0c62cd16d1e0c0aa75ff6dfbeb9182703ef91878752ab9589aa8649e85" - } - ], - "id": "9602ff89a5037658", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Stockholm" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "5165c034bd9d92803c033cfb494f1ccedcf291e85a25e9912aed962dac1b9252" - } - ], - "id": "429eae7d0515b94c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Tallinn" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6401b841ff797f6c72b4e0982d4f2786fd29ddd4eb5c669ecd70ccd30b5f8ffa" - } - ], - "id": "9087d9758cd894de", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Tirane" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "13b8307efd55f60e66ad702df2ba36e75ce4639d4a734d76f578ff650ccd3f44" - } - ], - "id": "59a4c6904f774f25", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Ulyanovsk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ade9b890681b7900d3afda8bb9c1406de9885ea25bee5e5eed8d9461a7647780" - } - ], - "id": "f1590ee036f7ecfb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Vaduz" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9e8c7a558ee78c6775e59febb3b3aab31ea89723fd3135c9873c4325334c40fa" - } - ], - "id": "b53fe4aa5a81ba2a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Vienna" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f3a80e414d782584b9d6934a93b2850c9e4c6c6959c5ff83cfddbef288a22967" - } - ], - "id": "3d4060a8113318f7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Vilnius" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "81012a9528aca869b4472961ed63fe7aca72b8550f72ce5db33150aa0340fda1" - } - ], - "id": "80ad53290dbf098f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Volgograd" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3e03a0c72c87156a6d7e1c26db83dfcd5e0b6e7f8dec51383483987fc5a0bc95" - } - ], - "id": "e562a2fd813adf51", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Warsaw" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3284e8d99459693d44074f9a36e060b42b66f60a5ebbfbe7bd541ab9fbe71c35" - } - ], - "id": "159f03c1dfce51fa", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Zagreb" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "87d1cf6c20f3916df2645c575e2dbdce243f6bad8214571ae19591dc711df3c5" - } - ], - "id": "30fac29e5106e6be", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Europe/Zurich" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f0134bfb78a008cfbcdb6cf2331a03b7c8acc85951dec0c9c5a25cccf8bd178b" - } - ], - "id": "903ffd903a826b5c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Factory" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "47b586a9f92f51bda9754d1c971bc8c92e5723ac81209b1a633d8d942931260b" - } - ], - "id": "0e073333d880e44b", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/HST" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d18b90b86fe5be883976385fd313fc5fd9430649c687b4b78e0bc51b9be8606e" - } - ], - "id": "d93df6b5e2b1b2fc", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Antananarivo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "840013fdf990fdfcb180623571b268e8079be7e55eb9971f5fbd19599416afea" - } - ], - "id": "49fd5f17c9285a49", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Chagos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e52751e5f6e096e6a133ee37865361170013ba6524822246fc72e28f1bdaa080" - } - ], - "id": "a61bc9f4d43eb1a7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Christmas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "206da94c68907b47a709f9ca35d4214f2987a7d0c15d2519b265f726d683bacf" - } - ], - "id": "44f7ffcba05eee8e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Cocos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "400eda832aa35f01625cce9e36e08e840800327b13b70cd1fcd69270b80da4fb" - } - ], - "id": "56feacec206de178", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Comoro" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "aa1c8345a19d4ee5ea7c724d62ea45b2b6c4efc8366c7b97036ea18a31bcc34f" - } - ], - "id": "b44e4333c8d6e2d8", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Kerguelen" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "bfafbb7ea80d1d21d433457739253f9393f21f8c940a3febf786f995e9ab9cc5" - } - ], - "id": "a8e770f3c6f79deb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Mahe" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "be120efd85b65c311106982cc84e56f8d2b21ad838e5c5919d7ff4d3e5771048" - } - ], - "id": "558d3669d6297290", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Maldives" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7bf2b8936668c0fa2fb9995e823e7659c260675baf7d434aa24e1641cc35729f" - } - ], - "id": "e1059d5ffa603007", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Mauritius" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a4d6087eaf1624f79bf6d43ed59e929ed3db4e813535525c2c0b4faad044348a" - } - ], - "id": "240c6ab4771f0d10", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Mayotte" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ce5feb83e00761ff352e936b3a1fd4cb957efad63fc02bfaf76d3daefa57a893" - } - ], - "id": "aec5c6fe55f9c539", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Indian/Reunion" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "7073687270ffd48b523d9ab46692d341910f68596f40c3ed1f2483806bb193a4" - } - ], - "id": "ebbf7e8295fb5e73", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/MET" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "57cb3eae4a7fdb7452a5d9956dbc7cd80526fe5774e8975cfb60d11bf39a81ec" - } - ], - "id": "d43c6ce24005b08d", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/MST" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0eaf93e75f4c3a14aa6c13bc85c84ce54fa8aa9ab3b4a9c31cd2aa781c40d2e9" - } - ], - "id": "70059a65aa42b668", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/MST7MDT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "60386aa5db0477ba24efa57b920400bba0b9949dfcb32db209421d17d439f720" - } - ], - "id": "d9458abcbe504f23", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/PST8PDT" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f3dba7cacba15d95fa41389d9fc433daf2ea5987223ca62fdbe59e643421127f" - } - ], - "id": "d19646ab99926ac2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Apia" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "4a2d8b40c68fe3f83dd9fb2177613df74feaf821b45a9cfd550b1804e5041957" - } - ], - "id": "45d5552ffc96e084", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Auckland" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "81a53c59ab5556d0f24b2fa46fd66f29b3757a314013faab4112dfef6a455ad5" - } - ], - "id": "49885ba23fb7dffb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Bougainville" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b4990e3950934d8d226361d1091e6053097084085610c8e6d8535f935249610c" - } - ], - "id": "9a7461a67e923bb3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Chatham" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "9dee3ec8457fa7c0b16e11787ff8a59f32050255e554e18bc478f44b0c6a33d6" - } - ], - "id": "532ff95400b74e03", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Chuuk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d33edb76164f61982ba2d5da430540ff3143b3f8a2e9784dea8d038ab5079e00" - } - ], - "id": "35eeb3c58663995a", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Easter" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "0aacacbe0afd7b22a3351ae5b2bbd5df2eaa22923043732cfb43c6fd013ac051" - } - ], - "id": "7b9f90a43e5765a7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Efate" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e0228cc1b857e8328bec26a112dd48cc8579495f969793df5ed792b7de6c8799" - } - ], - "id": "752123b859dc32be", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Fakaofo" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "96cb63a5bee7b34bae98134a4648acae1ce9d3f6316405fe35e24d6a0c6ce58a" - } - ], - "id": "689ad1b2e35dd5ee", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Fiji" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "b0095a201f6d0c9d88f9002141a56ea69b81ece33fac500e09390e40657c766f" - } - ], - "id": "6046f5ada9de24e0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Funafuti" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "83e8b529d5fdc66cbae25382a6d0d9c8237d6e62ca923d87f5536b782e4ef497" - } - ], - "id": "e027e11db5614a10", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Galapagos" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "afe10cb9896d412b2c6181b3be6931b3468af64213b505c9a12157112e574573" - } - ], - "id": "5834f883b096c561", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Gambier" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "88d843769b0854f72dbdad47e3551d79b3416334544750e06bee85dee07db0c3" - } - ], - "id": "98217b597961f7ab", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Guadalcanal" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "660e4259a5e3b24ad3f62cce72901748bab4f3f5ea5f72608964f2b8fc76141a" - } - ], - "id": "05098eadd1ee3a29", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Guam" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3a2d915849312efd318382e1f16b4004de6f3e308a407db5f075d254fe20d3fa" - } - ], - "id": "849326d83ea6ce23", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Honolulu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "17ea7751486cb63379f18834c6aa6df66a81f356bfe9a517eb54f9868ffc3fee" - } - ], - "id": "18ed722908a6ee63", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Kanton" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "97ff7f4fddc7ac82cb0f5d2de5eb7de7e4970a708fe27cf58bc3992b38b8143e" - } - ], - "id": "c562d7d14ea9c9cb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Kiritimati" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f89ea3895398e77702b57f8878ea026f6960ee17124aa4ebb649c4eb0b490f28" - } - ], - "id": "d12d3c0ca1553d6f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Kosrae" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6e5640808760a7b0e15932018e983dcc13cf3b1e46d539227ab4667867e9ff37" - } - ], - "id": "9039470b995855b5", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Kwajalein" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "ae1ef7dc7d22d973311051d701d0d5078a5cce45f66844d3278bd04c86c4e91a" - } - ], - "id": "2209be82fe71918e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Majuro" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6e7b868debb7407c3c3e4e9b5b58a469046602b01b37f49af7ea4fc42c4aa384" - } - ], - "id": "492e34e913ebe6a3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Marquesas" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3ceae4a2e71ebbe366cff06dc76b0866fe33e6331b9643e4594f631cd8a21e19" - } - ], - "id": "9824c934d222ea6f", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Midway" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a31d255a820f214d557effef4d61151dd7c81fce858b611e65ffdbfa2074fce0" - } - ], - "id": "da6804271eacfcae", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Nauru" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "daead8618ff695b2d5868fd6015b47938efdcc9a588798a642724734701dfd39" - } - ], - "id": "95533255812feab9", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Niue" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d6b10f28b80b35072a080c6ceeab6dd05643a8c42942e2b628c1b8ed1ef4acb9" - } - ], - "id": "f3bc2559240427ae", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Norfolk" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "f173fcad58e233ebb60e2a02b469a962ac8afc2524e48c7964063817c09eb626" - } - ], - "id": "b05776de67ef4e38", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Noumea" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e869fe61c1b448c5a3e15abb0fe804f156b98dfdcb9734edbda907a532416222" - } - ], - "id": "384256944cd4cbc0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Pago_Pago" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "466690602ae9e1f11cdd5b2bbe0a01f165a0c1121189b6882a5df96829fbe165" - } - ], - "id": "e6301ec54ce9cc97", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Palau" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2b9402ac2c8a72a9e6ed37f5d5d64a657128f71dc9c78aa1223686a93d0359ae" - } - ], - "id": "f63e3664c1547dcb", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Pitcairn" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "256302743b9e1cfd2757a3824441bd9ebe2c61c05a28bc4fca0b8f7f6b69d6af" - } - ], - "id": "f55cd53dc015d2e0", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Pohnpei" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "79ef7ff832bd0ee214f78edfce0fd433ae832832848a78d097afbf83d64f8da9" - } - ], - "id": "2de1d5e7e03a89c2", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Port_Moresby" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "6102fc8f83675e509018ad317675cfb867660d00f28a9e45a8da968583c9df2a" - } - ], - "id": "b97fed59f136d4c7", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Rarotonga" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "e4deb8dddcd5960fb94ddfce4d719323c456ea38d24155c320b45c5713833690" - } - ], - "id": "cda95061fc0b620e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Saipan" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "2fadca09bdd6f9c17ff4fe809281004d55d6a0f1c113867dbf0358c27f81cf0f" - } - ], - "id": "5d3cae7b7df3f78c", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Tahiti" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1c9d154756c08cc05cdda5bad87aab4f0494d01b0624a5854bb6212c53199f95" - } - ], - "id": "7d3f3cf8c215cb59", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Tarawa" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "179ecce42d005f358a34b601a102e90688f5e4ad2aae1bf1570eb491f344fc1a" - } - ], - "id": "ab2dc0d856d04187", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Tongatapu" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "80aa3d07798daf10d64326b2dbdb6df297f2e18770cbaf3aeec8e9a839bd7f9a" - } - ], - "id": "03d98a8d06b553d1", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Wake" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "1018235569ba821a10c0dc063c372d41b6bec6fafa77058d92dbe03d94932af9" - } - ], - "id": "bc164ee96712b04e", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/Pacific/Wallis" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "c83d27b3e275a5cdc3d371d4890d0421900610452aa3e8252735d721620c663a" - } - ], - "id": "5a2fcf4098bef5d3", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/right/WET" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "d5f1f2f57b7f45f6a5edeb61806f84911afd582cac3aa0d7346a0d3c9a4eae78" - } - ], - "id": "d29633b580e3a744", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/tzdata.zi" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "a922df782584dedb020c82106ebef50cc9260945d321412035981f37eeb477e6" - } - ], - "id": "1dc0edfa2b12d8d4", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/zone.tab" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "14912bbcbf70820a0596e3b659c7989fc650fa703d034ef72ee6f5c763f3838d" - } - ], - "id": "1089ec2ce2a75787", - "location": { - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "path": "/usr/share/zoneinfo/zone1970.tab" - } - }, - { - "digests": [ - { - "algorithm": "sha256", - "value": "3f355512e7aadc30bc2aa749d87ea37fbd6867ebbe3426a77d32e553c4cb032f" - } - ], - "id": "dfe480ab6cd3dd89", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/usr/share/zsh/vendor-completions/_curl" - } - }, - { - "id": "4580119f4cc351bd", - "location": { - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "path": "/var/lib/dpkg/status" - } - } - ], - "schema": { - "url": "https://raw.githubusercontent.com/anchore/syft/main/schema/json/schema-16.0.7.json", - "version": "16.0.7" - }, - "source": { - "id": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "metadata": { - "architecture": "amd64", - "config": "eyJhcmNoaXRlY3R1cmUiOiJhbWQ2NCIsImNvbmZpZyI6eyJFeHBvc2VkUG9ydHMiOnsiODAvdGNwIjp7fX0sIkVudiI6WyJQQVRIPS91c3IvbG9jYWwvc2JpbjovdXNyL2xvY2FsL2JpbjovdXNyL3NiaW46L3Vzci9iaW46L3NiaW46L2JpbiIsIk5HSU5YX1ZFUlNJT049MS4yNS41IiwiTkpTX1ZFUlNJT049MC44LjQiLCJOSlNfUkVMRUFTRT0yfmJvb2t3b3JtIiwiUEtHX1JFTEVBU0U9MX5ib29rd29ybSJdLCJFbnRyeXBvaW50IjpbIi9kb2NrZXItZW50cnlwb2ludC5zaCJdLCJDbWQiOlsibmdpbngiLCItZyIsImRhZW1vbiBvZmY7Il0sIkxhYmVscyI6eyJtYWludGFpbmVyIjoiTkdJTlggRG9ja2VyIE1haW50YWluZXJzIFx1MDAzY2RvY2tlci1tYWludEBuZ2lueC5jb21cdTAwM2UifSwiU3RvcFNpZ25hbCI6IlNJR1FVSVQiLCJBcmdzRXNjYXBlZCI6dHJ1ZX0sImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImhpc3RvcnkiOlt7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiIvYmluL3NoIC1jICMobm9wKSBBREQgZmlsZTo0YjFiZTFkZTFhMWU1YWE2MDhjNjg4Y2FkMjgyNDU4NzI2MjA4MTg2NjE4MGQ3MzY4ZmViNzlkMzNjYTA1OTUzIGluIC8gIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiL2Jpbi9zaCAtYyAjKG5vcCkgIENNRCBbXCJiYXNoXCJdIiwiZW1wdHlfbGF5ZXIiOnRydWV9LHsiY3JlYXRlZCI6IjIwMjQtMDQtMjNUMjI6MTU6NDVaIiwiY3JlYXRlZF9ieSI6IkxBQkVMIG1haW50YWluZXI9TkdJTlggRG9ja2VyIE1haW50YWluZXJzIFx1MDAzY2RvY2tlci1tYWludEBuZ2lueC5jb21cdTAwM2UiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJFTlYgTkdJTlhfVkVSU0lPTj0xLjI1LjUiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJFTlYgTkpTX1ZFUlNJT049MC44LjQiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJFTlYgTkpTX1JFTEVBU0U9Mn5ib29rd29ybSIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIiwiZW1wdHlfbGF5ZXIiOnRydWV9LHsiY3JlYXRlZCI6IjIwMjQtMDQtMjNUMjI6MTU6NDVaIiwiY3JlYXRlZF9ieSI6IkVOViBQS0dfUkVMRUFTRT0xfmJvb2t3b3JtIiwiY29tbWVudCI6ImJ1aWxka2l0LmRvY2tlcmZpbGUudjAiLCJlbXB0eV9sYXllciI6dHJ1ZX0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiUlVOIC9iaW4vc2ggLWMgc2V0IC14ICAgICBcdTAwMjZcdTAwMjYgZ3JvdXBhZGQgLS1zeXN0ZW0gLS1naWQgMTAxIG5naW54ICAgICBcdTAwMjZcdTAwMjYgdXNlcmFkZCAtLXN5c3RlbSAtLWdpZCBuZ2lueCAtLW5vLWNyZWF0ZS1ob21lIC0taG9tZSAvbm9uZXhpc3RlbnQgLS1jb21tZW50IFwibmdpbnggdXNlclwiIC0tc2hlbGwgL2Jpbi9mYWxzZSAtLXVpZCAxMDEgbmdpbnggICAgIFx1MDAyNlx1MDAyNiBhcHQtZ2V0IHVwZGF0ZSAgICAgXHUwMDI2XHUwMDI2IGFwdC1nZXQgaW5zdGFsbCAtLW5vLWluc3RhbGwtcmVjb21tZW5kcyAtLW5vLWluc3RhbGwtc3VnZ2VzdHMgLXkgZ251cGcxIGNhLWNlcnRpZmljYXRlcyAgICAgXHUwMDI2XHUwMDI2ICAgICBOR0lOWF9HUEdLRVk9NTczQkZENkIzRDhGQkM2NDEwNzlBNkFCQUJGNUJEODI3QkQ5QkY2MjsgICAgIE5HSU5YX0dQR0tFWV9QQVRIPS9ldGMvYXB0L2tleXJpbmdzL25naW54LWFyY2hpdmUta2V5cmluZy5ncGc7ICAgICBleHBvcnQgR05VUEdIT01FPVwiJChta3RlbXAgLWQpXCI7ICAgICBmb3VuZD0nJzsgICAgIGZvciBzZXJ2ZXIgaW4gICAgICAgICBoa3A6Ly9rZXlzZXJ2ZXIudWJ1bnR1LmNvbTo4MCAgICAgICAgIHBncC5taXQuZWR1ICAgICA7IGRvICAgICAgICAgZWNobyBcIkZldGNoaW5nIEdQRyBrZXkgJE5HSU5YX0dQR0tFWSBmcm9tICRzZXJ2ZXJcIjsgICAgICAgICBncGcxIC0ta2V5c2VydmVyIFwiJHNlcnZlclwiIC0ta2V5c2VydmVyLW9wdGlvbnMgdGltZW91dD0xMCAtLXJlY3Yta2V5cyBcIiROR0lOWF9HUEdLRVlcIiBcdTAwMjZcdTAwMjYgZm91bmQ9eWVzIFx1MDAyNlx1MDAyNiBicmVhazsgICAgIGRvbmU7ICAgICB0ZXN0IC16IFwiJGZvdW5kXCIgXHUwMDI2XHUwMDI2IGVjaG8gXHUwMDNlXHUwMDI2MiBcImVycm9yOiBmYWlsZWQgdG8gZmV0Y2ggR1BHIGtleSAkTkdJTlhfR1BHS0VZXCIgXHUwMDI2XHUwMDI2IGV4aXQgMTsgICAgIGdwZzEgLS1leHBvcnQgXCIkTkdJTlhfR1BHS0VZXCIgXHUwMDNlIFwiJE5HSU5YX0dQR0tFWV9QQVRIXCIgOyAgICAgcm0gLXJmIFwiJEdOVVBHSE9NRVwiOyAgICAgYXB0LWdldCByZW1vdmUgLS1wdXJnZSAtLWF1dG8tcmVtb3ZlIC15IGdudXBnMSBcdTAwMjZcdTAwMjYgcm0gLXJmIC92YXIvbGliL2FwdC9saXN0cy8qICAgICBcdTAwMjZcdTAwMjYgZHBrZ0FyY2g9XCIkKGRwa2cgLS1wcmludC1hcmNoaXRlY3R1cmUpXCIgICAgIFx1MDAyNlx1MDAyNiBuZ2lueFBhY2thZ2VzPVwiICAgICAgICAgbmdpbng9JHtOR0lOWF9WRVJTSU9OfS0ke1BLR19SRUxFQVNFfSAgICAgICAgIG5naW54LW1vZHVsZS14c2x0PSR7TkdJTlhfVkVSU0lPTn0tJHtQS0dfUkVMRUFTRX0gICAgICAgICBuZ2lueC1tb2R1bGUtZ2VvaXA9JHtOR0lOWF9WRVJTSU9OfS0ke1BLR19SRUxFQVNFfSAgICAgICAgIG5naW54LW1vZHVsZS1pbWFnZS1maWx0ZXI9JHtOR0lOWF9WRVJTSU9OfS0ke1BLR19SRUxFQVNFfSAgICAgICAgIG5naW54LW1vZHVsZS1uanM9JHtOR0lOWF9WRVJTSU9OfSske05KU19WRVJTSU9OfS0ke05KU19SRUxFQVNFfSAgICAgXCIgICAgIFx1MDAyNlx1MDAyNiBjYXNlIFwiJGRwa2dBcmNoXCIgaW4gICAgICAgICBhbWQ2NHxhcm02NCkgICAgICAgICAgICAgZWNobyBcImRlYiBbc2lnbmVkLWJ5PSROR0lOWF9HUEdLRVlfUEFUSF0gaHR0cHM6Ly9uZ2lueC5vcmcvcGFja2FnZXMvbWFpbmxpbmUvZGViaWFuLyBib29rd29ybSBuZ2lueFwiIFx1MDAzZVx1MDAzZSAvZXRjL2FwdC9zb3VyY2VzLmxpc3QuZC9uZ2lueC5saXN0ICAgICAgICAgICAgIFx1MDAyNlx1MDAyNiBhcHQtZ2V0IHVwZGF0ZSAgICAgICAgICAgICA7OyAgICAgICAgICopICAgICAgICAgICAgIGVjaG8gXCJkZWItc3JjIFtzaWduZWQtYnk9JE5HSU5YX0dQR0tFWV9QQVRIXSBodHRwczovL25naW54Lm9yZy9wYWNrYWdlcy9tYWlubGluZS9kZWJpYW4vIGJvb2t3b3JtIG5naW54XCIgXHUwMDNlXHUwMDNlIC9ldGMvYXB0L3NvdXJjZXMubGlzdC5kL25naW54Lmxpc3QgICAgICAgICAgICAgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IHRlbXBEaXI9XCIkKG1rdGVtcCAtZClcIiAgICAgICAgICAgICBcdTAwMjZcdTAwMjYgY2htb2QgNzc3IFwiJHRlbXBEaXJcIiAgICAgICAgICAgICAgICAgICAgICAgICBcdTAwMjZcdTAwMjYgc2F2ZWRBcHRNYXJrPVwiJChhcHQtbWFyayBzaG93bWFudWFsKVwiICAgICAgICAgICAgICAgICAgICAgICAgIFx1MDAyNlx1MDAyNiBhcHQtZ2V0IHVwZGF0ZSAgICAgICAgICAgICBcdTAwMjZcdTAwMjYgYXB0LWdldCBidWlsZC1kZXAgLXkgJG5naW54UGFja2FnZXMgICAgICAgICAgICAgXHUwMDI2XHUwMDI2ICggICAgICAgICAgICAgICAgIGNkIFwiJHRlbXBEaXJcIiAgICAgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IERFQl9CVUlMRF9PUFRJT05TPVwibm9jaGVjayBwYXJhbGxlbD0kKG5wcm9jKVwiICAgICAgICAgICAgICAgICAgICAgYXB0LWdldCBzb3VyY2UgLS1jb21waWxlICRuZ2lueFBhY2thZ2VzICAgICAgICAgICAgICkgICAgICAgICAgICAgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IGFwdC1tYXJrIHNob3dtYW51YWwgfCB4YXJncyBhcHQtbWFyayBhdXRvIFx1MDAzZSAvZGV2L251bGwgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IHsgWyAteiBcIiRzYXZlZEFwdE1hcmtcIiBdIHx8IGFwdC1tYXJrIG1hbnVhbCAkc2F2ZWRBcHRNYXJrOyB9ICAgICAgICAgICAgICAgICAgICAgICAgIFx1MDAyNlx1MDAyNiBscyAtbEFGaCBcIiR0ZW1wRGlyXCIgICAgICAgICAgICAgXHUwMDI2XHUwMDI2ICggY2QgXCIkdGVtcERpclwiIFx1MDAyNlx1MDAyNiBkcGtnLXNjYW5wYWNrYWdlcyAuIFx1MDAzZSBQYWNrYWdlcyApICAgICAgICAgICAgIFx1MDAyNlx1MDAyNiBncmVwICdeUGFja2FnZTogJyBcIiR0ZW1wRGlyL1BhY2thZ2VzXCIgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IGVjaG8gXCJkZWIgWyB0cnVzdGVkPXllcyBdIGZpbGU6Ly8kdGVtcERpciAuL1wiIFx1MDAzZSAvZXRjL2FwdC9zb3VyY2VzLmxpc3QuZC90ZW1wLmxpc3QgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IGFwdC1nZXQgLW8gQWNxdWlyZTo6R3ppcEluZGV4ZXM9ZmFsc2UgdXBkYXRlICAgICAgICAgICAgIDs7ICAgICBlc2FjICAgICAgICAgXHUwMDI2XHUwMDI2IGFwdC1nZXQgaW5zdGFsbCAtLW5vLWluc3RhbGwtcmVjb21tZW5kcyAtLW5vLWluc3RhbGwtc3VnZ2VzdHMgLXkgICAgICAgICAgICAgICAgICAgICAgICAgJG5naW54UGFja2FnZXMgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0dGV4dC1iYXNlICAgICAgICAgICAgICAgICAgICAgICAgIGN1cmwgICAgIFx1MDAyNlx1MDAyNiBhcHQtZ2V0IHJlbW92ZSAtLXB1cmdlIC0tYXV0by1yZW1vdmUgLXkgXHUwMDI2XHUwMDI2IHJtIC1yZiAvdmFyL2xpYi9hcHQvbGlzdHMvKiAvZXRjL2FwdC9zb3VyY2VzLmxpc3QuZC9uZ2lueC5saXN0ICAgICAgICAgXHUwMDI2XHUwMDI2IGlmIFsgLW4gXCIkdGVtcERpclwiIF07IHRoZW4gICAgICAgICBhcHQtZ2V0IHB1cmdlIC15IC0tYXV0by1yZW1vdmUgICAgICAgICBcdTAwMjZcdTAwMjYgcm0gLXJmIFwiJHRlbXBEaXJcIiAvZXRjL2FwdC9zb3VyY2VzLmxpc3QuZC90ZW1wLmxpc3Q7ICAgICBmaSAgICAgXHUwMDI2XHUwMDI2IGxuIC1zZiAvZGV2L3N0ZG91dCAvdmFyL2xvZy9uZ2lueC9hY2Nlc3MubG9nICAgICBcdTAwMjZcdTAwMjYgbG4gLXNmIC9kZXYvc3RkZXJyIC92YXIvbG9nL25naW54L2Vycm9yLmxvZyAgICAgXHUwMDI2XHUwMDI2IG1rZGlyIC9kb2NrZXItZW50cnlwb2ludC5kICMgYnVpbGRraXQiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCJ9LHsiY3JlYXRlZCI6IjIwMjQtMDQtMjNUMjI6MTU6NDVaIiwiY3JlYXRlZF9ieSI6IkNPUFkgZG9ja2VyLWVudHJ5cG9pbnQuc2ggLyAjIGJ1aWxka2l0IiwiY29tbWVudCI6ImJ1aWxka2l0LmRvY2tlcmZpbGUudjAifSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJDT1BZIDEwLWxpc3Rlbi1vbi1pcHY2LWJ5LWRlZmF1bHQuc2ggL2RvY2tlci1lbnRyeXBvaW50LmQgIyBidWlsZGtpdCIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiQ09QWSAxNS1sb2NhbC1yZXNvbHZlcnMuZW52c2ggL2RvY2tlci1lbnRyeXBvaW50LmQgIyBidWlsZGtpdCIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiQ09QWSAyMC1lbnZzdWJzdC1vbi10ZW1wbGF0ZXMuc2ggL2RvY2tlci1lbnRyeXBvaW50LmQgIyBidWlsZGtpdCIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiQ09QWSAzMC10dW5lLXdvcmtlci1wcm9jZXNzZXMuc2ggL2RvY2tlci1lbnRyeXBvaW50LmQgIyBidWlsZGtpdCIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiRU5UUllQT0lOVCBbXCIvZG9ja2VyLWVudHJ5cG9pbnQuc2hcIl0iLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJFWFBPU0UgbWFwWzgwL3RjcDp7fV0iLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJTVE9QU0lHTkFMIFNJR1FVSVQiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJDTUQgW1wibmdpbnhcIiBcIi1nXCIgXCJkYWVtb24gb2ZmO1wiXSIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIiwiZW1wdHlfbGF5ZXIiOnRydWV9XSwib3MiOiJsaW51eCIsInJvb3RmcyI6eyJ0eXBlIjoibGF5ZXJzIiwiZGlmZl9pZHMiOlsic2hhMjU2OjUyZWM1YTQzMTZmYWRjMDlhNGE1MWY4MmI4ZDdiNjZlYWQwZDcxYmVhNGY3NWU4MWUyNWI0MDk0YzQyMTkwNjEiLCJzaGEyNTY6YmJkZTc0MWUxMDhiODM0ZWI0Y2FmNGYwZTUwYjk4MWYxZDU4ZjhjZDVhNjc0NWU1ODg4M2NhZjYyMDc2MGQ0MiIsInNoYTI1NjpiMDkzNDdhMWFlYzY0MDc5MTU5MGEzYTE1ZTZmMTIxYjQ3NTQwYThjODcyNTQ0N2Y0NTQ2YTI1Mjc3NThkOTcwIiwic2hhMjU2OjFkYjIyNDJmYzFmYTFhYWMxNjVhNGVlYjFkMTFiODRmYmM2NjczOTY5YzVkODIxZDE4N2RkM2U3ZTUyMmMxMzAiLCJzaGEyNTY6ZTYzODBhNzA1N2E1MDA1OTAwYzVjOGEyMzNlMzZhYjY5ZGQ5Zjk1NjA0NWNhOGFmMTk1MTdmZWU1OWNlMTE5ZiIsInNoYTI1NjoxNzVhYTY2ZGI0Y2M4YzcwYThjYWEzMzhhNjM0ZWVlM2Q0ZmQ5NGU2NzU2NmMyYzQ2YWVlMDI2MjEwNDEwNDFhIiwic2hhMjU2OjlmZDU0OTI2YmNhZWQzMTUwYzZmYjAxZjhkNDdkZmUyOGExMDkzYzI1OWY0MTYyNjg1MmMyN2QzNjAxZmVjMjEiXX19", - "imageID": "sha256:7383c266ef252ad70806f3072ee8e63d2a16d1e6bafa6146a2da867fc7c41759", - "imageSize": 187589394, - "labels": { - "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e" - }, - "layers": [ - { - "digest": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 74820989 - }, - { - "digest": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 112756687 - }, - { - "digest": "sha256:b09347a1aec640791590a3a15e6f121b47540a8c8725447f4546a2527758d970", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 1620 - }, - { - "digest": "sha256:1db2242fc1fa1aac165a4eeb1d11b84fbc6673969c5d821d187dd3e7e522c130", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 2125 - }, - { - "digest": "sha256:e6380a7057a5005900c5c8a233e36ab69dd9f956045ca8af19517fee59ce119f", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 336 - }, - { - "digest": "sha256:175aa66db4cc8c70a8caa338a634eee3d4fd94e67566c2c46aee02621041041a", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 3018 - }, - { - "digest": "sha256:9fd54926bcaed3150c6fb01f8d47dfe28a1093c259f41626852c27d3601fec21", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 4619 - } - ], - "manifest": "ewogICJzY2hlbWFWZXJzaW9uIjogMiwKICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubWFuaWZlc3QudjEranNvbiIsCiAgImNvbmZpZyI6IHsKICAgICJtZWRpYVR5cGUiOiAiYXBwbGljYXRpb24vdm5kLm9jaS5pbWFnZS5jb25maWcudjEranNvbiIsCiAgICAiZGlnZXN0IjogInNoYTI1Njo3MzgzYzI2NmVmMjUyYWQ3MDgwNmYzMDcyZWU4ZTYzZDJhMTZkMWU2YmFmYTYxNDZhMmRhODY3ZmM3YzQxNzU5IiwKICAgICJzaXplIjogNzE1NQogIH0sCiAgImxheWVycyI6IFsKICAgIHsKICAgICAgIm1lZGlhVHlwZSI6ICJhcHBsaWNhdGlvbi92bmQub2NpLmltYWdlLmxheWVyLnYxLnRhcitnemlwIiwKICAgICAgImRpZ2VzdCI6ICJzaGEyNTY6YjBhMGNmODMwYjEyNDUzYjdlMTUzNTlhODA0MjE1YTdiY2NjZDM3ODhlMmJjZWNmZjJhMDNhZjY0YmJkNGRmNyIsCiAgICAgICJzaXplIjogMjkxNTA0NzkKICAgIH0sCiAgICB7CiAgICAgICJtZWRpYVR5cGUiOiAiYXBwbGljYXRpb24vdm5kLm9jaS5pbWFnZS5sYXllci52MS50YXIrZ3ppcCIsCiAgICAgICJkaWdlc3QiOiAic2hhMjU2OjhkZGIxZTZjZGYzNDFhY2EwMjhmYjZmYzRjYmQ5YzJiYTllOWExY2FlMWIxODZhNTg3ZjJkZmZlMzNjMGQ1ODciLAogICAgICAic2l6ZSI6IDQxODE3MDc2CiAgICB9LAogICAgewogICAgICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubGF5ZXIudjEudGFyK2d6aXAiLAogICAgICAiZGlnZXN0IjogInNoYTI1Njo1MjUyYjIwNmFhYzI5OGZiMDA0ZGJlNjIyMTBkMTI3NTMzZjhhZWI2YTVlYjBiOGY3OWUyOGRkYzAxYmQyNDE5IiwKICAgICAgInNpemUiOiA2MjkKICAgIH0sCiAgICB7CiAgICAgICJtZWRpYVR5cGUiOiAiYXBwbGljYXRpb24vdm5kLm9jaS5pbWFnZS5sYXllci52MS50YXIrZ3ppcCIsCiAgICAgICJkaWdlc3QiOiAic2hhMjU2Ojk4OGI5MmQ5Njk3MDQ2NGFiOTQzNWFhNmFmMzA3N2UyODNjMWM4ZWFjYWVlMjAwZjhjMTIzMzE1NDg2MDY2ZWMiLAogICAgICAic2l6ZSI6IDk1NAogICAgfSwKICAgIHsKICAgICAgIm1lZGlhVHlwZSI6ICJhcHBsaWNhdGlvbi92bmQub2NpLmltYWdlLmxheWVyLnYxLnRhcitnemlwIiwKICAgICAgImRpZ2VzdCI6ICJzaGEyNTY6NzEwMjYyN2E3YTZlNGRhM2I4MGUxOTJiNjg2ZDU3MTM5YjhjNmQ0ZmY0MDU5MThkZDUwOGU3ODRhNGFiYzYzOSIsCiAgICAgICJzaXplIjogMzkzCiAgICB9LAogICAgewogICAgICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubGF5ZXIudjEudGFyK2d6aXAiLAogICAgICAiZGlnZXN0IjogInNoYTI1Njo5MzI5NWFkZDk4NGRiZDExNGE2ZjQzNDAxZjA4ZTZmYWY0NTEwODA5ZTMzZThmOGEyZTY0ODUzOTlmYTBlMDNjIiwKICAgICAgInNpemUiOiAxMjEwCiAgICB9LAogICAgewogICAgICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubGF5ZXIudjEudGFyK2d6aXAiLAogICAgICAiZGlnZXN0IjogInNoYTI1NjplYmRlMGFhMWQxYWFhZDlkNDNkYTk2YjdmMGU0YTRlYmNjZGUxNmNjNGQ3ODU5NDQ2MjlmMDI0MDZjZDU0YjQ0IiwKICAgICAgInNpemUiOiAxMzk3CiAgICB9CiAgXSwKICAiYW5ub3RhdGlvbnMiOiB7CiAgICAiY29tLmRvY2tlci5vZmZpY2lhbC1pbWFnZXMuYmFzaGJyZXcuYXJjaCI6ICJhbWQ2NCIsCiAgICAib3JnLm9wZW5jb250YWluZXJzLmltYWdlLmJhc2UuZGlnZXN0IjogInNoYTI1NjoxODgzOGQ3YjYwNzIzZWMxNTQ4YTg1YWU1NzE5NWJkODRhODg3YjY1ZDI0OWY0YTc0Njk4ZjFhYjdjYWU0Y2EzIiwKICAgICJvcmcub3BlbmNvbnRhaW5lcnMuaW1hZ2UuYmFzZS5uYW1lIjogImRlYmlhbjpib29rd29ybS1zbGltIiwKICAgICJvcmcub3BlbmNvbnRhaW5lcnMuaW1hZ2UuY3JlYXRlZCI6ICIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsCiAgICAib3JnLm9wZW5jb250YWluZXJzLmltYWdlLnJldmlzaW9uIjogIjY2YzBmOTRiNGM3NjRiMWE1MzE1MjhlOGMyNDJhZDk0NDk3MDExZjYiLAogICAgIm9yZy5vcGVuY29udGFpbmVycy5pbWFnZS5zb3VyY2UiOiAiaHR0cHM6Ly9naXRodWIuY29tL25naW54aW5jL2RvY2tlci1uZ2lueC5naXQjNjZjMGY5NGI0Yzc2NGIxYTUzMTUyOGU4YzI0MmFkOTQ0OTcwMTFmNjptYWlubGluZS9kZWJpYW4iLAogICAgIm9yZy5vcGVuY29udGFpbmVycy5pbWFnZS51cmwiOiAiaHR0cHM6Ly9odWIuZG9ja2VyLmNvbS9fL25naW54IiwKICAgICJvcmcub3BlbmNvbnRhaW5lcnMuaW1hZ2UudmVyc2lvbiI6ICIxLjI1LjUiCiAgfQp9", - "manifestDigest": "sha256:4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "mediaType": "application/vnd.oci.image.manifest.v1+json", - "os": "linux", - "repoDigests": [ - "index.docker.io/library/nginx@sha256:ed6d2c43c8fbcd3eaa44c9dab6d94cb346234476230dc1681227aa72d07181ee" - ], - "tags": [], - "userInput": "docker.io/library/nginx@sha256:ed6d2c43c8fbcd3eaa44c9dab6d94cb346234476230dc1681227aa72d07181ee" - }, - "name": "docker.io/library/nginx", - "type": "image", - "version": "sha256:ed6d2c43c8fbcd3eaa44c9dab6d94cb346234476230dc1681227aa72d07181ee" - } - } - }, - "status": {} -} diff --git a/pkg/relevancymanager/v1/testdata/nginx-syft-filtered.json b/pkg/relevancymanager/v1/testdata/nginx-syft-filtered.json deleted file mode 100644 index 9cfe3622..00000000 --- a/pkg/relevancymanager/v1/testdata/nginx-syft-filtered.json +++ /dev/null @@ -1,8053 +0,0 @@ -{ - "metadata": { - "name": "pod-pod-cont-cb3a-a929", - "creationTimestamp": null, - "labels": { - "kubescape.io/workload-api-version": "v1", - "kubescape.io/workload-container-name": "cont", - "kubescape.io/workload-kind": "Pod", - "kubescape.io/workload-name": "Pod", - "kubescape.io/workload-namespace": "ns" - }, - "annotations": { - "kubescape.io/image-id": "nginx@sha256:6a59f1cbb8d28ac484176d52c473494859a512ddba3ea62a547258cf16c9b3ae", - "kubescape.io/image-tag": "nginx", - "kubescape.io/instance-id": "apiVersion-v1/namespace-ns/kind-Pod/name-pod/containerName-cont", - "kubescape.io/status": "ready", - "kubescape.io/wlid": "wlid://cluster-cluster/namespace-ns/pod-pod", - "kubescape.io/workload-container-name": "cont" - } - }, - "spec": { - "metadata": { - "tool": { - "name": "syft", - "version": "v1.2.0-hotfix" - }, - "report": { - "createdAt": "2024-04-29T06:47:04Z" - } - }, - "syft": { - "artifacts": [ - { - "id": "8a49897e59f569c2", - "name": "adduser", - "version": "3.134", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/adduser/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/adduser/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/adduser.conffiles", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/adduser.conffiles", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/adduser.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/adduser.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [ - { - "value": "GPL-2", - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/adduser/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/adduser/copyright" - } - ] - }, - { - "value": "GPL-2+", - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/adduser/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/adduser/copyright" - } - ] - } - ], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:adduser:adduser:3.134:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/adduser@3.134?arch=all\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "adduser", - "source": "", - "version": "3.134", - "sourceVersion": "", - "architecture": "all", - "maintainer": "Debian Adduser Developers \u003cadduser@packages.debian.org\u003e", - "installedSize": 686, - "depends": [ - "passwd" - ], - "files": [ - { - "path": "/etc/adduser.conf", - "digest": { - "algorithm": "md5", - "value": "cc3493ecd2d09837ffdcc3e25fdfff18" - }, - "isConfigFile": true - }, - { - "path": "/etc/deluser.conf", - "digest": { - "algorithm": "md5", - "value": "11a06baf8245fd8d690b99024d228c1f" - }, - "isConfigFile": true - }, - { - "path": "/usr/sbin/adduser", - "digest": { - "algorithm": "md5", - "value": "2ba08fece3b3434a669f3c529bbea383" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/deluser", - "digest": { - "algorithm": "md5", - "value": "808647b72aa26222070ae241158f22bf" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/NEWS.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "0091c90861f50e7be138d37764779d22" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/README.gz", - "digest": { - "algorithm": "md5", - "value": "30b17d2e2e9c784208f01d130f196864" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/TODO", - "digest": { - "algorithm": "md5", - "value": "a4537699e4951748913a3d3e212be34e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/changelog.gz", - "digest": { - "algorithm": "md5", - "value": "30bb154dfdc69a2c0ff31ec465681b39" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/copyright", - "digest": { - "algorithm": "md5", - "value": "ad1acbe264ddc19bf4f50095c1ca50e5" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/INSTALL", - "digest": { - "algorithm": "md5", - "value": "55f158219a06612fcb6d35952d1b95f2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/README", - "digest": { - "algorithm": "md5", - "value": "ff484e503a7f8b0d6f62e8bfda86c0a2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/adduser.conf", - "digest": { - "algorithm": "md5", - "value": "cc3493ecd2d09837ffdcc3e25fdfff18" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/adduser.local", - "digest": { - "algorithm": "md5", - "value": "04bf7a834a790dbcf91d9126ec2a93bf" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/adduser.local.conf", - "digest": { - "algorithm": "md5", - "value": "51367088cb922ab47b652cad2fdf1ed1" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/bash.bashrc", - "digest": { - "algorithm": "md5", - "value": "7a0388cf3e93997d82f705c29c90892a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/profile", - "digest": { - "algorithm": "md5", - "value": "c4869bc559365ab84733b15280332ae9" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel.other/index.html", - "digest": { - "algorithm": "md5", - "value": "82589559808bbaade90a966287e51627" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bash_logout", - "digest": { - "algorithm": "md5", - "value": "95c9c80ac808659d74ec72d7bd86a118" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bash_profile", - "digest": { - "algorithm": "md5", - "value": "7e25a53e7588cdb05870608583b05b19" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bashrc", - "digest": { - "algorithm": "md5", - "value": "6f2fe654cd11a739ba9fb6a9f13881fe" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/adduser/examples/deluser.conf", - "digest": { - "algorithm": "md5", - "value": "11a06baf8245fd8d690b99024d228c1f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/ca/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "b702b3ed20154b001d1b2375ec7e488f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/cs/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "0ca2951f2ef978d48c1f7f1ce153f5e8" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/da/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "961b561f85178991cc846cd50571799b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/de/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "1c47fa9200cb5cce8b9d8c1ed2345ed8" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/es/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "3b3cba03fcb342b5abfa8bca5afec4df" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/eu/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "2d4b6195cf6ba1d3a33c5bf55b6ecf3c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/fr/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "6c4ab5ed96290a2477b457889d68b081" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/gl/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "6d7d3d40c026e6389aeb5c2f7e2ad043" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/hu/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "50b5a14c95b5a85b8ef249146556dcbb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/it/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "74d23efa1335e149d0b07ad464765afd" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/ja/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "16eae53fcaa3879d6c2cb1b23e392cea" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/ko/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "3e064773563de4e35534e73bc92ebf68" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/nb/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "d88de4925b4da406cd560f57ba4b1ce2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/nl/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "fdaa7ffe6cadbc41f6a6e7138bd3af5d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/pl/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "c8295a7067aa3fda053d3f57d4a4ade2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/pt/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "e1c98d35dac5ca0e73b3a7e225bc7920" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/pt_BR/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "f1642f13df692ea16e96f6f61f86443d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/ru/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "f16bf5c78b024661e685304cc84eb322" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/sk/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "0b4f60e88db1d73b2f4bc3e3fcd71c4d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/sv/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "6069303f3206caed75ef429164a5c29a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/uk/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "b13acd3c3039b256184446a35075679a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/vi/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "a99328519237e94580cbfd2a18d0834c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/locale/zh_CN/LC_MESSAGES/adduser.mo", - "digest": { - "algorithm": "md5", - "value": "b62097a2043612a43b7de5bd2ef6ce78" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man5/adduser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "279bc4b2fcee033a51226d002a619bbd" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man5/deluser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "4be1449aa85465c1d1e1c230bcb65dd0" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/adduser.8.gz", - "digest": { - "algorithm": "md5", - "value": "1f6de0932af4b53ad2e2b3dbc67eda78" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/deluser.8.gz", - "digest": { - "algorithm": "md5", - "value": "0c139260599a1fbe30dda5bf13735765" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man5/adduser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "f9f06923354ca40ac5a4153133400df3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man5/deluser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "3f0b00c3117649f32d4ae2fd4b8f2635" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/adduser.8.gz", - "digest": { - "algorithm": "md5", - "value": "44703ebd828a02000329a9fb78336eb3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/deluser.8.gz", - "digest": { - "algorithm": "md5", - "value": "8c743ace7c9fec6fd736f340285187fe" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man5/adduser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "72d8a98aca954db1e307f0af4d0e0741" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man5/deluser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "d77325d2847f9445a98505ed6258cfbc" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/adduser.8.gz", - "digest": { - "algorithm": "md5", - "value": "ca2b03a3887d2ef87cdaf01d5e249ba1" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/adduser.local.8.gz", - "digest": { - "algorithm": "md5", - "value": "205bd0d71b8575d75e1169b4d21a4b38" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/deluser.8.gz", - "digest": { - "algorithm": "md5", - "value": "bd68f00caa2c02cdb17cbefca0983a1f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/nl/man5/adduser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "298d0b083299fd5aac8d8e823aeef531" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/nl/man5/deluser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "573812c7b0bdb53be8810adf5a8bca04" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/nl/man8/adduser.8.gz", - "digest": { - "algorithm": "md5", - "value": "d66066537e31f55b9f68b5ceabc2bb5c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/nl/man8/deluser.8.gz", - "digest": { - "algorithm": "md5", - "value": "86c181cd2cd77fe92165ce54088b1fcd" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt/man5/adduser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "f12ac762e03c1ce1f858e141142424a2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt/man5/deluser.conf.5.gz", - "digest": { - "algorithm": "md5", - "value": "bcb31d0138c1d3feed06cf9153a9302a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt/man8/adduser.8.gz", - "digest": { - "algorithm": "md5", - "value": "21910b8714511335642c53ec92a3e2e0" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt/man8/deluser.8.gz", - "digest": { - "algorithm": "md5", - "value": "dfee1fa5f7449c26b3cf7289321309f5" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debian/AdduserCommon.pm", - "digest": { - "algorithm": "md5", - "value": "840faf09c56199b8c10c4ef15e376224" - }, - "isConfigFile": false - } - ] - } - }, - { - "id": "cd568950fffd83d7", - "name": "debconf", - "version": "1.5.82", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/debconf/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/debconf/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/debconf.conffiles", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/debconf.conffiles", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/debconf.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/debconf.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [ - { - "value": "BSD-2-clause", - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/debconf/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/debconf/copyright" - } - ] - } - ], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:debconf:debconf:1.5.82:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/debconf@1.5.82?arch=all\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "debconf", - "source": "", - "version": "1.5.82", - "sourceVersion": "", - "architecture": "all", - "maintainer": "Debconf Developers \u003cdebconf-devel@lists.alioth.debian.org\u003e", - "installedSize": 491, - "provides": [ - "debconf-2.0" - ], - "files": [ - { - "path": "/etc/apt/apt.conf.d/70debconf", - "digest": { - "algorithm": "md5", - "value": "7e9d09d5801a42b4926b736b8eeabb73" - }, - "isConfigFile": true - }, - { - "path": "/etc/debconf.conf", - "digest": { - "algorithm": "md5", - "value": "8c0619be413824f1fc7698cee0f23811" - }, - "isConfigFile": true - }, - { - "path": "/usr/bin/debconf", - "digest": { - "algorithm": "md5", - "value": "52fc9c61a0d4d0146e6a946c3e14f323" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/debconf-apt-progress", - "digest": { - "algorithm": "md5", - "value": "19c67e6eb300e9c61f80aa6b76719bdd" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/debconf-communicate", - "digest": { - "algorithm": "md5", - "value": "9667b0261cac6f775e0bce8d5b390cf6" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/debconf-copydb", - "digest": { - "algorithm": "md5", - "value": "02b774c3cf0ea04dc88b078fad41681c" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/debconf-escape", - "digest": { - "algorithm": "md5", - "value": "3b8e7ec5583b033efd3d6eb0085fbce0" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/debconf-set-selections", - "digest": { - "algorithm": "md5", - "value": "36fca810603f8a0654a9b4bef2178640" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/debconf-show", - "digest": { - "algorithm": "md5", - "value": "e2193426e7bf0d0d6c30f632aad55fff" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/dpkg-preconfigure", - "digest": { - "algorithm": "md5", - "value": "41cd32217ba8e7813b76a5014b6801b8" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/dpkg-reconfigure", - "digest": { - "algorithm": "md5", - "value": "4e9cb8e2a222592f2940fd81ef71e1b2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/bash-completion/completions/debconf", - "digest": { - "algorithm": "md5", - "value": "f3566bee9dc1c5e9d7261089cf173b33" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/debconf/confmodule", - "digest": { - "algorithm": "md5", - "value": "686b6704d2bb458a89826cda5b4546e5" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/debconf/confmodule.sh", - "digest": { - "algorithm": "md5", - "value": "039097b6c3340a7386e841c4935eda12" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/debconf/debconf.conf", - "digest": { - "algorithm": "md5", - "value": "b5ce961d3b91bfaa5ec56d99f7dc4b8d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/debconf/fix_db.pl", - "digest": { - "algorithm": "md5", - "value": "1f5d1c3f1b66ce17569091e9435c1019" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/debconf/frontend", - "digest": { - "algorithm": "md5", - "value": "d3391027c494f54494ba4f089015ebdc" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/debconf/NEWS.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "74516646512de2dd1c55df3f61c8bd62" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/debconf/README.Debian", - "digest": { - "algorithm": "md5", - "value": "20c51c96dc14801a095b3994715731f5" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/debconf/changelog.gz", - "digest": { - "algorithm": "md5", - "value": "9e01af813228cc4977867d6012351f76" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/debconf/copyright", - "digest": { - "algorithm": "md5", - "value": "a44f8297ec915c6ebe33f1f33b8c6007" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/lintian/overrides/debconf", - "digest": { - "algorithm": "md5", - "value": "ce8cbe0dfeddc4bbb314754838c98db4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/debconf-apt-progress.1.gz", - "digest": { - "algorithm": "md5", - "value": "934f8ef6a27b3fcf08235a1b5f85442d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/debconf-communicate.1.gz", - "digest": { - "algorithm": "md5", - "value": "52ecbbaba9f260f6cae65a57b967136e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/debconf-copydb.1.gz", - "digest": { - "algorithm": "md5", - "value": "93f81606a8eb7dfdcadb56462bb3518b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/debconf-escape.1.gz", - "digest": { - "algorithm": "md5", - "value": "892606924f993907fb2acef4376c96aa" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/debconf-set-selections.1.gz", - "digest": { - "algorithm": "md5", - "value": "e82f30b6cdfd38460eb6e947c55107c5" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/debconf-show.1.gz", - "digest": { - "algorithm": "md5", - "value": "0e9645689d66bea6ade7813fe27bb7ad" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/debconf.1.gz", - "digest": { - "algorithm": "md5", - "value": "0a53c9b5a5074f1d553fc2f301b8c72e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/dpkg-preconfigure.8.gz", - "digest": { - "algorithm": "md5", - "value": "f50d7386ba7028c60b9f70af3a48a206" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/dpkg-reconfigure.8.gz", - "digest": { - "algorithm": "md5", - "value": "f008f787f8f9d0293ef611bd81e1ffdb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/AutoSelect.pm", - "digest": { - "algorithm": "md5", - "value": "8de485b18877846234415aa61eadb7b3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Base.pm", - "digest": { - "algorithm": "md5", - "value": "27a6f4e44ebb6c631c63bae827ee8c8c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Client/ConfModule.pm", - "digest": { - "algorithm": "md5", - "value": "72cd26ac568bcf2081b7c28912ee72d7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/ConfModule.pm", - "digest": { - "algorithm": "md5", - "value": "6c33e9c32da536ab805ea13821108270" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Config.pm", - "digest": { - "algorithm": "md5", - "value": "808d58d99e3f1de8f4aaad471de10860" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Db.pm", - "digest": { - "algorithm": "md5", - "value": "731d6613934ce6d46e11d1b6e30e4215" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver.pm", - "digest": { - "algorithm": "md5", - "value": "eb0982fc87c96ad7ab89b8039982d215" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/Backup.pm", - "digest": { - "algorithm": "md5", - "value": "22bcaf2c1d2a042d5e04cc9c48e5331c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/Cache.pm", - "digest": { - "algorithm": "md5", - "value": "8caad6c2e0d23be6f31f386b814dfbd1" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/Copy.pm", - "digest": { - "algorithm": "md5", - "value": "072adbb7e13e5bc2b75f86ccdf542b1a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/Debug.pm", - "digest": { - "algorithm": "md5", - "value": "c0d58a6a2d0e6124f5a9da21c2be8f2e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/DirTree.pm", - "digest": { - "algorithm": "md5", - "value": "2dae1795691944962dc7d0cb04405b5a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/Directory.pm", - "digest": { - "algorithm": "md5", - "value": "9be5bc66d0030fbdb28022fe1b7d5363" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/File.pm", - "digest": { - "algorithm": "md5", - "value": "8abe74a074e0fa0d4908a1ce335aa6a2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/LDAP.pm", - "digest": { - "algorithm": "md5", - "value": "51500a03fabe0aa80fd17d0c55d49722" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/PackageDir.pm", - "digest": { - "algorithm": "md5", - "value": "31560c883795a0c98e6075702a877890" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/Pipe.pm", - "digest": { - "algorithm": "md5", - "value": "9aa8c9c7e9d45106324b6da00583945f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/DbDriver/Stack.pm", - "digest": { - "algorithm": "md5", - "value": "84fa17235afa66ff0e6a0ebb8bc9ac21" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element.pm", - "digest": { - "algorithm": "md5", - "value": "cfcb83b556c78ce238145e8a5c8331c3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Dialog/Boolean.pm", - "digest": { - "algorithm": "md5", - "value": "4f4213ac1ba985c6a86a1f5337e22f96" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Dialog/Error.pm", - "digest": { - "algorithm": "md5", - "value": "1ceceaa749c08fe6427c13855c4849b1" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Dialog/Multiselect.pm", - "digest": { - "algorithm": "md5", - "value": "b98b4ea4097519a8776543f6b6490948" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Dialog/Note.pm", - "digest": { - "algorithm": "md5", - "value": "6a5aa9f7e4ac81e21a1d4a1484f275f4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Dialog/Password.pm", - "digest": { - "algorithm": "md5", - "value": "9ef627f6608f0fb8455021a753b23624" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Dialog/Progress.pm", - "digest": { - "algorithm": "md5", - "value": "b5236284f89efeb755ddd8ce06ad3ad9" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Dialog/Select.pm", - "digest": { - "algorithm": "md5", - "value": "ea97823fd786f71641e898b7140420c2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Dialog/String.pm", - "digest": { - "algorithm": "md5", - "value": "b98a19a2a3f108ec2ad4af5192cb3b31" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Dialog/Text.pm", - "digest": { - "algorithm": "md5", - "value": "5a22697639f7848c94db179df3ffa13a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Editor/Boolean.pm", - "digest": { - "algorithm": "md5", - "value": "1a617ddca6907cd3ee805393756c8fdc" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Editor/Error.pm", - "digest": { - "algorithm": "md5", - "value": "42c2833b78ccd2af5c3d1cce4428eb5e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Editor/Multiselect.pm", - "digest": { - "algorithm": "md5", - "value": "1d6d5510fc76676de40a8b2b02c4da3a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Editor/Note.pm", - "digest": { - "algorithm": "md5", - "value": "65c85fd416c5d6cd432f84eb5526f37b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Editor/Password.pm", - "digest": { - "algorithm": "md5", - "value": "4735d2f1c31de756e3aea03228384106" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Editor/Progress.pm", - "digest": { - "algorithm": "md5", - "value": "c43ad2a3b448b46a9ffc6e5c89e4885f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Editor/Select.pm", - "digest": { - "algorithm": "md5", - "value": "7bbbf3f0021b526f2bf6c726cf3a6acc" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Editor/String.pm", - "digest": { - "algorithm": "md5", - "value": "61b25b4dc6b8a8e1d6417167c464031a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Editor/Text.pm", - "digest": { - "algorithm": "md5", - "value": "7e08ffacda2e1dc9f06b15d690b38d2a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome.pm", - "digest": { - "algorithm": "md5", - "value": "9d7145459a3a29053f68df607b6bc89d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome/Boolean.pm", - "digest": { - "algorithm": "md5", - "value": "6bd21d5f66c0929f2927cba75f7613ec" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome/Error.pm", - "digest": { - "algorithm": "md5", - "value": "c0702ba61bcfe53256410e2399e42a5c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome/Multiselect.pm", - "digest": { - "algorithm": "md5", - "value": "56305085246a52b8622bb7cc09315f73" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome/Note.pm", - "digest": { - "algorithm": "md5", - "value": "cc2619e83ddab5adc1b92245b47722a2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome/Password.pm", - "digest": { - "algorithm": "md5", - "value": "1f69e273bba25eacfbf40d523b24fb11" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome/Progress.pm", - "digest": { - "algorithm": "md5", - "value": "69489241144da0943e84b30b0ccec3a6" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome/Select.pm", - "digest": { - "algorithm": "md5", - "value": "458f1e10f6e933cd0c35c1453f4c7338" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome/String.pm", - "digest": { - "algorithm": "md5", - "value": "54ac61f0c47d524d96566a5485d3d7d6" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Gnome/Text.pm", - "digest": { - "algorithm": "md5", - "value": "16b3a15c9bd104e90b9d848623c0899f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Multiselect.pm", - "digest": { - "algorithm": "md5", - "value": "0b76d2ff2abd5586732860ed069973ba" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive.pm", - "digest": { - "algorithm": "md5", - "value": "5090f97c9972fab4f7dc7ebb49996e2c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Boolean.pm", - "digest": { - "algorithm": "md5", - "value": "db7670d7933d1f8f0118c31ddd493970" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Error.pm", - "digest": { - "algorithm": "md5", - "value": "33916265f1150a5bc060f2387feb523f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Multiselect.pm", - "digest": { - "algorithm": "md5", - "value": "e5cb32767a176049e396af94685b01ff" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Note.pm", - "digest": { - "algorithm": "md5", - "value": "13dfe95e3aece538a11d509ada1ce289" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Password.pm", - "digest": { - "algorithm": "md5", - "value": "3c838d4a47dddc48509e6ea21baa3161" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Progress.pm", - "digest": { - "algorithm": "md5", - "value": "b405559f2200112ab95036b7ec849505" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Select.pm", - "digest": { - "algorithm": "md5", - "value": "4260064e9c28b8a83c59e64eea97a557" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/String.pm", - "digest": { - "algorithm": "md5", - "value": "06e70029507fb6f7e6ec9dc82f744122" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Noninteractive/Text.pm", - "digest": { - "algorithm": "md5", - "value": "0037100480bef471cd88d10e5003dd1e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Select.pm", - "digest": { - "algorithm": "md5", - "value": "aa4f4dfa69239f1964626f5206d13b5d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Teletype/Boolean.pm", - "digest": { - "algorithm": "md5", - "value": "38b4f0c167293001dcd38d1ceac2dd66" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Teletype/Error.pm", - "digest": { - "algorithm": "md5", - "value": "3b999aa2c596feea026c3d3361ab408b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Teletype/Multiselect.pm", - "digest": { - "algorithm": "md5", - "value": "d7d71486929b88c20170677791c23d72" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Teletype/Note.pm", - "digest": { - "algorithm": "md5", - "value": "da293d7c097e983170f80fd973e595ad" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Teletype/Password.pm", - "digest": { - "algorithm": "md5", - "value": "4d5d3393bc473166c626bac82c91f516" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Teletype/Progress.pm", - "digest": { - "algorithm": "md5", - "value": "55f02de45fa6f2ea2bbd8de839959dde" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Teletype/Select.pm", - "digest": { - "algorithm": "md5", - "value": "1ff7785d0781ce267418f8890acd4409" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Teletype/String.pm", - "digest": { - "algorithm": "md5", - "value": "432a3e2ccada26eed6d8efd9c2d7c66e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Teletype/Text.pm", - "digest": { - "algorithm": "md5", - "value": "272b1231b35fb5eeccb4aeb8042a934d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Web/Boolean.pm", - "digest": { - "algorithm": "md5", - "value": "80228037ab8a8441054e37586a99060b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Web/Error.pm", - "digest": { - "algorithm": "md5", - "value": "f146fa12fbbe5434e4910ec1a7422475" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Web/Multiselect.pm", - "digest": { - "algorithm": "md5", - "value": "ef1ff584e10e02c3b0aeb0d985e99a19" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Web/Note.pm", - "digest": { - "algorithm": "md5", - "value": "310ea26706fb2ccd80e0524017d1ab54" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Web/Password.pm", - "digest": { - "algorithm": "md5", - "value": "64824ec979d1bdb973b6f9d81532ffeb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Web/Progress.pm", - "digest": { - "algorithm": "md5", - "value": "6745d03b282a96b208f8cea951366d05" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Web/Select.pm", - "digest": { - "algorithm": "md5", - "value": "990129f10517cd949f29864363784c23" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Web/String.pm", - "digest": { - "algorithm": "md5", - "value": "9b21b58ec6213c636dce8cd26893d269" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Element/Web/Text.pm", - "digest": { - "algorithm": "md5", - "value": "88550019f5e9bec6cd3dbf62a2de4049" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Encoding.pm", - "digest": { - "algorithm": "md5", - "value": "fe7a858360c6152eaf84a745273acd83" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Format.pm", - "digest": { - "algorithm": "md5", - "value": "be75659c57c73794f8c66cb59265a714" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Format/822.pm", - "digest": { - "algorithm": "md5", - "value": "611536bbf4f507ecc7b8266a3ce946ec" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd.pm", - "digest": { - "algorithm": "md5", - "value": "e305f3178e9fab07fb1b8014acbcc10d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Dialog.pm", - "digest": { - "algorithm": "md5", - "value": "afe7410fa7d1f5cc4fa3e7af5d266da3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Editor.pm", - "digest": { - "algorithm": "md5", - "value": "2b4119d66ee8dde0e7fa95de44394813" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Gnome.pm", - "digest": { - "algorithm": "md5", - "value": "cbf73546742945004e02d031355a6809" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Kde.pm", - "digest": { - "algorithm": "md5", - "value": "a57a122cd5bd584bceee2f5d20712fbf" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm", - "digest": { - "algorithm": "md5", - "value": "c826594c3b7dbeb965b863115a51f9b2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Passthrough.pm", - "digest": { - "algorithm": "md5", - "value": "45353dd2e95f8b26f42cfc59f4f02caa" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Readline.pm", - "digest": { - "algorithm": "md5", - "value": "8f4f993916d07fb2d186b1ec74b6711a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/ScreenSize.pm", - "digest": { - "algorithm": "md5", - "value": "2e6b83d495fc01a6dd07806c8acaa1e2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Teletype.pm", - "digest": { - "algorithm": "md5", - "value": "22a4af7da2960fd87452449a88d7ea64" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Text.pm", - "digest": { - "algorithm": "md5", - "value": "a9ac9868f237206993bde33a17a61220" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/FrontEnd/Web.pm", - "digest": { - "algorithm": "md5", - "value": "7ffb67a8e8d623beb2be7c08d2c80b8f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Gettext.pm", - "digest": { - "algorithm": "md5", - "value": "072dbdddbd69162468e988d43848cbca" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Iterator.pm", - "digest": { - "algorithm": "md5", - "value": "cf4de7542d6829631b3bcc4b4f87f641" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Log.pm", - "digest": { - "algorithm": "md5", - "value": "fff70eb6929c7a6e7af6f7d00beda73a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Path.pm", - "digest": { - "algorithm": "md5", - "value": "b40ba281b22387604e0ad781d221e1cb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Priority.pm", - "digest": { - "algorithm": "md5", - "value": "c0af214079361d605172e510abd69604" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Question.pm", - "digest": { - "algorithm": "md5", - "value": "15565a7e690252752e461a50aa130803" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Template.pm", - "digest": { - "algorithm": "md5", - "value": "38a37b0eb8764fd2d827a46317ab5a1f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/Template/Transient.pm", - "digest": { - "algorithm": "md5", - "value": "3a3c7de553d6eccd5480adc6d02583bb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debconf/TmpFile.pm", - "digest": { - "algorithm": "md5", - "value": "46c0e42d52a4ea2fbe0316eebc6c1118" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/perl5/Debian/DebConf/Client/ConfModule.pm", - "digest": { - "algorithm": "md5", - "value": "a12c3f0045bfbe05e2345aed702f6fc3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/pixmaps/debian-logo.png", - "digest": { - "algorithm": "md5", - "value": "ef66f9c42198fee38af53f848b36a4f7" - }, - "isConfigFile": false - } - ] - } - }, - { - "id": "8875eb673276ee9a", - "name": "libc6", - "version": "2.36-9+deb12u6", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/libc6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libc6/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/libc6:amd64.conffiles", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/libc6:amd64.conffiles", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/libc6:amd64.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/libc6:amd64.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [ - { - "value": "GPL-2", - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libc6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libc6/copyright" - } - ] - }, - { - "value": "LGPL-2.1", - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libc6/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libc6/copyright" - } - ] - } - ], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:libc6:libc6:2.36-9\\+deb12u6:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/libc6@2.36-9+deb12u6?arch=amd64\u0026upstream=glibc\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "libc6", - "source": "glibc", - "version": "2.36-9+deb12u6", - "sourceVersion": "", - "architecture": "amd64", - "maintainer": "GNU Libc Maintainers \u003cdebian-glibc@lists.debian.org\u003e", - "installedSize": 12986, - "depends": [ - "libgcc-s1" - ], - "files": [ - { - "path": "/etc/ld.so.conf.d/x86_64-linux-gnu.conf", - "digest": { - "algorithm": "md5", - "value": "d4e7a7b88a71b5ffd9e2644e71a0cfab" - }, - "isConfigFile": true - }, - { - "path": "/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2", - "digest": { - "algorithm": "md5", - "value": "af0bbbf243a4ca153d990d240c26eabd" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libBrokenLocale.so.1", - "digest": { - "algorithm": "md5", - "value": "69e048da09d64883b4801a5e46214f71" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libanl.so.1", - "digest": { - "algorithm": "md5", - "value": "3cdcee8346c2ac314e5bed56b6b4d25b" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libc.so.6", - "digest": { - "algorithm": "md5", - "value": "929f84e13d57de317ef7d943c7853a8a" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libc_malloc_debug.so.0", - "digest": { - "algorithm": "md5", - "value": "f02bbe6259b4f9819300eb9332c800cd" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libdl.so.2", - "digest": { - "algorithm": "md5", - "value": "3d2d62950d8f7d8a05efb3e51fff02b7" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libm.so.6", - "digest": { - "algorithm": "md5", - "value": "d625a58470bb9b6c236082d5b94b1b0e" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libmemusage.so", - "digest": { - "algorithm": "md5", - "value": "a5942123f68625d7290ecd37f6af6e3b" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libmvec.so.1", - "digest": { - "algorithm": "md5", - "value": "ace43e415c079037d25560605360ef01" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libnsl.so.1", - "digest": { - "algorithm": "md5", - "value": "af34f5c0c38a6ba72601392e5c8ddcac" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libnss_compat.so.2", - "digest": { - "algorithm": "md5", - "value": "cfb4619e63caec7bbbcc681ef76b5172" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libnss_dns.so.2", - "digest": { - "algorithm": "md5", - "value": "ffdfb39e86ada668c23d1ced61604d23" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libnss_files.so.2", - "digest": { - "algorithm": "md5", - "value": "64056c44c52e0014c1e4a0e5d0f271fd" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libnss_hesiod.so.2", - "digest": { - "algorithm": "md5", - "value": "ff8f7c43403a6732cf01819420a8434e" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libpcprofile.so", - "digest": { - "algorithm": "md5", - "value": "5ed27e634d9daa9c667598ee9eb4740f" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libpthread.so.0", - "digest": { - "algorithm": "md5", - "value": "9176dc28821625c0b1f142e0705ab9f2" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libresolv.so.2", - "digest": { - "algorithm": "md5", - "value": "e75155084707fd6123e44e1fec648906" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/librt.so.1", - "digest": { - "algorithm": "md5", - "value": "0d525038a9f65990d6dd400ce1c98e2e" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libthread_db.so.1", - "digest": { - "algorithm": "md5", - "value": "21d8dd393cb7718f1b2573c5010a0313" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libutil.so.1", - "digest": { - "algorithm": "md5", - "value": "30007dcf780862d3d64655aae122d00c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ANSI_X3.110.so", - "digest": { - "algorithm": "md5", - "value": "afc4af9a1e78180af8dcefa289f0f96d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ARMSCII-8.so", - "digest": { - "algorithm": "md5", - "value": "0524ef3a343ef3d2f444548550519b42" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ASMO_449.so", - "digest": { - "algorithm": "md5", - "value": "a7abcbf11e6ec48af8caf0512b257a73" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/BIG5.so", - "digest": { - "algorithm": "md5", - "value": "1ecc3e0fb1cbbad49bfcb9b94e33d5f2" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/BIG5HKSCS.so", - "digest": { - "algorithm": "md5", - "value": "783baee0bffa17b551eed5a70a329a4b" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/BRF.so", - "digest": { - "algorithm": "md5", - "value": "5f973c954efaa3bcd10badc0eced7c20" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP10007.so", - "digest": { - "algorithm": "md5", - "value": "7aef5b05c10420332c4f4f7934495741" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1125.so", - "digest": { - "algorithm": "md5", - "value": "da1c716ec1d16341356e49cb08a631a6" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1250.so", - "digest": { - "algorithm": "md5", - "value": "5f646798cc70c4ca7bcd53e3cc7a79ad" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1251.so", - "digest": { - "algorithm": "md5", - "value": "6eb3c58669f2c334284c03baaac4c196" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1252.so", - "digest": { - "algorithm": "md5", - "value": "d21773950a4da719a1b5cf6ef8141da2" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1253.so", - "digest": { - "algorithm": "md5", - "value": "61242ff9a708b722be0e2a4af914547f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1254.so", - "digest": { - "algorithm": "md5", - "value": "775a0d0e2562de1e5daf6bf4fc9e6aa5" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1255.so", - "digest": { - "algorithm": "md5", - "value": "2291a9d5d3dec9a6d73323f7ecc25cdb" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1256.so", - "digest": { - "algorithm": "md5", - "value": "be361515e8a6ddbcaafea1394d953ce6" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1257.so", - "digest": { - "algorithm": "md5", - "value": "4d0c05983b30c4f28c455af262b28a7d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP1258.so", - "digest": { - "algorithm": "md5", - "value": "a912d77a402e4120dbb607dc8e09b484" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP737.so", - "digest": { - "algorithm": "md5", - "value": "ebed605a893f430d1f8fa004dbeb0ede" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP770.so", - "digest": { - "algorithm": "md5", - "value": "f8f4583a216bff8dce6b6426435cb07c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP771.so", - "digest": { - "algorithm": "md5", - "value": "bd0add7f096ded2d3f905c9ac537d1a1" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP772.so", - "digest": { - "algorithm": "md5", - "value": "9b0f1d1f5e840a6f8efcb109a15b5805" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP773.so", - "digest": { - "algorithm": "md5", - "value": "bc32a9e9972047a3d1fb04aa40af2525" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP774.so", - "digest": { - "algorithm": "md5", - "value": "ba0429dc965d1aa6e433cb4ce1df7a47" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP775.so", - "digest": { - "algorithm": "md5", - "value": "704045342501ee5931ea602f7e7f0f04" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CP932.so", - "digest": { - "algorithm": "md5", - "value": "64792017cfdcdeff739cf1002cf2da92" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CSN_369103.so", - "digest": { - "algorithm": "md5", - "value": "762ee04fd733000894db16acd6435683" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/CWI.so", - "digest": { - "algorithm": "md5", - "value": "f8e1fc50c19d3a050c5356d41640a145" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/DEC-MCS.so", - "digest": { - "algorithm": "md5", - "value": "0d2c1a8e3156461b500f985940f165ea" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE-A.so", - "digest": { - "algorithm": "md5", - "value": "2368b048ee431824d67e735359c8a3e7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-AT-DE.so", - "digest": { - "algorithm": "md5", - "value": "79187b3df151008d8274395e811459b0" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-CA-FR.so", - "digest": { - "algorithm": "md5", - "value": "49643bb89eddea2463463897636f303d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO-A.so", - "digest": { - "algorithm": "md5", - "value": "7f4124bf5013330907290da870a06316" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-DK-NO.so", - "digest": { - "algorithm": "md5", - "value": "515a53e665464597437f71033eb87c1f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-A.so", - "digest": { - "algorithm": "md5", - "value": "5f85818aab29d4e93045eb5b9f0bf7c7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES-S.so", - "digest": { - "algorithm": "md5", - "value": "b8da92cabc8f6cf660bf16347316e57c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-ES.so", - "digest": { - "algorithm": "md5", - "value": "6f9c300ff3aae4e798cb00ee204a7860" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE-A.so", - "digest": { - "algorithm": "md5", - "value": "87479c251609de62eb924c6f5042096f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FI-SE.so", - "digest": { - "algorithm": "md5", - "value": "50040206be473d90337e6b766ea09d1c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-FR.so", - "digest": { - "algorithm": "md5", - "value": "fd8e1a8a4d7e4298040e6f8a50dd1ed7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IS-FRISS.so", - "digest": { - "algorithm": "md5", - "value": "c45fa55e95fbb9e642af9af2a19c0c76" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-IT.so", - "digest": { - "algorithm": "md5", - "value": "fe88018c781da3b619c9de96a4633cfe" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-PT.so", - "digest": { - "algorithm": "md5", - "value": "92ddded0fdc45f21fbdbaad3a94a16ab" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-UK.so", - "digest": { - "algorithm": "md5", - "value": "064f8eee87784486e2fb88efe1b0c201" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EBCDIC-US.so", - "digest": { - "algorithm": "md5", - "value": "439f1435ba6470a272fac8d79cf9a8b4" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ECMA-CYRILLIC.so", - "digest": { - "algorithm": "md5", - "value": "4f5a0bdb6c5fd4a04f284489ef8395c6" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-CN.so", - "digest": { - "algorithm": "md5", - "value": "ebbe1b94acbfeedcb65a02972ecba58e" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JISX0213.so", - "digest": { - "algorithm": "md5", - "value": "f512ed0f2ab1b6b71cd0363756d7954c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP-MS.so", - "digest": { - "algorithm": "md5", - "value": "c1d86b9ed8f2ad41382627044b9d4164" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-JP.so", - "digest": { - "algorithm": "md5", - "value": "88494fce72633cdd0ee3e3c13ed6284c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-KR.so", - "digest": { - "algorithm": "md5", - "value": "f76c1b4ed19dac9f77488648cd64f1f9" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/EUC-TW.so", - "digest": { - "algorithm": "md5", - "value": "faf7f05667c93c064c2ee6b8101c58ae" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GB18030.so", - "digest": { - "algorithm": "md5", - "value": "d1fe77a4b7bae5c75d75272c5f98439c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GBBIG5.so", - "digest": { - "algorithm": "md5", - "value": "794ff736c1814b2c3c0f557484b978da" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GBGBK.so", - "digest": { - "algorithm": "md5", - "value": "63e3bdde0da7619f61d57f1e0eb25bd9" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GBK.so", - "digest": { - "algorithm": "md5", - "value": "b9f1e8714541c0bcb7e7c206df4e94be" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-ACADEMY.so", - "digest": { - "algorithm": "md5", - "value": "b14ead57e37065b127eabe5533fe1f7f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GEORGIAN-PS.so", - "digest": { - "algorithm": "md5", - "value": "70636e703e4b864be12b3eab41dd474e" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GOST_19768-74.so", - "digest": { - "algorithm": "md5", - "value": "754dd7b4b871bc9a07258b58769ea82a" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GREEK-CCITT.so", - "digest": { - "algorithm": "md5", - "value": "c9c0d6046da21d242ffe0429235617d4" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7-OLD.so", - "digest": { - "algorithm": "md5", - "value": "325717ab899fb9d371f969a72f0bbab5" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/GREEK7.so", - "digest": { - "algorithm": "md5", - "value": "6e90993e6c2e20694b68b9603fabdb32" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-GREEK8.so", - "digest": { - "algorithm": "md5", - "value": "59482ca08878064b64f1693d00fbbe2e" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN8.so", - "digest": { - "algorithm": "md5", - "value": "f8d2b73a83e8cbb977d98289414642e1" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-ROMAN9.so", - "digest": { - "algorithm": "md5", - "value": "82ec2733b40f24ba36869d0f33856877" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-THAI8.so", - "digest": { - "algorithm": "md5", - "value": "5689a2cb5304974af218508811efa80d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/HP-TURKISH8.so", - "digest": { - "algorithm": "md5", - "value": "f40c16e92cd828efa4ed56cd6d5fc263" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM037.so", - "digest": { - "algorithm": "md5", - "value": "89498ae189380f6e065634e73d662cae" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM038.so", - "digest": { - "algorithm": "md5", - "value": "ce71dff71f7b2153f137e987107b8402" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1004.so", - "digest": { - "algorithm": "md5", - "value": "9c0d67586d7a2806b6844451d6831b2a" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008.so", - "digest": { - "algorithm": "md5", - "value": "426ba9638a135f8eb1946bbd4086e811" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1008_420.so", - "digest": { - "algorithm": "md5", - "value": "a927c3defafad2ce1883bb5d95dd1c35" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1025.so", - "digest": { - "algorithm": "md5", - "value": "81bee6e3bee32bcec0155137f56da380" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1026.so", - "digest": { - "algorithm": "md5", - "value": "bcd74e15570ee61aa1808e8203db5b14" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1046.so", - "digest": { - "algorithm": "md5", - "value": "1e48637a503c6754abcb067f21af88bd" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1047.so", - "digest": { - "algorithm": "md5", - "value": "24355e5742f1deff042b0f0abb372f61" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1097.so", - "digest": { - "algorithm": "md5", - "value": "76380f3776e64f6cf841f4a607c4d815" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1112.so", - "digest": { - "algorithm": "md5", - "value": "faeb71f6f9f31001e86038c0d5635304" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1122.so", - "digest": { - "algorithm": "md5", - "value": "b8fb3bec011f2e5986f1ec6b1f2069c7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1123.so", - "digest": { - "algorithm": "md5", - "value": "54ab9bc50ea794cca6b4ade3a3fd25c7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1124.so", - "digest": { - "algorithm": "md5", - "value": "9d15b2fdd81552eed51ac867d11e5852" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1129.so", - "digest": { - "algorithm": "md5", - "value": "9b9f939ae9d970a8dfdf8faeeed80fb5" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1130.so", - "digest": { - "algorithm": "md5", - "value": "76492a3490c4cb1cf4bf2cd2f3f05bee" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1132.so", - "digest": { - "algorithm": "md5", - "value": "ed753aaec624172641d38a8506891cee" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1133.so", - "digest": { - "algorithm": "md5", - "value": "46bd845028b48e6e05578849f6e3e463" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1137.so", - "digest": { - "algorithm": "md5", - "value": "c256fa10124d2b234d50246fcd13d28d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1140.so", - "digest": { - "algorithm": "md5", - "value": "004bc5b945e0841006a8ee85e82faf48" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1141.so", - "digest": { - "algorithm": "md5", - "value": "353161dc8b07f3f507fada92213944fe" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1142.so", - "digest": { - "algorithm": "md5", - "value": "a1e78fce362bce00d40bcc38e70a8a96" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1143.so", - "digest": { - "algorithm": "md5", - "value": "75f1381f446639e950d15f36c9728e19" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1144.so", - "digest": { - "algorithm": "md5", - "value": "fb0cf55a7274fa85721058f55f600fee" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1145.so", - "digest": { - "algorithm": "md5", - "value": "6d8482767c189bba001a20cd230afc88" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1146.so", - "digest": { - "algorithm": "md5", - "value": "119672e2f0f6ec641354d30aec2c7e53" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1147.so", - "digest": { - "algorithm": "md5", - "value": "73c3b57751387772545a57eed1d6adff" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1148.so", - "digest": { - "algorithm": "md5", - "value": "679ca47f640fe91e8f13ed4acd9db676" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1149.so", - "digest": { - "algorithm": "md5", - "value": "dd4fdbbb102b2f558676ee1b7c1eab6b" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1153.so", - "digest": { - "algorithm": "md5", - "value": "0df2164e1bb22ac7bccb7182fd6b3efb" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1154.so", - "digest": { - "algorithm": "md5", - "value": "a02deae01062b1d32271cbc3b3e930b4" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1155.so", - "digest": { - "algorithm": "md5", - "value": "10839d1b7f18d4e8b838a8e41988f951" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1156.so", - "digest": { - "algorithm": "md5", - "value": "9f33805f9c36ca21b123fcbb33c01c39" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1157.so", - "digest": { - "algorithm": "md5", - "value": "eb0b8a805ae3ad5ec1a344c8f3846e9f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1158.so", - "digest": { - "algorithm": "md5", - "value": "78062a181de6b0dd139ccb3c746b192d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1160.so", - "digest": { - "algorithm": "md5", - "value": "0c6b36218651a52e38cc8cdf7400849e" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1161.so", - "digest": { - "algorithm": "md5", - "value": "ccf3e402537285ffcbbca29b1d814ce5" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1162.so", - "digest": { - "algorithm": "md5", - "value": "7d2abe58964447f4bd5645ada92fe6e3" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1163.so", - "digest": { - "algorithm": "md5", - "value": "a9da0e55e53bd699f399d7c7fb3a92f6" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1164.so", - "digest": { - "algorithm": "md5", - "value": "0a515b12fe22f808944de107b0252d57" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1166.so", - "digest": { - "algorithm": "md5", - "value": "049e3ee23d618f357135b508b9676883" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1167.so", - "digest": { - "algorithm": "md5", - "value": "6c2bed1d089fbe349a96db295f0db00f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM12712.so", - "digest": { - "algorithm": "md5", - "value": "676822b09e24dd9767a7104aea1c0293" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1364.so", - "digest": { - "algorithm": "md5", - "value": "bde53ea9fe9dfc7fc49deb20b324d509" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1371.so", - "digest": { - "algorithm": "md5", - "value": "f45373d86c5a9310e341308c5254dce9" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1388.so", - "digest": { - "algorithm": "md5", - "value": "ee1750d0a45d33474ac955ef6e311374" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1390.so", - "digest": { - "algorithm": "md5", - "value": "19a78b791e0a17a433d49c8ecb235d5a" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM1399.so", - "digest": { - "algorithm": "md5", - "value": "913df271901c2b1bfcf8f0035085c508" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM16804.so", - "digest": { - "algorithm": "md5", - "value": "f2198f139d2940c68126936013f3c24d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM256.so", - "digest": { - "algorithm": "md5", - "value": "967b2fc17bc87ca69ce546e6c88ead27" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM273.so", - "digest": { - "algorithm": "md5", - "value": "3d330d349e25c77a798c44998231efeb" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM274.so", - "digest": { - "algorithm": "md5", - "value": "0e604e54437ae1f299ec968220c24db8" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM275.so", - "digest": { - "algorithm": "md5", - "value": "c57ce69df235ed1d77619aabb82d1638" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM277.so", - "digest": { - "algorithm": "md5", - "value": "b5f06e3d431ba55c1ba86900b91800a6" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM278.so", - "digest": { - "algorithm": "md5", - "value": "1b92a03fcc076616575114ea65147939" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM280.so", - "digest": { - "algorithm": "md5", - "value": "1e5af0ba2f4e4e84907e044cdd46e0e2" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM281.so", - "digest": { - "algorithm": "md5", - "value": "330fed66649dbe7e44a7bb4e5c20868b" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM284.so", - "digest": { - "algorithm": "md5", - "value": "53b4caf7b985ebf83c65eae3e85513d0" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM285.so", - "digest": { - "algorithm": "md5", - "value": "0c3b3194015ba0250ec6952b013abc16" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM290.so", - "digest": { - "algorithm": "md5", - "value": "8132c17aa1f0d40d6cbf981ee248489f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM297.so", - "digest": { - "algorithm": "md5", - "value": "b67c25a8f597c9cf39ea733b47f5e792" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM420.so", - "digest": { - "algorithm": "md5", - "value": "a4ffc5a684dc690aad0156dbd5f4f8ec" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM423.so", - "digest": { - "algorithm": "md5", - "value": "8002a1a1e85cdf224691a7e2c1f9f367" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM424.so", - "digest": { - "algorithm": "md5", - "value": "cc880e4ba9d0861389c44c0b1ac90b3c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM437.so", - "digest": { - "algorithm": "md5", - "value": "ef032cd0066027030ade8966f7907ba4" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4517.so", - "digest": { - "algorithm": "md5", - "value": "4555a5b00ca6a2a03c316ce287cdb5c1" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4899.so", - "digest": { - "algorithm": "md5", - "value": "972e0aa0d17d0812c4806b6763417447" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4909.so", - "digest": { - "algorithm": "md5", - "value": "30294a4aac71fa1b8359a53f7482441e" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM4971.so", - "digest": { - "algorithm": "md5", - "value": "89db7cb3066e1ee4f302dbb55b3e94a4" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM500.so", - "digest": { - "algorithm": "md5", - "value": "7e5ac0b666e0be646d237d6957e3385e" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM5347.so", - "digest": { - "algorithm": "md5", - "value": "5698c3febec215b73e11e5c2e609844c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM803.so", - "digest": { - "algorithm": "md5", - "value": "5f0b3e322e03aabedb2945e5c729deec" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM850.so", - "digest": { - "algorithm": "md5", - "value": "82e14920f2f3974617f5236935ecf662" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM851.so", - "digest": { - "algorithm": "md5", - "value": "2c64fac60ec88823cd3047838fc5e6a1" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM852.so", - "digest": { - "algorithm": "md5", - "value": "a84c3b6c3e721011c4f42a7d6b1f52df" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM855.so", - "digest": { - "algorithm": "md5", - "value": "f3097eb522ab04e69fb2a891e7de741d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM856.so", - "digest": { - "algorithm": "md5", - "value": "fa237b1d939cc96fdd97eed2ecf1ed31" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM857.so", - "digest": { - "algorithm": "md5", - "value": "8e854d205e357ae4ea5dc0bc0b795bd7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM858.so", - "digest": { - "algorithm": "md5", - "value": "0477455706467f81e56ab95ab9b59f0c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM860.so", - "digest": { - "algorithm": "md5", - "value": "5811cf279d6026749ea57e40775104ee" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM861.so", - "digest": { - "algorithm": "md5", - "value": "ec2e5d1525b3d94b5b3c277154bd9f88" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM862.so", - "digest": { - "algorithm": "md5", - "value": "b16f1fee7129fcea10a6ca70bd4acb99" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM863.so", - "digest": { - "algorithm": "md5", - "value": "57a01b21828614363c6516ff07730340" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM864.so", - "digest": { - "algorithm": "md5", - "value": "5bf95ce4d636421e69dce91d01008939" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM865.so", - "digest": { - "algorithm": "md5", - "value": "01c45f1c14588f2f9dc0f80ebb4c788e" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM866.so", - "digest": { - "algorithm": "md5", - "value": "d8232e81bb7649805c2b18e4567bf9c7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM866NAV.so", - "digest": { - "algorithm": "md5", - "value": "25791156a2cd9d2a504194e920551069" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM868.so", - "digest": { - "algorithm": "md5", - "value": "88b10939421d19c682ef084dceac8b90" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM869.so", - "digest": { - "algorithm": "md5", - "value": "d581fde5c5c1a5e71b36aa22b2ac271b" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM870.so", - "digest": { - "algorithm": "md5", - "value": "101f14c15607837b9ca97fb6b4da7cfc" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM871.so", - "digest": { - "algorithm": "md5", - "value": "ebe8346917e25bd2d4f4e11b1affa61f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM874.so", - "digest": { - "algorithm": "md5", - "value": "c10c2f34dbf9d4d369928fa5da0bd1aa" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM875.so", - "digest": { - "algorithm": "md5", - "value": "a75a15d22901b11a40e9e2bc062267e7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM880.so", - "digest": { - "algorithm": "md5", - "value": "f54f2c0ee9b7dfd4bd3df996f00c4d96" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM891.so", - "digest": { - "algorithm": "md5", - "value": "0cab1e23122970a5a8e4fdccae6c5f49" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM901.so", - "digest": { - "algorithm": "md5", - "value": "5027a79ad233f88c3fba3cb90093e840" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM902.so", - "digest": { - "algorithm": "md5", - "value": "2d414a0ad29fe8c96d55d1bf2c67a8c1" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM903.so", - "digest": { - "algorithm": "md5", - "value": "edea7d406f0074aab8f134e20b192bd0" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM9030.so", - "digest": { - "algorithm": "md5", - "value": "83a044a20eba7059e36e56c18c22b52e" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM904.so", - "digest": { - "algorithm": "md5", - "value": "1b3052fc3279b0476bc13b521792e3d1" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM905.so", - "digest": { - "algorithm": "md5", - "value": "411b803de23765815cdb501c11f00091" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM9066.so", - "digest": { - "algorithm": "md5", - "value": "81bdb657fa2f1d39ac515f5eb683c189" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM918.so", - "digest": { - "algorithm": "md5", - "value": "3cf575c825d39d38e7bc61feecbcd5a9" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM921.so", - "digest": { - "algorithm": "md5", - "value": "7dab400b76363fb519fd8e1a1d5c60cd" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM922.so", - "digest": { - "algorithm": "md5", - "value": "b1364e239d0cc1553c4251feca694074" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM930.so", - "digest": { - "algorithm": "md5", - "value": "9623143ca91eabf4db6c9a78a773b485" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM932.so", - "digest": { - "algorithm": "md5", - "value": "6e9d827c65bbb425b3c86d1ea96edf7c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM933.so", - "digest": { - "algorithm": "md5", - "value": "54e165982a09d97de57b7a7d9e22404f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM935.so", - "digest": { - "algorithm": "md5", - "value": "37a3e3c922ebf0b830e8256e1ff7cdc7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM937.so", - "digest": { - "algorithm": "md5", - "value": "1d16eb1eb174b550ac1b10ee8da913f7" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM939.so", - "digest": { - "algorithm": "md5", - "value": "818509dd7c8ae12462777194edc40520" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM943.so", - "digest": { - "algorithm": "md5", - "value": "37ae659097149d2cbc81e7f4b0355bc6" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IBM9448.so", - "digest": { - "algorithm": "md5", - "value": "50ea7fbfd720a9478648c509cdef1581" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/IEC_P27-1.so", - "digest": { - "algorithm": "md5", - "value": "15f179cd714875a9bedf612df3d5a662" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/INIS-8.so", - "digest": { - "algorithm": "md5", - "value": "115c33597587e4238cf3476fce892766" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/INIS-CYRILLIC.so", - "digest": { - "algorithm": "md5", - "value": "aae1af16fb7b212ddac875a74fd5177b" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/INIS.so", - "digest": { - "algorithm": "md5", - "value": "ca9ca31732e4635dabb0ea60509bc9ea" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISIRI-3342.so", - "digest": { - "algorithm": "md5", - "value": "89ac569127995d687f830bd0cc04f899" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN-EXT.so", - "digest": { - "algorithm": "md5", - "value": "ef61737e78aa66957e5b3c65af3b344a" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-CN.so", - "digest": { - "algorithm": "md5", - "value": "99714728d668021ab02081d3a407d1fd" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP-3.so", - "digest": { - "algorithm": "md5", - "value": "2a7ec4599c09ab06901a81592c0078cd" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-JP.so", - "digest": { - "algorithm": "md5", - "value": "84daf5e893153bfe97022e2da6dc7675" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-2022-KR.so", - "digest": { - "algorithm": "md5", - "value": "6601b7f16f96fc716970959b67cb550a" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-197.so", - "digest": { - "algorithm": "md5", - "value": "428ecc0f83ba1fce8fb3241a524c44d1" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO-IR-209.so", - "digest": { - "algorithm": "md5", - "value": "d51a86307b52e02442c68ccb406e8657" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO646.so", - "digest": { - "algorithm": "md5", - "value": "8b91f55a349165f0ed56f26f8da35701" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so", - "digest": { - "algorithm": "md5", - "value": "5599e51f8fc3fd37bc6fddda1382ef45" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-10.so", - "digest": { - "algorithm": "md5", - "value": "ba04e05ec21c35fa8dba5a930e7eac8a" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-11.so", - "digest": { - "algorithm": "md5", - "value": "8c4362f2ce458a9a30e473eb885f90bf" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-13.so", - "digest": { - "algorithm": "md5", - "value": "016bdd356b7bac2822fcc6ba4b51f68f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-14.so", - "digest": { - "algorithm": "md5", - "value": "d9b70c371d687fdf8eba668789631a2c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-15.so", - "digest": { - "algorithm": "md5", - "value": "ec932544b187796778089b18aea7fde8" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-16.so", - "digest": { - "algorithm": "md5", - "value": "d421b82bcbde8bf00cebea8c0acc750f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-2.so", - "digest": { - "algorithm": "md5", - "value": "c13ccffde9130f6a2b3fe12e77f5bf82" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-3.so", - "digest": { - "algorithm": "md5", - "value": "6fd5e992af5e12e44abbce89387a3015" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-4.so", - "digest": { - "algorithm": "md5", - "value": "a3ddd856c62d841af382c9b420a16b42" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-5.so", - "digest": { - "algorithm": "md5", - "value": "41bdc66c6f1360c47d73c4609ffd420a" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-6.so", - "digest": { - "algorithm": "md5", - "value": "9046e423bb25a39f422cb2b6d3063f6b" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-7.so", - "digest": { - "algorithm": "md5", - "value": "847c48eae51cf31f65c803f6fccd2c03" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-8.so", - "digest": { - "algorithm": "md5", - "value": "769dbd6fc7b10631b4dfd846e3f2547c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9.so", - "digest": { - "algorithm": "md5", - "value": "9f5c1c4b1731dd923db3a7783b4ea899" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO8859-9E.so", - "digest": { - "algorithm": "md5", - "value": "497bd7b39b9a4f4bb3f260cb3992956d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_10367-BOX.so", - "digest": { - "algorithm": "md5", - "value": "1d6389f79b1c60c9241dd04259879730" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_11548-1.so", - "digest": { - "algorithm": "md5", - "value": "172393d8e829a07123202d98d38fd20c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_2033.so", - "digest": { - "algorithm": "md5", - "value": "a44fe78c105a93ddf0dfbdf70e814938" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427-EXT.so", - "digest": { - "algorithm": "md5", - "value": "21026dfb071afcf2b67ecadae282078b" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5427.so", - "digest": { - "algorithm": "md5", - "value": "497ba89695ae353f85553cefabd8469d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_5428.so", - "digest": { - "algorithm": "md5", - "value": "19189db2ce7efca6f102c3e42c523c2c" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937-2.so", - "digest": { - "algorithm": "md5", - "value": "d08176b8c2752f396bdfee101d5aff99" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/ISO_6937.so", - "digest": { - "algorithm": "md5", - "value": "51e4247c19462538a551b37b37620604" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/JOHAB.so", - "digest": { - "algorithm": "md5", - "value": "01a22330f563f970ef2f58c69da31344" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI-8.so", - "digest": { - "algorithm": "md5", - "value": "276dd04e54676da2b095f58d9056b0a3" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-R.so", - "digest": { - "algorithm": "md5", - "value": "3afd709bd5224d6b7f8593a4018fa98f" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-RU.so", - "digest": { - "algorithm": "md5", - "value": "eb791e88a72fccd66d85fc344b77ac0d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-T.so", - "digest": { - "algorithm": "md5", - "value": "137c7eb86726b238ffb115dbd6005d22" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/KOI8-U.so", - "digest": { - "algorithm": "md5", - "value": "cf4adf52f6efb51614e46eaeff36f5bf" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK-1.so", - "digest": { - "algorithm": "md5", - "value": "aa304fde21b32272d888ef74b1fccadd" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/LATIN-GREEK.so", - "digest": { - "algorithm": "md5", - "value": "48443553a0f7bb83a3e1adb758db62c0" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-CENTRALEUROPE.so", - "digest": { - "algorithm": "md5", - "value": "c0a05989185cb3b8fb01a5c800a62325" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-IS.so", - "digest": { - "algorithm": "md5", - "value": "187083d4ac83a98ee8c7f5185558b9b1" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-SAMI.so", - "digest": { - "algorithm": "md5", - "value": "39da29530e507a00c1ca677bf4ec327e" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/MAC-UK.so", - "digest": { - "algorithm": "md5", - "value": "5a93395dde825a7f359e88e176623645" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/MACINTOSH.so", - "digest": { - "algorithm": "md5", - "value": "d70363bbefce4713d8d35b7e90ad7a29" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/MIK.so", - "digest": { - "algorithm": "md5", - "value": "4aa49d12405a127a9da47270ba5606ff" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/NATS-DANO.so", - "digest": { - "algorithm": "md5", - "value": "6a20b31923344f01327a22ef688c9eb0" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/NATS-SEFI.so", - "digest": { - "algorithm": "md5", - "value": "3baba1ea9fc5108037a5e14eb537d0ae" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/PT154.so", - "digest": { - "algorithm": "md5", - "value": "a236dd6d7f9b99c690b2f036cdefe6d4" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/RK1048.so", - "digest": { - "algorithm": "md5", - "value": "8c855d2601ff046197471fbd2f10dd82" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/SAMI-WS2.so", - "digest": { - "algorithm": "md5", - "value": "66905d7fa220d2af63c3e26a89a63eeb" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/SHIFT_JISX0213.so", - "digest": { - "algorithm": "md5", - "value": "f0b70cecee8b7c4110748140742b9c37" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/SJIS.so", - "digest": { - "algorithm": "md5", - "value": "44e114a2b7d8e44e58f5fafa25b84926" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/T.61.so", - "digest": { - "algorithm": "md5", - "value": "a55183ac820113dc011c1d8ecd5af6f1" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/TCVN5712-1.so", - "digest": { - "algorithm": "md5", - "value": "26ee7266f1997857e45615908fbb0cc6" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/TIS-620.so", - "digest": { - "algorithm": "md5", - "value": "6ad834920282dcc1306b69f4ba1fffc3" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/TSCII.so", - "digest": { - "algorithm": "md5", - "value": "71cab59118ad53afa0947ed4788f7dcf" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/UHC.so", - "digest": { - "algorithm": "md5", - "value": "de0eaaf50946dc93b918780fcb549371" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/UNICODE.so", - "digest": { - "algorithm": "md5", - "value": "a724e178b16d63edf3abe6887b00f7d5" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/UTF-16.so", - "digest": { - "algorithm": "md5", - "value": "1fb17679470b709c106d4af7a3821509" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/UTF-32.so", - "digest": { - "algorithm": "md5", - "value": "d903a1ed050e6dae9b5bd44c6a162d20" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/UTF-7.so", - "digest": { - "algorithm": "md5", - "value": "ec4423f727ea292a94f8e651777906bd" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/VISCII.so", - "digest": { - "algorithm": "md5", - "value": "565c3ee1c9a0aa2fb8c45131287e013d" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules", - "digest": { - "algorithm": "md5", - "value": "209041f1c79eb1454025d164353a7194" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", - "digest": { - "algorithm": "md5", - "value": "550af4881c265bde5cd9f487adc0ed37" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.d/gconv-modules-extra.conf", - "digest": { - "algorithm": "md5", - "value": "1f95f96ce0b169c59d2c51cfdec46eab" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/libCNS.so", - "digest": { - "algorithm": "md5", - "value": "07221aca3a387cbf2a9bdd86a7600e22" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/libGB.so", - "digest": { - "algorithm": "md5", - "value": "50286a96ccf6fadf381cb757a67510eb" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/libISOIR165.so", - "digest": { - "algorithm": "md5", - "value": "cba088dec24b9d70d626006f8ceb6825" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/libJIS.so", - "digest": { - "algorithm": "md5", - "value": "361f1efceb7016d033fec03b020b77dd" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/libJISX0213.so", - "digest": { - "algorithm": "md5", - "value": "e3e5f171726bfc3da85cc3fc6aad11a8" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/x86_64-linux-gnu/gconv/libKSC.so", - "digest": { - "algorithm": "md5", - "value": "7661b85d7bce6cdc52f7a55413480788" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libc6/NEWS.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "3d4948fc370f491a86669cad3021ab50" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libc6/NEWS.gz", - "digest": { - "algorithm": "md5", - "value": "fa1eb4461201dd1c0edcf51a145de966" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libc6/README.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "9f384bc94867d6f5b3ac21c215fc88c6" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libc6/README.hesiod.gz", - "digest": { - "algorithm": "md5", - "value": "085c305fdce1731c5eb5684e6d3263a9" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libc6/changelog.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "87cb528c4cace9bd570e8aadf99c5b25" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libc6/changelog.gz", - "digest": { - "algorithm": "md5", - "value": "48d68260ab7331ccff4ff77677d7607d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libc6/copyright", - "digest": { - "algorithm": "md5", - "value": "d848be5c37cd71d76c5a7b9e7e28868a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/lintian/overrides/libc6", - "digest": { - "algorithm": "md5", - "value": "6f478b048f776e458647771a040a4b27" - }, - "isConfigFile": false - } - ] - } - }, - { - "id": "557e13a1cf1998d5", - "name": "libcrypt1", - "version": "1:4.4.33-2", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/libcrypt1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libcrypt1/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/libcrypt1:amd64.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/libcrypt1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:libcrypt1:libcrypt1:1\\:4.4.33-2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/libcrypt1@1:4.4.33-2?arch=amd64\u0026upstream=libxcrypt\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "libcrypt1", - "source": "libxcrypt", - "version": "1:4.4.33-2", - "sourceVersion": "", - "architecture": "amd64", - "maintainer": "Marco d'Itri \u003cmd@linux.it\u003e", - "installedSize": 233, - "depends": [ - "libc6 (\u003e= 2.36)" - ], - "files": [ - { - "path": "/lib/x86_64-linux-gnu/libcrypt.so.1.1.0", - "digest": { - "algorithm": "md5", - "value": "3e0af10f055a1bca472dd63141ed93be" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libcrypt1/changelog.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "01bdf8dbbccca425e317b61e63b7764f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libcrypt1/changelog.gz", - "digest": { - "algorithm": "md5", - "value": "6a85f86f7c809f05907ee4b031db2f03" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libcrypt1/copyright", - "digest": { - "algorithm": "md5", - "value": "8112c930acedacaa33e5d62f5721c526" - }, - "isConfigFile": false - } - ] - } - }, - { - "id": "9e3755175020009e", - "name": "libpam0g", - "version": "1.5.2-6+deb12u1", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/libpam0g:amd64.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/libpam0g:amd64.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [ - { - "value": "BSD-3-clause", - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "BSD-tcp_wrappers", - "spdxExpression": "", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "Beerware", - "spdxExpression": "Beerware", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "GPL", - "spdxExpression": "", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "GPL-2", - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "GPL-2+", - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "GPL-3", - "spdxExpression": "GPL-3.0-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "GPL-3+", - "spdxExpression": "GPL-3.0-or-later", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "LGPL-2", - "spdxExpression": "LGPL-2.0-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "LGPL-2+", - "spdxExpression": "LGPL-2.0-or-later", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - }, - { - "value": "public-domain", - "spdxExpression": "", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpam0g/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpam0g/copyright" - } - ] - } - ], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:libpam0g:libpam0g:1.5.2-6\\+deb12u1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/libpam0g@1.5.2-6+deb12u1?arch=amd64\u0026upstream=pam\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "libpam0g", - "source": "pam", - "version": "1.5.2-6+deb12u1", - "sourceVersion": "", - "architecture": "amd64", - "maintainer": "Sam Hartman \u003chartmans@debian.org\u003e", - "installedSize": 215, - "depends": [ - "libaudit1 (\u003e= 1:2.2.1)", - "libc6 (\u003e= 2.34)", - "debconf (\u003e= 0.5) | debconf-2.0" - ], - "files": [ - { - "path": "/lib/x86_64-linux-gnu/libpam.so.0.85.1", - "digest": { - "algorithm": "md5", - "value": "90851238155e33c238398eda1fa65066" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.1", - "digest": { - "algorithm": "md5", - "value": "aebdc3cd6d796f27af6c6f89fdada7a2" - }, - "isConfigFile": false - }, - { - "path": "/lib/x86_64-linux-gnu/libpamc.so.0.82.1", - "digest": { - "algorithm": "md5", - "value": "de3970f8c06d4dd24e32bd11fa0cee0c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpam0g/Debian-PAM-MiniPolicy.gz", - "digest": { - "algorithm": "md5", - "value": "d51904d08dd25120fdb49aadeff89402" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpam0g/NEWS.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "a8215173a307fce152aa7f888b37d6a8" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpam0g/README", - "digest": { - "algorithm": "md5", - "value": "f7d97991272ef0983e137f33ee224cd2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpam0g/README.Debian", - "digest": { - "algorithm": "md5", - "value": "ce3d89b0d852f9edb5fd439931b955a8" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpam0g/TODO.Debian", - "digest": { - "algorithm": "md5", - "value": "ab72b70830c7c3f493f00a88ebf5ebf4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpam0g/changelog.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "1ee4a3c650485dd67af86591e7330f3e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpam0g/changelog.gz", - "digest": { - "algorithm": "md5", - "value": "0372519249c57b4adfd338702d941309" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpam0g/copyright", - "digest": { - "algorithm": "md5", - "value": "5b1de7fdce831c7675eae7b73440f12e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/lintian/overrides/libpam0g", - "digest": { - "algorithm": "md5", - "value": "a08edec203c3cecebd3feb97c735f46b" - }, - "isConfigFile": false - } - ] - } - }, - { - "id": "ac69ca1032624423", - "name": "libpcre2-8-0", - "version": "10.42-1", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/libpcre2-8-0:amd64.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/libpcre2-8-0:amd64.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [ - { - "value": "BSD-2-clause", - "spdxExpression": "BSD-2-Clause", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright" - } - ] - }, - { - "value": "BSD-3-clause", - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright" - } - ] - }, - { - "value": "BSD-3-clause-Cambridge", - "spdxExpression": "", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright" - } - ] - }, - { - "value": "X11", - "spdxExpression": "X11", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright" - } - ] - }, - { - "value": "public-domain", - "spdxExpression": "", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libpcre2-8-0/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libpcre2-8-0/copyright" - } - ] - } - ], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:libpcre2-8-0:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2-8-0:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2_8_0:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2_8_0:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2-8:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2-8:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2_8:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2_8:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2:libpcre2-8-0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:libpcre2:libpcre2_8_0:10.42-1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/libpcre2-8-0@10.42-1?arch=amd64\u0026upstream=pcre2\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "libpcre2-8-0", - "source": "pcre2", - "version": "10.42-1", - "sourceVersion": "", - "architecture": "amd64", - "maintainer": "Matthew Vernon \u003cmatthew@debian.org\u003e", - "installedSize": 685, - "depends": [ - "libc6 (\u003e= 2.34)" - ], - "files": [ - { - "path": "/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.11.2", - "digest": { - "algorithm": "md5", - "value": "b86e548422155eadaf31c3b77d4738a4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpcre2-8-0/README.Debian", - "digest": { - "algorithm": "md5", - "value": "fbde6fa016e43367c012e30e442e8180" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpcre2-8-0/changelog.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "028326cd74df93b112dd245df87ee770" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpcre2-8-0/changelog.gz", - "digest": { - "algorithm": "md5", - "value": "9f957b073defd3010e8c3e073e2e81f3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libpcre2-8-0/copyright", - "digest": { - "algorithm": "md5", - "value": "ea1070671dcb630b23a0a68ab100f244" - }, - "isConfigFile": false - } - ] - } - }, - { - "id": "2ddd11f048a6a586", - "name": "libselinux1", - "version": "3.4-1+b6", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/libselinux1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libselinux1/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/libselinux1:amd64.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/libselinux1:amd64.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [ - { - "value": "GPL-2", - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libselinux1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libselinux1/copyright" - } - ] - }, - { - "value": "LGPL-2.1", - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libselinux1/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libselinux1/copyright" - } - ] - } - ], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:libselinux1:libselinux1:3.4-1\\+b6:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/libselinux1@3.4-1+b6?arch=amd64\u0026upstream=libselinux@3.4-1\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "libselinux1", - "source": "libselinux", - "version": "3.4-1+b6", - "sourceVersion": "3.4-1", - "architecture": "amd64", - "maintainer": "Debian SELinux maintainers \u003cselinux-devel@lists.alioth.debian.org\u003e", - "installedSize": 199, - "depends": [ - "libc6 (\u003e= 2.34)", - "libpcre2-8-0 (\u003e= 10.22)" - ], - "files": [ - { - "path": "/lib/x86_64-linux-gnu/libselinux.so.1", - "digest": { - "algorithm": "md5", - "value": "4dfcc715a92bbf6fdfbc61b812852690" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libselinux1/changelog.Debian.amd64.gz", - "digest": { - "algorithm": "md5", - "value": "d4187f52ba8370228001e9f26b2e67c0" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libselinux1/changelog.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "a899ad0e2ea5e9499b94103a4769fa8c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libselinux1/copyright", - "digest": { - "algorithm": "md5", - "value": "3f85b5814483a164783defd5a682b44c" - }, - "isConfigFile": false - } - ] - } - }, - { - "id": "77b4823c173e68f5", - "name": "libsemanage2", - "version": "3.4-1+b5", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/libsemanage2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libsemanage2/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/libsemanage2:amd64.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/libsemanage2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [ - { - "value": "GPL", - "spdxExpression": "", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libsemanage2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libsemanage2/copyright" - } - ] - }, - { - "value": "LGPL", - "spdxExpression": "", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libsemanage2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libsemanage2/copyright" - } - ] - } - ], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:libsemanage2:libsemanage2:3.4-1\\+b5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/libsemanage2@3.4-1+b5?arch=amd64\u0026upstream=libsemanage@3.4-1\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "libsemanage2", - "source": "libsemanage", - "version": "3.4-1+b5", - "sourceVersion": "3.4-1", - "architecture": "amd64", - "maintainer": "Debian SELinux maintainers \u003cselinux-devel@lists.alioth.debian.org\u003e", - "installedSize": 297, - "depends": [ - "libsemanage-common (\u003e= 3.4-1)", - "libaudit1 (\u003e= 1:2.2.1)", - "libbz2-1.0", - "libc6 (\u003e= 2.34)", - "libselinux1 (\u003e= 3.4)", - "libsepol2 (\u003e= 3.4)" - ], - "files": [ - { - "path": "/usr/lib/x86_64-linux-gnu/libsemanage.so.2", - "digest": { - "algorithm": "md5", - "value": "2ea362321307c0161f295ab61c0f63e2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libsemanage2/changelog.Debian.amd64.gz", - "digest": { - "algorithm": "md5", - "value": "fc63278a03d71f983754ed6b34acad87" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libsemanage2/changelog.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "585e743120f17cdc8dcf2269f51642f8" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libsemanage2/copyright", - "digest": { - "algorithm": "md5", - "value": "4cf7d892a26f8b8a190c4e10aebcc241" - }, - "isConfigFile": false - } - ] - } - }, - { - "id": "8b37b2b8e2fce91c", - "name": "libsepol2", - "version": "3.4-2.1", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libsepol2/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/libsepol2:amd64.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/libsepol2:amd64.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [ - { - "value": "GPL-2", - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libsepol2/copyright" - } - ] - }, - { - "value": "GPL-2+", - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libsepol2/copyright" - } - ] - }, - { - "value": "LGPL-2.1", - "spdxExpression": "LGPL-2.1-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libsepol2/copyright" - } - ] - }, - { - "value": "LGPL-2.1+", - "spdxExpression": "LGPL-2.1-or-later", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libsepol2/copyright" - } - ] - }, - { - "value": "Zlib", - "spdxExpression": "Zlib", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/libsepol2/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/libsepol2/copyright" - } - ] - } - ], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:libsepol2:libsepol2:3.4-2.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/libsepol2@3.4-2.1?arch=amd64\u0026upstream=libsepol\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "libsepol2", - "source": "libsepol", - "version": "3.4-2.1", - "sourceVersion": "", - "architecture": "amd64", - "maintainer": "Debian SELinux maintainers \u003cselinux-devel@lists.alioth.debian.org\u003e", - "installedSize": 775, - "depends": [ - "libc6 (\u003e= 2.33)" - ], - "files": [ - { - "path": "/lib/x86_64-linux-gnu/libsepol.so.2", - "digest": { - "algorithm": "md5", - "value": "626d5fbd48db52e414a6cd91a4f795df" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libsepol2/changelog.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "04bd38f6bb3233045c01ce88c31cfcf4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/libsepol2/copyright", - "digest": { - "algorithm": "md5", - "value": "568792a9303c6249aea01a640cd4d1bb" - }, - "isConfigFile": false - } - ] - } - }, - { - "id": "25b93d8479d03922", - "name": "passwd", - "version": "1:4.13+dfsg1-1+b1", - "type": "deb", - "foundBy": "dpkg-db-cataloger", - "locations": [ - { - "path": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/passwd/copyright", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/passwd.conffiles", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/passwd.conffiles", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/info/passwd.md5sums", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/var/lib/dpkg/info/passwd.md5sums", - "annotations": { - "evidence": "supporting" - } - }, - { - "path": "/var/lib/dpkg/status", - "layerID": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "accessPath": "/var/lib/dpkg/status", - "annotations": { - "evidence": "primary" - } - } - ], - "licenses": [ - { - "value": "BSD-3-clause", - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/passwd/copyright" - } - ] - }, - { - "value": "GPL-1", - "spdxExpression": "GPL-1.0-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/passwd/copyright" - } - ] - }, - { - "value": "GPL-2", - "spdxExpression": "GPL-2.0-only", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/passwd/copyright" - } - ] - }, - { - "value": "GPL-2+", - "spdxExpression": "GPL-2.0-or-later", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/passwd/copyright" - } - ] - }, - { - "value": "public-domain", - "spdxExpression": "", - "type": "declared", - "urls": [], - "locations": [ - { - "path": "/usr/share/doc/passwd/copyright", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "accessPath": "/usr/share/doc/passwd/copyright" - } - ] - } - ], - "language": "", - "cpes": [ - { - "cpe": "cpe:2.3:a:passwd:passwd:1\\:4.13\\+dfsg1-1\\+b1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "purl": "pkg:deb/debian/passwd@1:4.13+dfsg1-1+b1?arch=amd64\u0026upstream=shadow@1:4.13+dfsg1-1\u0026distro=debian-12", - "metadataType": "dpkg-db-entry", - "metadata": { - "package": "passwd", - "source": "shadow", - "version": "1:4.13+dfsg1-1+b1", - "sourceVersion": "1:4.13+dfsg1-1", - "architecture": "amd64", - "maintainer": "Shadow package maintainers \u003cpkg-shadow-devel@lists.alioth.debian.org\u003e", - "installedSize": 2832, - "depends": [ - "libaudit1 (\u003e= 1:2.2.1)", - "libc6 (\u003e= 2.36)", - "libcrypt1 (\u003e= 1:4.1.0)", - "libpam0g (\u003e= 0.99.7.1)", - "libselinux1 (\u003e= 3.1~)", - "libsemanage2 (\u003e= 2.0.32)", - "libpam-modules" - ], - "files": [ - { - "path": "/etc/default/useradd", - "digest": { - "algorithm": "md5", - "value": "e03965d134c26725cbc51a57969da6c9" - }, - "isConfigFile": true - }, - { - "path": "/etc/pam.d/chfn", - "digest": { - "algorithm": "md5", - "value": "4d466e00a348ba426130664d795e8afa" - }, - "isConfigFile": true - }, - { - "path": "/etc/pam.d/chpasswd", - "digest": { - "algorithm": "md5", - "value": "9900720564cb4ee98b7da29e2d183cb2" - }, - "isConfigFile": true - }, - { - "path": "/etc/pam.d/chsh", - "digest": { - "algorithm": "md5", - "value": "a6e9b589e90009334ffd030d819290a6" - }, - "isConfigFile": true - }, - { - "path": "/etc/pam.d/newusers", - "digest": { - "algorithm": "md5", - "value": "1454e29bfa9f2a10836563e76936cea5" - }, - "isConfigFile": true - }, - { - "path": "/etc/pam.d/passwd", - "digest": { - "algorithm": "md5", - "value": "eaf2ad85b5ccd06cceb19a3e75f40c63" - }, - "isConfigFile": true - }, - { - "path": "/sbin/shadowconfig", - "digest": { - "algorithm": "md5", - "value": "0f8be4e3d176984b35707535e5cacdeb" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/chage", - "digest": { - "algorithm": "md5", - "value": "ec5f3c45b4aeb65f98a7ec2cdefb6ac2" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/chfn", - "digest": { - "algorithm": "md5", - "value": "39d26877651ea21f48e30673ab69adec" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/chsh", - "digest": { - "algorithm": "md5", - "value": "a118268759f8e409bb986c32cc6e642a" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/expiry", - "digest": { - "algorithm": "md5", - "value": "4f2100d5afa02fe233d59cd395c696b9" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/gpasswd", - "digest": { - "algorithm": "md5", - "value": "6845cd9c39b8db20a0c08414a7953819" - }, - "isConfigFile": false - }, - { - "path": "/usr/bin/passwd", - "digest": { - "algorithm": "md5", - "value": "77d8b4bf54dba9d77333be091c519435" - }, - "isConfigFile": false - }, - { - "path": "/usr/lib/tmpfiles.d/passwd.conf", - "digest": { - "algorithm": "md5", - "value": "fd813ae6329b77cb59bac8961e613bf0" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/chgpasswd", - "digest": { - "algorithm": "md5", - "value": "59d09267e825d5c644905725b70e49ce" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/chpasswd", - "digest": { - "algorithm": "md5", - "value": "9f3ad18148e962ef9ea09c38ffcd336c" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/cppw", - "digest": { - "algorithm": "md5", - "value": "8f46816961e6b1867efbe6c36e8e6aa8" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/groupadd", - "digest": { - "algorithm": "md5", - "value": "a9485e3cecccb8c89ec854ae12460bc0" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/groupdel", - "digest": { - "algorithm": "md5", - "value": "cf6f65a3c64eb276c029e1b942fc2e56" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/groupmems", - "digest": { - "algorithm": "md5", - "value": "1a798eb2355b9c7eb6e4ae13c0137555" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/groupmod", - "digest": { - "algorithm": "md5", - "value": "128d78553c0af876e63b177e2e7269d6" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/grpck", - "digest": { - "algorithm": "md5", - "value": "35ce100cdce3d04fc5c70620fb4c5fa9" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/grpconv", - "digest": { - "algorithm": "md5", - "value": "d5adbe0473b0e250f6c9ce461b52d614" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/grpunconv", - "digest": { - "algorithm": "md5", - "value": "79fa792abbacd99df5dc9cc1d8d66bdd" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/newusers", - "digest": { - "algorithm": "md5", - "value": "60c5fe403095d9bd0ff8dad5e2a99fa2" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/pwck", - "digest": { - "algorithm": "md5", - "value": "83f41d49b0666f2940ad7da217ca8095" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/pwconv", - "digest": { - "algorithm": "md5", - "value": "29b0c834348c9bec6bfdeb8197d3b22d" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/pwunconv", - "digest": { - "algorithm": "md5", - "value": "62406f406d842a9abddc0694303c2a6e" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/useradd", - "digest": { - "algorithm": "md5", - "value": "6bc7d2db18a2ee79984a10d608e2aa8d" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/userdel", - "digest": { - "algorithm": "md5", - "value": "6124a5adad5d65cc033678ead26ad2f1" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/usermod", - "digest": { - "algorithm": "md5", - "value": "79b65b3c8115734dbb4b45faefd3adad" - }, - "isConfigFile": false - }, - { - "path": "/usr/sbin/vipw", - "digest": { - "algorithm": "md5", - "value": "a28a4dac67b29c8523e8b777ac41c14c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/passwd/NEWS.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "ac3f76f2fa4d5af0fd55c8a7fb4550c7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/passwd/README.Debian", - "digest": { - "algorithm": "md5", - "value": "217e2a968603dbdd1bfe81051076f132" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/passwd/TODO.Debian", - "digest": { - "algorithm": "md5", - "value": "02916812cbd2183a26d75b8645bea7b7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/passwd/changelog.Debian.amd64.gz", - "digest": { - "algorithm": "md5", - "value": "e4343bc1c35d7b374ef4709b6e45cfb4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/passwd/changelog.Debian.gz", - "digest": { - "algorithm": "md5", - "value": "0c9bd2c5e71cada5c4ce66160e91ec74" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/passwd/changelog.gz", - "digest": { - "algorithm": "md5", - "value": "76acb0f2c68a79b867f2ae5f3d7aac1f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/passwd/copyright", - "digest": { - "algorithm": "md5", - "value": "b421f2c7316ef9958c2d87a76a434119" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/doc/passwd/examples/passwd.expire.cron", - "digest": { - "algorithm": "md5", - "value": "42b6b6d065ae2c959e885fcfa47a9887" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/lintian/overrides/passwd", - "digest": { - "algorithm": "md5", - "value": "7941e9f86fe7a6bb1a88f1f3e7279d75" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "32f282e077a7b6be3ae89e7de510e221" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "06dcfb2131a2bf6faaea7c3fa96c9686" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "af948c95629a44c155adf8b04206fb35" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "7ddfd4899afd2ca81e849b7bd39947a6" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "bc5d5f7c82ec707c4d1fd4f4b07dfe7b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "fc64fb093ab0ca6bb3cf0f757398bdf2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "eb7bf5ef0bfffa1c638509bc4702e1e2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "86e218f9995d85ab2679fb8ea0a7e71f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "622261037661c45f3b7ae00e7ee91d8e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/cs/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "b417d08e085b5f8976e8506d9f2b0a1f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/da/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "33d34c2d159abc15eb25e11d219149f3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/da/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "306698b3ef130e29068b6a516c037095" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/da/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "57520bfa17e3949a09bc87b454b57d12" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/da/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "d08cfd85664c867c33241dd7193e9558" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "634fbd3670624118df654bfc2bb02abf" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "942ca7cca286a41c172ca7ce70879245" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "240eb983993014d49f77ae1313c973b4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "ecb519f84672cd9edb3c65bd4ba51e9c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "7aee9a83d85ce5a06737fbec1d456238" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "aeb08ff216c81689c4f2c72120e996d5" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "2085566cd876414f97c4762dab1e5dbe" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "bb72d2030920ae3781f874cfc86e6f30" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "cd4601284d0dc413b05f9fbf06c902dd" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/chgpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "1cde30677a86bd9b1a8c48c19e68e62b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/chpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "8619ab3a2b0cc395e8d9714c11ab8538" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "b3eed4bd13adf246dc4c167d2734c69c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "ef90fbb4dee1a8d23dc41926ebcace64" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/groupmems.8.gz", - "digest": { - "algorithm": "md5", - "value": "a63d65872ef9c196faa3627f0e30b6b0" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "14e9fd52994f62ceea93b48e652ae98f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "a63c02cd47bfb595986b0f7ba1365dfb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/newusers.8.gz", - "digest": { - "algorithm": "md5", - "value": "32fdc312279f1a833fbf8b8ef09ff12f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/pwck.8.gz", - "digest": { - "algorithm": "md5", - "value": "07b622bf59e78fc144306211a25c09ff" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/pwconv.8.gz", - "digest": { - "algorithm": "md5", - "value": "288d82b72c42cea8124b4fae8a8465d0" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "a86b41a57d50c95e533edcd6fe75cd83" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "c84d7b20adce396ca85be1a4b894f0a4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "67464e2ae57476c4866f3cd13ccffaec" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/de/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "6d6dedaec6e02773b7d8f49d5d507b91" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fi/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "cdd7f1e7de0c99b3ab83c6eeb5141f7c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fi/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "6d97c554084e4ece8ff23fcea2f8d9e3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "765669d9486e5253ca0ca8ba28791b6a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "cf81f1d8a47a97f770a5633ec684f041" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "36db902f0dc7d9bc9cd8fb4afd06d417" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "e129993e0a86ded2f5ff56ce37c12a3a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "4c9e9ef3df2b9daf3fa8d3a28fa7a53e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "981b229e4995ce7b53cccb53b87f318a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "75f7810357545f3af5603d0c1d6e826a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "a273b379c51dbb0a99528c62482a2aeb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "73077cda08a1595d09a34fdd4d9b6742" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man5/subgid.5.gz", - "digest": { - "algorithm": "md5", - "value": "82fa40d5a06ffd240c253fe0af6a8379" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man5/subuid.5.gz", - "digest": { - "algorithm": "md5", - "value": "f5bdd17437c9fa590302759f58c4f1cb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/chgpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "f7e03a53b183f7024e2647de185d2d3d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/chpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "8a07ffcfd64c1eaee5df69a459fb6fe6" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "d320e2e1d7411383e7f8b9effcd9fbd9" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "27396ea2e6062ec800c0df05940a081d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/groupmems.8.gz", - "digest": { - "algorithm": "md5", - "value": "3c60141ec5c5d0a1234bdf9825d1112d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "023122ad1a1ff3ddd0f516b34f8d03fa" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "8d47e6eb5122f00ce676718c8fe7b2e4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/newusers.8.gz", - "digest": { - "algorithm": "md5", - "value": "56ababd2d1576474d434dcc11b9ff89f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/pwck.8.gz", - "digest": { - "algorithm": "md5", - "value": "b092e2022dbaeeed9357bc382aa87008" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/pwconv.8.gz", - "digest": { - "algorithm": "md5", - "value": "401d0c5fa6aed7923e231c979e05166f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "7d2d75827464bbdf72f484109e7ff188" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "4a0f6e9b78db44b98e867217a1592380" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "46c09dae7f5d129a0c43cd8bd4861175" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/fr/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "1b14147887539d7819f18e54caa2802a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/hu/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "cd9577f2fa319ef721658da34ca2229d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/hu/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "cc09760fcf15c4f9aa4d71ba271dd158" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/hu/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "3659573dc5712e91b49d83dba10e828b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/hu/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "ef1cf0a6ce799417645ddbabb7b74801" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/id/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "130b2d425143d1cfd5f1a596812a26a0" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/id/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "2d4ee7afb32b617247f1da0f57257f5c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "a60a40f7cc34321391b66af3d9c32859" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "dcd5318d8c418363347fcc1d03301b55" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "34364d8c258d6740002f53b7a8aa4a92" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "f1c6b55401e22537c3004e1fe70b3ee7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "a1cec3b77fcfc3c5ababacc7a6c35ec7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "75fc8389e47a11f2a9a41fb377cae89a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "ebafda77783f22a73db6c68e782a09fc" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "7376a5443f195add09757c8dfdb91f59" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "1d7d3facf3c985704cc6a1ba933cada5" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/chgpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "9a8b6e802f14c4a316a318e61ef9f872" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/chpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "4a85b390d0f0a105c6c7c94b9b1f5c42" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "6a5d0f24f4d7206f057a0499134fc4ae" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "fe8c3c19a00622847b73f3507137f803" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/groupmems.8.gz", - "digest": { - "algorithm": "md5", - "value": "d390f10e538e849aad9f1e9d1e90ac84" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "a3d76237915e3d607a5a928ff492e236" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "dbf09f2c946a721c50ef6f7e7f394b91" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/newusers.8.gz", - "digest": { - "algorithm": "md5", - "value": "eb5124a9445f7ccf21872f694ef99e11" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/pwck.8.gz", - "digest": { - "algorithm": "md5", - "value": "d651f66a9e508cf030b67a57b2782142" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/pwconv.8.gz", - "digest": { - "algorithm": "md5", - "value": "1f62021c20426b5c4d6b77bd04141751" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "11bb043330e520bbcd21e6bb71acd505" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "e9a6646a2de8d3ded74a841c41d1ba7d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "f21f3f31d10c2b6503fb29e3b87cd42c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/it/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "df1cd92a6ae4d7d1cc2170faf397cbba" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "45b880408d37fce5b19b037a961fc43b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "6acb65b591cdbbaebbd38adee6bfb094" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "837d25ecc72d24c6c873c9befd6e9a49" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "472359d8d14861e36962108d9bd8a09f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "9d5900b4d7744acccd25f9236e13eb31" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "b710a8e94b39e14003c9136c1b17a764" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "1a66d6ec9256812d21b1516b16b52115" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "28e4a9b0f5dae166aa69485fee46687f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/chpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "97bbd349c936092d3e258105d17fb488" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "828c0b21f9294e6d24149f4f2b7239af" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "7cf8d0a53eabee05d0415d11cbf77b33" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "714f84f5083bb5f336b3233e1b894117" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "41b6d757bfa7da2df6857b14c2c1f9b4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/newusers.8.gz", - "digest": { - "algorithm": "md5", - "value": "2616c9ce3abc19050aee6239219e2f74" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/pwck.8.gz", - "digest": { - "algorithm": "md5", - "value": "039e3645601e82d946efc039762ecb5f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/pwconv.8.gz", - "digest": { - "algorithm": "md5", - "value": "f86dfb5e2e4e79511a13d58c1d3f15f6" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "a8b5e68fa9ba2929d3c8f5343e5b44ae" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "a5db7e21ff97d5cfc2762aeefc06bfe8" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "6f59ac26225899fd9ca4048b300d8be7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ja/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "d1cc08014e0a78d3eaca83a177d4b344" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ko/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "ba9e918a0d165cc3be4240be8feec4a1" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ko/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "e2397bd1fff79c64caa7ee856b3828ed" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ko/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "14ef2fe516039c1dd91dc214569e504a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ko/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "a15eda23f100c2da01d29cd5319600f3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "9793507e97a7c610e97a520369805bed" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "1ec16bf7f3499cf9164239a185e71a97" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "7fac345049102aed80033504c4e5984b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "7c8b2e76355a99f7bbff22cc9461f4ec" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "6227d8f0d1876a5052ba9e3da43b7f81" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "5d967da42b1fc349ab18fb1a330f9169" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "4a7ca8e7bbca2b9f9e6bf084c4b6e6cf" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "3d0637a4aa80e363fb8b646fb630257b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "f9d9baefa02ac06290631ba0d1c331c1" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man5/subgid.5.gz", - "digest": { - "algorithm": "md5", - "value": "1110989122184a65f815875b9547084d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man5/subuid.5.gz", - "digest": { - "algorithm": "md5", - "value": "65a2e7f3e72d07f2617ceb73ece63539" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/chgpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "6b76de5ecef552b0f5b5e39ad52f25d2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/chpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "265c965f7337768deb76db779c348648" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/cppw.8.gz", - "digest": { - "algorithm": "md5", - "value": "2add2075b2a5787359502639c5afeddf" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "2f7b4cf40993c57bf81eea108bfc9173" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "e99235ba58cb7f0792636fbc45f33d3a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/groupmems.8.gz", - "digest": { - "algorithm": "md5", - "value": "3f7f04e5a174204c28eee088a780162e" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "d09244744fd32531bfc4ef5f7aa508c9" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "8c0bf5a3bb526eed6efad149f1284761" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/newusers.8.gz", - "digest": { - "algorithm": "md5", - "value": "62b73fae893f8537cfc555f799a9a5f3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/pwck.8.gz", - "digest": { - "algorithm": "md5", - "value": "484bce86e53b5745d71c69d062e85468" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/pwconv.8.gz", - "digest": { - "algorithm": "md5", - "value": "b6ad9c239d91492e04ccffa1094f2f29" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "e07c384dee27f9a382a7a4a557ea97d8" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "a7baa32d99271afa437e949e50f991bf" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "3870a36fe8ee00a62205da3994209661" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "01d79b5443b76029869d942fe8d1cd87" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "3d6e053dd852b41b9b00839083336756" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "ab584dcae4c287bb72a6f9e83bb69338" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "9587e4a29e9a97cd9e65e264a59550d8" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "ec9c47b6a775f4e6bbfa381ad22832bf" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "fa06f4b2efc876ac1b2936a3f5986711" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man8/groupmems.8.gz", - "digest": { - "algorithm": "md5", - "value": "11a23b4af678d213c2777c8a78775e67" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "cc02d4b63425f93ffe1f9b64d83b6a0d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "4c3128338e8ecb29702649f8cc6bb7e7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "94713b611cd87ff9200fe6c632a22c4f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "1ff13054a1661ee2fc383ebce6d5f058" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pl/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "5112926fba91aaa7b526368f817ba1ed" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt_BR/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "a5fccd5124a7b11e036642e1c996c1f6" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt_BR/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "ed2dbc12df8c8e24574b08e705ae38fb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt_BR/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "e7ac9ee5d0dabbd42f0f05a42fbeb864" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt_BR/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "f0a0c618a38733263ab1ee62b8cf7b90" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt_BR/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "31d9d92e0fddbde0f4b8b4a4e3e36a0a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/pt_BR/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "53d7820c9890a8d4df44b075428b16ce" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "1355888f94e6a9867e8f86afc881acad" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "1ec9f5674959a14971a59dd5bc617fb4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "0a7526fe6c1639de8eb577d7ea4fced9" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "ca382dafc4797d7958ee91229368bc41" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "07ac4e7eadec9e55cec7207711b2bcb4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "df660edc49658b966dd84838c1b1f1a1" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "b93128498a6a2963ea398ac71119cbe5" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "7f9f6a8dddc735baa61bd8f595da7ded" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "cb510b9343045eb9aaaf8b0f2ff5e914" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/chgpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "287edecc1c91a1518115ed64cbc55058" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/chpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "a3fa2005b31e68d8c423f4d1168d18ac" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "b799a228b4cb58be39629b03bdf7a946" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "b7bab6dde7bcd475d1ea773e19bbeaab" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/groupmems.8.gz", - "digest": { - "algorithm": "md5", - "value": "70c55b8a949bf6c445a440282f6f3fb7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "998404043d4967abda441f4fc3f2f2ad" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "9dfd1b97cd960aaee16755571c74d63f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/newusers.8.gz", - "digest": { - "algorithm": "md5", - "value": "77c7d7a15528b4c858c146ca14d44f7a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/pwck.8.gz", - "digest": { - "algorithm": "md5", - "value": "2ccf33813f4c13f75b359418258ffbcd" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/pwconv.8.gz", - "digest": { - "algorithm": "md5", - "value": "019782c566ce40f723ceae0b78b31d52" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "f5528ce23aa3a7da7294d794af6769e6" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "1e9a1b2866d9c180f5f957d18a3c822b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "1c0b53d07aa3bef8e22441e3843f06ec" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/ru/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "b46d0f9de78f875c3f2034cbfa9f39aa" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "9fc712bbabf90fde2d115a4f4ca2260a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "34703d239e7ac136de968e41eaf4e794" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "5aacb4884e8c24bfdd4c0c9b5025d906" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "c0b935efea69603cc13ad7cc67ee42b1" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "365fee4faf3b09ed1015ea58ec96814c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "c7e59befb6d6af51bb6c52a6355efef9" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "32b606892497dd25e88e12531c13ffd7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "6dca9024da8e7cc26a2afbc5b2992883" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man8/groupmems.8.gz", - "digest": { - "algorithm": "md5", - "value": "427a91c2156d02e8b163a00f3f0870b4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "9a27e9e77cc34169fd71892516dad855" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "f4ffddc6a89058ba9be523e50734aefb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man8/pwck.8.gz", - "digest": { - "algorithm": "md5", - "value": "5ccc79683c74714caa050271a5fa2376" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "8b2662bd4f89f7da4a100a87ff0d4448" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/sv/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "8d657c6387d49c9445fdc69bd64fdb56" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "db5b0e9acd62b9867ab71abc240a671b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "092b6d994a843c2f53c5b416116c02d2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "e8230102e7eadc46bd59683ecdfa4950" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "2428e897e4bbb8a248d4bccececd480f" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "8b0bf0ca13494b6a05fd818d7acb5a50" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "c1120d1e238cbe8af71454cad431abe2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "8971051cfe5cb3d5ae022466114974b3" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "80130b9dab895851c19d8162dc11bbf7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "3ea0c9eff706063a3f56cf1184827e7a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "3f007966653fde5e170135e8014f6218" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/tr/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "cb51a6be272c85ea04a22300d86bc32a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "5bb21fb2222dad4116bfe2d1f1026bc2" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "2c86432bc9e87a274dfd32aa7d71714b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "07c30738d49deede573526ef353d775b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "b816cf6106ff5d817e1bda887ab0a860" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "d63a6dd770ec46798a2f935a89655028" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "e1a0fb0cfef609acfbbebe2dde395b2b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "f4f93e732c8211904c2891b0429ab302" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "882359a454c2547a3d28468ad72c9fcb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "159cef686c3ecacdfdb44723f5d1aeaa" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/chgpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "a0088d8ff5e2a22682a9f23813803f1d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/chpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "e9c3c29dc491b59a571a73e4e7cb4f44" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "a944cebb311e8a8bfd55499663364571" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "d5d23cdd47c96e1bd626e2f59babb7af" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/groupmems.8.gz", - "digest": { - "algorithm": "md5", - "value": "a0f09ae73fb908625ee0b834c190f5bc" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "a72c27302e6dfde75e389f3936250155" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "b35108b11f95a97410b7bf551e831641" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/newusers.8.gz", - "digest": { - "algorithm": "md5", - "value": "748d7bf1d187ea58b538493cdac31b65" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/pwck.8.gz", - "digest": { - "algorithm": "md5", - "value": "30fe33ee7f073161c2a0cf80b0a2d918" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/pwconv.8.gz", - "digest": { - "algorithm": "md5", - "value": "c2252b0a50ff88a8f9b817a5b1585bf7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "f8ae4e19879f59cf7585633e1a3443d9" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "ce322c468a940399165b0594dea898ab" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "c61c75c4e1b97e20b4ced99c78df5423" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/uk/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "b9540b32241cd72702027c7feb7d6eef" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man1/chage.1.gz", - "digest": { - "algorithm": "md5", - "value": "b34042fb0919af0be8d4d453daf85c6d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "0ee8ad9ffe9c0bb99f8af72741d58b7c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "8230100e63311775f1a5283959321d13" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man1/expiry.1.gz", - "digest": { - "algorithm": "md5", - "value": "cf8b5a6ecb2b9c82243aed6c211ff9ae" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man1/gpasswd.1.gz", - "digest": { - "algorithm": "md5", - "value": "5550770446437201519fd872c955849d" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man1/passwd.1.gz", - "digest": { - "algorithm": "md5", - "value": "20e8ac004ad1e4278962bd6c24c13ecf" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man5/gshadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "68a102858e2ea3b7401c9be3c3e3aa2c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "0d1a84dfa0b5db9cf2f934f20c3343d7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man5/shadow.5.gz", - "digest": { - "algorithm": "md5", - "value": "27eb25c02b416aa7c0a9dc0d5bce3c40" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/chgpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "dc2c5a31329c81bea924ca51e1071784" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/chpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "e238ef7051b6be2ea2373cd8a62be890" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "af08b026ce0c498698d90730d3842520" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "918f1ae58cdf9f9e3fc75ad08f6c19b5" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/groupmems.8.gz", - "digest": { - "algorithm": "md5", - "value": "0f07d1ef369814ee3d0b3e795915b1e6" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "11362910853b018865dd92efef6835a0" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/grpck.8.gz", - "digest": { - "algorithm": "md5", - "value": "59a2cd3686bbb5f5f5f47e223faba511" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/newusers.8.gz", - "digest": { - "algorithm": "md5", - "value": "16d8c776c3bfd53e21344d3017d0a25c" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/pwck.8.gz", - "digest": { - "algorithm": "md5", - "value": "0f969b139f4166149d2cb7f51e6c7feb" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/pwconv.8.gz", - "digest": { - "algorithm": "md5", - "value": "d6cb6d744591e9379576fdd2d31f0a59" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "e0ddbf29f2b83e6bdfb1fe834981ffe4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "f4c5916599cf3da0cd95d033dd79a5ca" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "fb08bf0194abbf43e099668b1fc04a21" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_CN/man8/vipw.8.gz", - "digest": { - "algorithm": "md5", - "value": "d7a9495eeda809af79b9c0fc6e16a567" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man1/chfn.1.gz", - "digest": { - "algorithm": "md5", - "value": "71d394a444e1bae52ccd1c792f8c2621" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man1/chsh.1.gz", - "digest": { - "algorithm": "md5", - "value": "f82136c3c46150671bec51ac9abc73cd" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man5/passwd.5.gz", - "digest": { - "algorithm": "md5", - "value": "9b60e3cfec664af17c84a480a69baea7" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man8/chpasswd.8.gz", - "digest": { - "algorithm": "md5", - "value": "319ba0e21723fe95449dc2438e3e99d4" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man8/groupadd.8.gz", - "digest": { - "algorithm": "md5", - "value": "b46ea9382a5033d7df9455078d0a483a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man8/groupdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "0bd97c379d4d95974b2ad6345dca423b" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man8/groupmod.8.gz", - "digest": { - "algorithm": "md5", - "value": "a8395accf3ef680940c289e5b094f407" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man8/useradd.8.gz", - "digest": { - "algorithm": "md5", - "value": "04517ca2cb6a5791b2fffeacbdaaff3a" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man8/userdel.8.gz", - "digest": { - "algorithm": "md5", - "value": "2efacf471eed788ce8e970a037824bde" - }, - "isConfigFile": false - }, - { - "path": "/usr/share/man/zh_TW/man8/usermod.8.gz", - "digest": { - "algorithm": "md5", - "value": "e2afaad95d754384a370c781e82493d7" - }, - "isConfigFile": false - } - ] - } - } - ], - "artifactRelationships": [ - { - "parent": "8a49897e59f569c2", - "child": "1175051625ea3e46", - "type": "contains" - }, - { - "parent": "25b93d8479d03922", - "child": "8a49897e59f569c2", - "type": "dependency-of" - }, - { - "parent": "2ddd11f048a6a586", - "child": "25b93d8479d03922", - "type": "dependency-of" - }, - { - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "child": "25b93d8479d03922", - "type": "contains" - }, - { - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "child": "2ddd11f048a6a586", - "type": "contains" - }, - { - "parent": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "child": "8a49897e59f569c2", - "type": "contains" - }, - { - "parent": "557e13a1cf1998d5", - "child": "25b93d8479d03922", - "type": "dependency-of" - }, - { - "parent": "77b4823c173e68f5", - "child": "25b93d8479d03922", - "type": "dependency-of" - }, - { - "parent": "8875eb673276ee9a", - "child": "25b93d8479d03922", - "type": "dependency-of" - }, - { - "parent": "8875eb673276ee9a", - "child": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "parent": "8875eb673276ee9a", - "child": "557e13a1cf1998d5", - "type": "dependency-of" - }, - { - "parent": "8875eb673276ee9a", - "child": "77b4823c173e68f5", - "type": "dependency-of" - }, - { - "parent": "8b37b2b8e2fce91c", - "child": "77b4823c173e68f5", - "type": "dependency-of" - }, - { - "parent": "9e3755175020009e", - "child": "25b93d8479d03922", - "type": "dependency-of" - }, - { - "parent": "ac69ca1032624423", - "child": "2ddd11f048a6a586", - "type": "dependency-of" - }, - { - "parent": "cd568950fffd83d7", - "child": "9e3755175020009e", - "type": "dependency-of" - }, - { - "parent": "8a49897e59f569c2", - "child": "2ef1ed324902d010", - "type": "contains" - } - ], - "files": [ - { - "id": "1175051625ea3e46", - "location": { - "path": "/usr/sbin/deluser", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061" - }, - "digests": [ - { - "algorithm": "sha256", - "value": "79352ddc341d192b8a9f50a8266229179dbad37618126fd4fc741e32aec2145b" - } - ] - }, - { - "id": "2ef1ed324902d010", - "location": { - "path": "/etc/deluser.conf", - "layerID": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061" - }, - "digests": [ - { - "algorithm": "sha256", - "value": "348c114422e9e28c8b24775cf39e785d02600445c0ac1c38fe7976c377fba6e5" - } - ] - } - ], - "source": { - "id": "4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "name": "docker.io/library/nginx", - "version": "sha256:ed6d2c43c8fbcd3eaa44c9dab6d94cb346234476230dc1681227aa72d07181ee", - "type": "image", - "metadata": { - "userInput": "docker.io/library/nginx@sha256:ed6d2c43c8fbcd3eaa44c9dab6d94cb346234476230dc1681227aa72d07181ee", - "imageID": "sha256:7383c266ef252ad70806f3072ee8e63d2a16d1e6bafa6146a2da867fc7c41759", - "manifestDigest": "sha256:4d5a113fd08c4dd57aae6870942f8ab4a7d5fd1594b9749c4ae1b505cfd1e7d8", - "mediaType": "application/vnd.oci.image.manifest.v1+json", - "tags": [], - "imageSize": 187589394, - "layers": [ - { - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "digest": "sha256:52ec5a4316fadc09a4a51f82b8d7b66ead0d71bea4f75e81e25b4094c4219061", - "size": 74820989 - }, - { - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "digest": "sha256:bbde741e108b834eb4caf4f0e50b981f1d58f8cd5a6745e58883caf620760d42", - "size": 112756687 - }, - { - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "digest": "sha256:b09347a1aec640791590a3a15e6f121b47540a8c8725447f4546a2527758d970", - "size": 1620 - }, - { - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "digest": "sha256:1db2242fc1fa1aac165a4eeb1d11b84fbc6673969c5d821d187dd3e7e522c130", - "size": 2125 - }, - { - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "digest": "sha256:e6380a7057a5005900c5c8a233e36ab69dd9f956045ca8af19517fee59ce119f", - "size": 336 - }, - { - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "digest": "sha256:175aa66db4cc8c70a8caa338a634eee3d4fd94e67566c2c46aee02621041041a", - "size": 3018 - }, - { - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "digest": "sha256:9fd54926bcaed3150c6fb01f8d47dfe28a1093c259f41626852c27d3601fec21", - "size": 4619 - } - ], - "manifest": "ewogICJzY2hlbWFWZXJzaW9uIjogMiwKICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubWFuaWZlc3QudjEranNvbiIsCiAgImNvbmZpZyI6IHsKICAgICJtZWRpYVR5cGUiOiAiYXBwbGljYXRpb24vdm5kLm9jaS5pbWFnZS5jb25maWcudjEranNvbiIsCiAgICAiZGlnZXN0IjogInNoYTI1Njo3MzgzYzI2NmVmMjUyYWQ3MDgwNmYzMDcyZWU4ZTYzZDJhMTZkMWU2YmFmYTYxNDZhMmRhODY3ZmM3YzQxNzU5IiwKICAgICJzaXplIjogNzE1NQogIH0sCiAgImxheWVycyI6IFsKICAgIHsKICAgICAgIm1lZGlhVHlwZSI6ICJhcHBsaWNhdGlvbi92bmQub2NpLmltYWdlLmxheWVyLnYxLnRhcitnemlwIiwKICAgICAgImRpZ2VzdCI6ICJzaGEyNTY6YjBhMGNmODMwYjEyNDUzYjdlMTUzNTlhODA0MjE1YTdiY2NjZDM3ODhlMmJjZWNmZjJhMDNhZjY0YmJkNGRmNyIsCiAgICAgICJzaXplIjogMjkxNTA0NzkKICAgIH0sCiAgICB7CiAgICAgICJtZWRpYVR5cGUiOiAiYXBwbGljYXRpb24vdm5kLm9jaS5pbWFnZS5sYXllci52MS50YXIrZ3ppcCIsCiAgICAgICJkaWdlc3QiOiAic2hhMjU2OjhkZGIxZTZjZGYzNDFhY2EwMjhmYjZmYzRjYmQ5YzJiYTllOWExY2FlMWIxODZhNTg3ZjJkZmZlMzNjMGQ1ODciLAogICAgICAic2l6ZSI6IDQxODE3MDc2CiAgICB9LAogICAgewogICAgICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubGF5ZXIudjEudGFyK2d6aXAiLAogICAgICAiZGlnZXN0IjogInNoYTI1Njo1MjUyYjIwNmFhYzI5OGZiMDA0ZGJlNjIyMTBkMTI3NTMzZjhhZWI2YTVlYjBiOGY3OWUyOGRkYzAxYmQyNDE5IiwKICAgICAgInNpemUiOiA2MjkKICAgIH0sCiAgICB7CiAgICAgICJtZWRpYVR5cGUiOiAiYXBwbGljYXRpb24vdm5kLm9jaS5pbWFnZS5sYXllci52MS50YXIrZ3ppcCIsCiAgICAgICJkaWdlc3QiOiAic2hhMjU2Ojk4OGI5MmQ5Njk3MDQ2NGFiOTQzNWFhNmFmMzA3N2UyODNjMWM4ZWFjYWVlMjAwZjhjMTIzMzE1NDg2MDY2ZWMiLAogICAgICAic2l6ZSI6IDk1NAogICAgfSwKICAgIHsKICAgICAgIm1lZGlhVHlwZSI6ICJhcHBsaWNhdGlvbi92bmQub2NpLmltYWdlLmxheWVyLnYxLnRhcitnemlwIiwKICAgICAgImRpZ2VzdCI6ICJzaGEyNTY6NzEwMjYyN2E3YTZlNGRhM2I4MGUxOTJiNjg2ZDU3MTM5YjhjNmQ0ZmY0MDU5MThkZDUwOGU3ODRhNGFiYzYzOSIsCiAgICAgICJzaXplIjogMzkzCiAgICB9LAogICAgewogICAgICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubGF5ZXIudjEudGFyK2d6aXAiLAogICAgICAiZGlnZXN0IjogInNoYTI1Njo5MzI5NWFkZDk4NGRiZDExNGE2ZjQzNDAxZjA4ZTZmYWY0NTEwODA5ZTMzZThmOGEyZTY0ODUzOTlmYTBlMDNjIiwKICAgICAgInNpemUiOiAxMjEwCiAgICB9LAogICAgewogICAgICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubGF5ZXIudjEudGFyK2d6aXAiLAogICAgICAiZGlnZXN0IjogInNoYTI1NjplYmRlMGFhMWQxYWFhZDlkNDNkYTk2YjdmMGU0YTRlYmNjZGUxNmNjNGQ3ODU5NDQ2MjlmMDI0MDZjZDU0YjQ0IiwKICAgICAgInNpemUiOiAxMzk3CiAgICB9CiAgXSwKICAiYW5ub3RhdGlvbnMiOiB7CiAgICAiY29tLmRvY2tlci5vZmZpY2lhbC1pbWFnZXMuYmFzaGJyZXcuYXJjaCI6ICJhbWQ2NCIsCiAgICAib3JnLm9wZW5jb250YWluZXJzLmltYWdlLmJhc2UuZGlnZXN0IjogInNoYTI1NjoxODgzOGQ3YjYwNzIzZWMxNTQ4YTg1YWU1NzE5NWJkODRhODg3YjY1ZDI0OWY0YTc0Njk4ZjFhYjdjYWU0Y2EzIiwKICAgICJvcmcub3BlbmNvbnRhaW5lcnMuaW1hZ2UuYmFzZS5uYW1lIjogImRlYmlhbjpib29rd29ybS1zbGltIiwKICAgICJvcmcub3BlbmNvbnRhaW5lcnMuaW1hZ2UuY3JlYXRlZCI6ICIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsCiAgICAib3JnLm9wZW5jb250YWluZXJzLmltYWdlLnJldmlzaW9uIjogIjY2YzBmOTRiNGM3NjRiMWE1MzE1MjhlOGMyNDJhZDk0NDk3MDExZjYiLAogICAgIm9yZy5vcGVuY29udGFpbmVycy5pbWFnZS5zb3VyY2UiOiAiaHR0cHM6Ly9naXRodWIuY29tL25naW54aW5jL2RvY2tlci1uZ2lueC5naXQjNjZjMGY5NGI0Yzc2NGIxYTUzMTUyOGU4YzI0MmFkOTQ0OTcwMTFmNjptYWlubGluZS9kZWJpYW4iLAogICAgIm9yZy5vcGVuY29udGFpbmVycy5pbWFnZS51cmwiOiAiaHR0cHM6Ly9odWIuZG9ja2VyLmNvbS9fL25naW54IiwKICAgICJvcmcub3BlbmNvbnRhaW5lcnMuaW1hZ2UudmVyc2lvbiI6ICIxLjI1LjUiCiAgfQp9", - "config": "eyJhcmNoaXRlY3R1cmUiOiJhbWQ2NCIsImNvbmZpZyI6eyJFeHBvc2VkUG9ydHMiOnsiODAvdGNwIjp7fX0sIkVudiI6WyJQQVRIPS91c3IvbG9jYWwvc2JpbjovdXNyL2xvY2FsL2JpbjovdXNyL3NiaW46L3Vzci9iaW46L3NiaW46L2JpbiIsIk5HSU5YX1ZFUlNJT049MS4yNS41IiwiTkpTX1ZFUlNJT049MC44LjQiLCJOSlNfUkVMRUFTRT0yfmJvb2t3b3JtIiwiUEtHX1JFTEVBU0U9MX5ib29rd29ybSJdLCJFbnRyeXBvaW50IjpbIi9kb2NrZXItZW50cnlwb2ludC5zaCJdLCJDbWQiOlsibmdpbngiLCItZyIsImRhZW1vbiBvZmY7Il0sIkxhYmVscyI6eyJtYWludGFpbmVyIjoiTkdJTlggRG9ja2VyIE1haW50YWluZXJzIFx1MDAzY2RvY2tlci1tYWludEBuZ2lueC5jb21cdTAwM2UifSwiU3RvcFNpZ25hbCI6IlNJR1FVSVQiLCJBcmdzRXNjYXBlZCI6dHJ1ZX0sImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImhpc3RvcnkiOlt7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiIvYmluL3NoIC1jICMobm9wKSBBREQgZmlsZTo0YjFiZTFkZTFhMWU1YWE2MDhjNjg4Y2FkMjgyNDU4NzI2MjA4MTg2NjE4MGQ3MzY4ZmViNzlkMzNjYTA1OTUzIGluIC8gIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiL2Jpbi9zaCAtYyAjKG5vcCkgIENNRCBbXCJiYXNoXCJdIiwiZW1wdHlfbGF5ZXIiOnRydWV9LHsiY3JlYXRlZCI6IjIwMjQtMDQtMjNUMjI6MTU6NDVaIiwiY3JlYXRlZF9ieSI6IkxBQkVMIG1haW50YWluZXI9TkdJTlggRG9ja2VyIE1haW50YWluZXJzIFx1MDAzY2RvY2tlci1tYWludEBuZ2lueC5jb21cdTAwM2UiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJFTlYgTkdJTlhfVkVSU0lPTj0xLjI1LjUiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJFTlYgTkpTX1ZFUlNJT049MC44LjQiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJFTlYgTkpTX1JFTEVBU0U9Mn5ib29rd29ybSIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIiwiZW1wdHlfbGF5ZXIiOnRydWV9LHsiY3JlYXRlZCI6IjIwMjQtMDQtMjNUMjI6MTU6NDVaIiwiY3JlYXRlZF9ieSI6IkVOViBQS0dfUkVMRUFTRT0xfmJvb2t3b3JtIiwiY29tbWVudCI6ImJ1aWxka2l0LmRvY2tlcmZpbGUudjAiLCJlbXB0eV9sYXllciI6dHJ1ZX0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiUlVOIC9iaW4vc2ggLWMgc2V0IC14ICAgICBcdTAwMjZcdTAwMjYgZ3JvdXBhZGQgLS1zeXN0ZW0gLS1naWQgMTAxIG5naW54ICAgICBcdTAwMjZcdTAwMjYgdXNlcmFkZCAtLXN5c3RlbSAtLWdpZCBuZ2lueCAtLW5vLWNyZWF0ZS1ob21lIC0taG9tZSAvbm9uZXhpc3RlbnQgLS1jb21tZW50IFwibmdpbnggdXNlclwiIC0tc2hlbGwgL2Jpbi9mYWxzZSAtLXVpZCAxMDEgbmdpbnggICAgIFx1MDAyNlx1MDAyNiBhcHQtZ2V0IHVwZGF0ZSAgICAgXHUwMDI2XHUwMDI2IGFwdC1nZXQgaW5zdGFsbCAtLW5vLWluc3RhbGwtcmVjb21tZW5kcyAtLW5vLWluc3RhbGwtc3VnZ2VzdHMgLXkgZ251cGcxIGNhLWNlcnRpZmljYXRlcyAgICAgXHUwMDI2XHUwMDI2ICAgICBOR0lOWF9HUEdLRVk9NTczQkZENkIzRDhGQkM2NDEwNzlBNkFCQUJGNUJEODI3QkQ5QkY2MjsgICAgIE5HSU5YX0dQR0tFWV9QQVRIPS9ldGMvYXB0L2tleXJpbmdzL25naW54LWFyY2hpdmUta2V5cmluZy5ncGc7ICAgICBleHBvcnQgR05VUEdIT01FPVwiJChta3RlbXAgLWQpXCI7ICAgICBmb3VuZD0nJzsgICAgIGZvciBzZXJ2ZXIgaW4gICAgICAgICBoa3A6Ly9rZXlzZXJ2ZXIudWJ1bnR1LmNvbTo4MCAgICAgICAgIHBncC5taXQuZWR1ICAgICA7IGRvICAgICAgICAgZWNobyBcIkZldGNoaW5nIEdQRyBrZXkgJE5HSU5YX0dQR0tFWSBmcm9tICRzZXJ2ZXJcIjsgICAgICAgICBncGcxIC0ta2V5c2VydmVyIFwiJHNlcnZlclwiIC0ta2V5c2VydmVyLW9wdGlvbnMgdGltZW91dD0xMCAtLXJlY3Yta2V5cyBcIiROR0lOWF9HUEdLRVlcIiBcdTAwMjZcdTAwMjYgZm91bmQ9eWVzIFx1MDAyNlx1MDAyNiBicmVhazsgICAgIGRvbmU7ICAgICB0ZXN0IC16IFwiJGZvdW5kXCIgXHUwMDI2XHUwMDI2IGVjaG8gXHUwMDNlXHUwMDI2MiBcImVycm9yOiBmYWlsZWQgdG8gZmV0Y2ggR1BHIGtleSAkTkdJTlhfR1BHS0VZXCIgXHUwMDI2XHUwMDI2IGV4aXQgMTsgICAgIGdwZzEgLS1leHBvcnQgXCIkTkdJTlhfR1BHS0VZXCIgXHUwMDNlIFwiJE5HSU5YX0dQR0tFWV9QQVRIXCIgOyAgICAgcm0gLXJmIFwiJEdOVVBHSE9NRVwiOyAgICAgYXB0LWdldCByZW1vdmUgLS1wdXJnZSAtLWF1dG8tcmVtb3ZlIC15IGdudXBnMSBcdTAwMjZcdTAwMjYgcm0gLXJmIC92YXIvbGliL2FwdC9saXN0cy8qICAgICBcdTAwMjZcdTAwMjYgZHBrZ0FyY2g9XCIkKGRwa2cgLS1wcmludC1hcmNoaXRlY3R1cmUpXCIgICAgIFx1MDAyNlx1MDAyNiBuZ2lueFBhY2thZ2VzPVwiICAgICAgICAgbmdpbng9JHtOR0lOWF9WRVJTSU9OfS0ke1BLR19SRUxFQVNFfSAgICAgICAgIG5naW54LW1vZHVsZS14c2x0PSR7TkdJTlhfVkVSU0lPTn0tJHtQS0dfUkVMRUFTRX0gICAgICAgICBuZ2lueC1tb2R1bGUtZ2VvaXA9JHtOR0lOWF9WRVJTSU9OfS0ke1BLR19SRUxFQVNFfSAgICAgICAgIG5naW54LW1vZHVsZS1pbWFnZS1maWx0ZXI9JHtOR0lOWF9WRVJTSU9OfS0ke1BLR19SRUxFQVNFfSAgICAgICAgIG5naW54LW1vZHVsZS1uanM9JHtOR0lOWF9WRVJTSU9OfSske05KU19WRVJTSU9OfS0ke05KU19SRUxFQVNFfSAgICAgXCIgICAgIFx1MDAyNlx1MDAyNiBjYXNlIFwiJGRwa2dBcmNoXCIgaW4gICAgICAgICBhbWQ2NHxhcm02NCkgICAgICAgICAgICAgZWNobyBcImRlYiBbc2lnbmVkLWJ5PSROR0lOWF9HUEdLRVlfUEFUSF0gaHR0cHM6Ly9uZ2lueC5vcmcvcGFja2FnZXMvbWFpbmxpbmUvZGViaWFuLyBib29rd29ybSBuZ2lueFwiIFx1MDAzZVx1MDAzZSAvZXRjL2FwdC9zb3VyY2VzLmxpc3QuZC9uZ2lueC5saXN0ICAgICAgICAgICAgIFx1MDAyNlx1MDAyNiBhcHQtZ2V0IHVwZGF0ZSAgICAgICAgICAgICA7OyAgICAgICAgICopICAgICAgICAgICAgIGVjaG8gXCJkZWItc3JjIFtzaWduZWQtYnk9JE5HSU5YX0dQR0tFWV9QQVRIXSBodHRwczovL25naW54Lm9yZy9wYWNrYWdlcy9tYWlubGluZS9kZWJpYW4vIGJvb2t3b3JtIG5naW54XCIgXHUwMDNlXHUwMDNlIC9ldGMvYXB0L3NvdXJjZXMubGlzdC5kL25naW54Lmxpc3QgICAgICAgICAgICAgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IHRlbXBEaXI9XCIkKG1rdGVtcCAtZClcIiAgICAgICAgICAgICBcdTAwMjZcdTAwMjYgY2htb2QgNzc3IFwiJHRlbXBEaXJcIiAgICAgICAgICAgICAgICAgICAgICAgICBcdTAwMjZcdTAwMjYgc2F2ZWRBcHRNYXJrPVwiJChhcHQtbWFyayBzaG93bWFudWFsKVwiICAgICAgICAgICAgICAgICAgICAgICAgIFx1MDAyNlx1MDAyNiBhcHQtZ2V0IHVwZGF0ZSAgICAgICAgICAgICBcdTAwMjZcdTAwMjYgYXB0LWdldCBidWlsZC1kZXAgLXkgJG5naW54UGFja2FnZXMgICAgICAgICAgICAgXHUwMDI2XHUwMDI2ICggICAgICAgICAgICAgICAgIGNkIFwiJHRlbXBEaXJcIiAgICAgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IERFQl9CVUlMRF9PUFRJT05TPVwibm9jaGVjayBwYXJhbGxlbD0kKG5wcm9jKVwiICAgICAgICAgICAgICAgICAgICAgYXB0LWdldCBzb3VyY2UgLS1jb21waWxlICRuZ2lueFBhY2thZ2VzICAgICAgICAgICAgICkgICAgICAgICAgICAgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IGFwdC1tYXJrIHNob3dtYW51YWwgfCB4YXJncyBhcHQtbWFyayBhdXRvIFx1MDAzZSAvZGV2L251bGwgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IHsgWyAteiBcIiRzYXZlZEFwdE1hcmtcIiBdIHx8IGFwdC1tYXJrIG1hbnVhbCAkc2F2ZWRBcHRNYXJrOyB9ICAgICAgICAgICAgICAgICAgICAgICAgIFx1MDAyNlx1MDAyNiBscyAtbEFGaCBcIiR0ZW1wRGlyXCIgICAgICAgICAgICAgXHUwMDI2XHUwMDI2ICggY2QgXCIkdGVtcERpclwiIFx1MDAyNlx1MDAyNiBkcGtnLXNjYW5wYWNrYWdlcyAuIFx1MDAzZSBQYWNrYWdlcyApICAgICAgICAgICAgIFx1MDAyNlx1MDAyNiBncmVwICdeUGFja2FnZTogJyBcIiR0ZW1wRGlyL1BhY2thZ2VzXCIgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IGVjaG8gXCJkZWIgWyB0cnVzdGVkPXllcyBdIGZpbGU6Ly8kdGVtcERpciAuL1wiIFx1MDAzZSAvZXRjL2FwdC9zb3VyY2VzLmxpc3QuZC90ZW1wLmxpc3QgICAgICAgICAgICAgXHUwMDI2XHUwMDI2IGFwdC1nZXQgLW8gQWNxdWlyZTo6R3ppcEluZGV4ZXM9ZmFsc2UgdXBkYXRlICAgICAgICAgICAgIDs7ICAgICBlc2FjICAgICAgICAgXHUwMDI2XHUwMDI2IGFwdC1nZXQgaW5zdGFsbCAtLW5vLWluc3RhbGwtcmVjb21tZW5kcyAtLW5vLWluc3RhbGwtc3VnZ2VzdHMgLXkgICAgICAgICAgICAgICAgICAgICAgICAgJG5naW54UGFja2FnZXMgICAgICAgICAgICAgICAgICAgICAgICAgZ2V0dGV4dC1iYXNlICAgICAgICAgICAgICAgICAgICAgICAgIGN1cmwgICAgIFx1MDAyNlx1MDAyNiBhcHQtZ2V0IHJlbW92ZSAtLXB1cmdlIC0tYXV0by1yZW1vdmUgLXkgXHUwMDI2XHUwMDI2IHJtIC1yZiAvdmFyL2xpYi9hcHQvbGlzdHMvKiAvZXRjL2FwdC9zb3VyY2VzLmxpc3QuZC9uZ2lueC5saXN0ICAgICAgICAgXHUwMDI2XHUwMDI2IGlmIFsgLW4gXCIkdGVtcERpclwiIF07IHRoZW4gICAgICAgICBhcHQtZ2V0IHB1cmdlIC15IC0tYXV0by1yZW1vdmUgICAgICAgICBcdTAwMjZcdTAwMjYgcm0gLXJmIFwiJHRlbXBEaXJcIiAvZXRjL2FwdC9zb3VyY2VzLmxpc3QuZC90ZW1wLmxpc3Q7ICAgICBmaSAgICAgXHUwMDI2XHUwMDI2IGxuIC1zZiAvZGV2L3N0ZG91dCAvdmFyL2xvZy9uZ2lueC9hY2Nlc3MubG9nICAgICBcdTAwMjZcdTAwMjYgbG4gLXNmIC9kZXYvc3RkZXJyIC92YXIvbG9nL25naW54L2Vycm9yLmxvZyAgICAgXHUwMDI2XHUwMDI2IG1rZGlyIC9kb2NrZXItZW50cnlwb2ludC5kICMgYnVpbGRraXQiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCJ9LHsiY3JlYXRlZCI6IjIwMjQtMDQtMjNUMjI6MTU6NDVaIiwiY3JlYXRlZF9ieSI6IkNPUFkgZG9ja2VyLWVudHJ5cG9pbnQuc2ggLyAjIGJ1aWxka2l0IiwiY29tbWVudCI6ImJ1aWxka2l0LmRvY2tlcmZpbGUudjAifSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJDT1BZIDEwLWxpc3Rlbi1vbi1pcHY2LWJ5LWRlZmF1bHQuc2ggL2RvY2tlci1lbnRyeXBvaW50LmQgIyBidWlsZGtpdCIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiQ09QWSAxNS1sb2NhbC1yZXNvbHZlcnMuZW52c2ggL2RvY2tlci1lbnRyeXBvaW50LmQgIyBidWlsZGtpdCIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiQ09QWSAyMC1lbnZzdWJzdC1vbi10ZW1wbGF0ZXMuc2ggL2RvY2tlci1lbnRyeXBvaW50LmQgIyBidWlsZGtpdCIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiQ09QWSAzMC10dW5lLXdvcmtlci1wcm9jZXNzZXMuc2ggL2RvY2tlci1lbnRyeXBvaW50LmQgIyBidWlsZGtpdCIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIn0seyJjcmVhdGVkIjoiMjAyNC0wNC0yM1QyMjoxNTo0NVoiLCJjcmVhdGVkX2J5IjoiRU5UUllQT0lOVCBbXCIvZG9ja2VyLWVudHJ5cG9pbnQuc2hcIl0iLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJFWFBPU0UgbWFwWzgwL3RjcDp7fV0iLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJTVE9QU0lHTkFMIFNJR1FVSVQiLCJjb21tZW50IjoiYnVpbGRraXQuZG9ja2VyZmlsZS52MCIsImVtcHR5X2xheWVyIjp0cnVlfSx7ImNyZWF0ZWQiOiIyMDI0LTA0LTIzVDIyOjE1OjQ1WiIsImNyZWF0ZWRfYnkiOiJDTUQgW1wibmdpbnhcIiBcIi1nXCIgXCJkYWVtb24gb2ZmO1wiXSIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIiwiZW1wdHlfbGF5ZXIiOnRydWV9XSwib3MiOiJsaW51eCIsInJvb3RmcyI6eyJ0eXBlIjoibGF5ZXJzIiwiZGlmZl9pZHMiOlsic2hhMjU2OjUyZWM1YTQzMTZmYWRjMDlhNGE1MWY4MmI4ZDdiNjZlYWQwZDcxYmVhNGY3NWU4MWUyNWI0MDk0YzQyMTkwNjEiLCJzaGEyNTY6YmJkZTc0MWUxMDhiODM0ZWI0Y2FmNGYwZTUwYjk4MWYxZDU4ZjhjZDVhNjc0NWU1ODg4M2NhZjYyMDc2MGQ0MiIsInNoYTI1NjpiMDkzNDdhMWFlYzY0MDc5MTU5MGEzYTE1ZTZmMTIxYjQ3NTQwYThjODcyNTQ0N2Y0NTQ2YTI1Mjc3NThkOTcwIiwic2hhMjU2OjFkYjIyNDJmYzFmYTFhYWMxNjVhNGVlYjFkMTFiODRmYmM2NjczOTY5YzVkODIxZDE4N2RkM2U3ZTUyMmMxMzAiLCJzaGEyNTY6ZTYzODBhNzA1N2E1MDA1OTAwYzVjOGEyMzNlMzZhYjY5ZGQ5Zjk1NjA0NWNhOGFmMTk1MTdmZWU1OWNlMTE5ZiIsInNoYTI1NjoxNzVhYTY2ZGI0Y2M4YzcwYThjYWEzMzhhNjM0ZWVlM2Q0ZmQ5NGU2NzU2NmMyYzQ2YWVlMDI2MjEwNDEwNDFhIiwic2hhMjU2OjlmZDU0OTI2YmNhZWQzMTUwYzZmYjAxZjhkNDdkZmUyOGExMDkzYzI1OWY0MTYyNjg1MmMyN2QzNjAxZmVjMjEiXX19", - "repoDigests": [ - "index.docker.io/library/nginx@sha256:ed6d2c43c8fbcd3eaa44c9dab6d94cb346234476230dc1681227aa72d07181ee" - ], - "architecture": "amd64", - "os": "linux", - "labels": { - "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e" - } - } - }, - "distro": { - "prettyName": "Debian GNU/Linux 12 (bookworm)", - "name": "Debian GNU/Linux", - "id": "debian", - "version": "12 (bookworm)", - "versionID": "12", - "versionCodename": "bookworm", - "homeURL": "https://www.debian.org/", - "supportURL": "https://www.debian.org/support", - "bugReportURL": "https://bugs.debian.org/" - }, - "descriptor": { - "name": "nginx-7181ee", - "version": "v1.2.0-hotfix", - "configuration": { - "catalogers": { - "requested": { - "default": [ - "image" - ] - }, - "used": [ - "alpm-db-cataloger", - "apk-db-cataloger", - "binary-classifier-cataloger", - "cargo-auditable-binary-cataloger", - "conan-info-cataloger", - "dotnet-portable-executable-cataloger", - "dpkg-db-cataloger", - "elf-binary-package-cataloger", - "go-module-binary-cataloger", - "graalvm-native-image-cataloger", - "java-archive-cataloger", - "javascript-package-cataloger", - "linux-kernel-cataloger", - "nix-store-cataloger", - "php-composer-installed-cataloger", - "php-pecl-serialized-cataloger", - "portage-cataloger", - "python-installed-package-cataloger", - "r-package-cataloger", - "rpm-db-cataloger", - "ruby-installed-gemspec-cataloger", - "wordpress-plugins-cataloger" - ] - }, - "data-generation": { - "generate-cpes": true - }, - "files": { - "content": { - "globs": null, - "skip-files-above-size": 0 - }, - "hashers": [ - "sha-256" - ], - "selection": "owned-by-package" - }, - "packages": { - "binary": [ - "python-binary", - "python-binary-lib", - "pypy-binary-lib", - "go-binary", - "julia-binary", - "helm", - "redis-binary", - "java-binary-openjdk", - "java-binary-ibm", - "java-binary-oracle", - "java-binary-graalvm", - "java-binary-jdk", - "nodejs-binary", - "go-binary-hint", - "busybox-binary", - "haproxy-binary", - "perl-binary", - "php-cli-binary", - "php-fpm-binary", - "php-apache-binary", - "php-composer-binary", - "httpd-binary", - "memcached-binary", - "traefik-binary", - "postgresql-binary", - "mysql-binary", - "mysql-binary", - "mysql-binary", - "xtrabackup-binary", - "mariadb-binary", - "rust-standard-library-linux", - "rust-standard-library-macos", - "ruby-binary", - "erlang-binary", - "consul-binary", - "nginx-binary", - "bash-binary", - "openssl-binary", - "gcc-binary", - "wordpress-cli-binary" - ], - "golang": { - "local-mod-cache-dir": "/home/nonroot/go/pkg/mod", - "main-module-version": { - "from-build-settings": true, - "from-contents": true, - "from-ld-flags": true - }, - "proxies": [ - "https://proxy.golang.org", - "direct" - ], - "search-local-mod-cache-licenses": false, - "search-remote-licenses": false - }, - "java-archive": { - "include-indexed-archives": true, - "include-unindexed-archives": false, - "maven-base-url": "https://repo1.maven.org/maven2", - "max-parent-recursive-depth": 5, - "use-network": false - }, - "javascript": { - "npm-base-url": "", - "search-remote-licenses": false - }, - "linux-kernel": { - "catalog-modules": true - }, - "python": { - "guess-unpinned-requirements": false - } - }, - "relationships": { - "exclude-binary-packages-with-file-ownership-overlap": true, - "package-file-ownership": true, - "package-file-ownership-overlap": true - }, - "search": { - "scope": "squashed" - } - } - }, - "schema": { - "version": "16.0.7", - "url": "https://raw.githubusercontent.com/anchore/syft/main/schema/json/schema-16.0.7.json" - } - } - }, - "status": {} -} diff --git a/pkg/rulemanager/v1/rule_manager.go b/pkg/rulemanager/v1/rule_manager.go index 1a8172d0..65f0df94 100644 --- a/pkg/rulemanager/v1/rule_manager.go +++ b/pkg/rulemanager/v1/rule_manager.go @@ -7,41 +7,34 @@ import ( "path/filepath" "time" - "github.com/kubescape/node-agent/pkg/config" - "github.com/kubescape/node-agent/pkg/dnsmanager" - "github.com/kubescape/node-agent/pkg/exporters" - "github.com/kubescape/node-agent/pkg/k8sclient" - "github.com/kubescape/node-agent/pkg/processmanager" - "github.com/kubescape/node-agent/pkg/ruleengine" - "github.com/kubescape/node-agent/pkg/rulemanager" - "github.com/kubescape/node-agent/pkg/utils" - "github.com/armosec/utils-k8s-go/wlid" "github.com/cenkalti/backoff/v4" - "github.com/dustin/go-humanize" - helpersv1 "github.com/kubescape/k8s-interface/instanceidhandler/v1/helpers" - "go.opentelemetry.io/otel" - corev1 "k8s.io/api/core/v1" - - bindingcache "github.com/kubescape/node-agent/pkg/rulebindingmanager" - - "github.com/kubescape/node-agent/pkg/metricsmanager" - "github.com/kubescape/node-agent/pkg/objectcache" - - ruleenginetypes "github.com/kubescape/node-agent/pkg/ruleengine/types" - mapset "github.com/deckarep/golang-set/v2" + "github.com/dustin/go-humanize" "github.com/goradd/maps" containercollection "github.com/inspektor-gadget/inspektor-gadget/pkg/container-collection" eventtypes "github.com/inspektor-gadget/inspektor-gadget/pkg/types" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/kubescape/go-logger" "github.com/kubescape/go-logger/helpers" "github.com/kubescape/k8s-interface/instanceidhandler/v1" + helpersv1 "github.com/kubescape/k8s-interface/instanceidhandler/v1/helpers" "github.com/kubescape/k8s-interface/workloadinterface" - + "github.com/kubescape/node-agent/pkg/config" + "github.com/kubescape/node-agent/pkg/dnsmanager" + "github.com/kubescape/node-agent/pkg/exporters" + "github.com/kubescape/node-agent/pkg/k8sclient" + "github.com/kubescape/node-agent/pkg/metricsmanager" + "github.com/kubescape/node-agent/pkg/objectcache" + "github.com/kubescape/node-agent/pkg/processmanager" + bindingcache "github.com/kubescape/node-agent/pkg/rulebindingmanager" + "github.com/kubescape/node-agent/pkg/ruleengine" + ruleenginetypes "github.com/kubescape/node-agent/pkg/ruleengine/types" + "github.com/kubescape/node-agent/pkg/rulemanager" + "github.com/kubescape/node-agent/pkg/utils" storageUtils "github.com/kubescape/storage/pkg/utils" + "go.opentelemetry.io/otel" + corev1 "k8s.io/api/core/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) const ( @@ -181,31 +174,28 @@ func (rm *RuleManager) ensureInstanceID(container *containercollection.Container if watchedContainer.InstanceID != nil { return nil } - wl, err := rm.k8sClient.GetWorkload(container.K8s.Namespace, "Pod", container.K8s.PodName) if err != nil { return fmt.Errorf("failed to get workload: %w", err) } - pod := wl.(*workloadinterface.Workload) - - // find instanceID + // fill container type, index and names + if watchedContainer.ContainerType == utils.Unknown { + if err := watchedContainer.SetContainerInfo(pod, container.K8s.ContainerName); err != nil { + return fmt.Errorf("failed to set container info: %w", err) + } + } + // find instanceID - this has to be the last one instanceIDs, err := instanceidhandler.GenerateInstanceID(pod) if err != nil { return fmt.Errorf("failed to generate instanceID: %w", err) } - watchedContainer.InstanceID = instanceIDs[0] for i := range instanceIDs { if instanceIDs[i].GetContainerName() == container.K8s.ContainerName { watchedContainer.InstanceID = instanceIDs[i] } } - // find container type and index - if watchedContainer.ContainerType == utils.Unknown { - watchedContainer.SetContainerInfo(pod, container.K8s.ContainerName) - } - return nil } diff --git a/pkg/sbomhandler/interface.go b/pkg/sbomhandler/interface.go deleted file mode 100644 index 5cfbf3d0..00000000 --- a/pkg/sbomhandler/interface.go +++ /dev/null @@ -1,11 +0,0 @@ -package sbomhandler - -import ( - "github.com/kubescape/node-agent/pkg/utils" -) - -type SBOMHandlerClient interface { - FilterSBOM(watchedContainer *utils.WatchedContainerData, sbomFileRelevantMap map[string]bool) error - IncrementImageUse(imageID string) - DecrementImageUse(imageID string) -} diff --git a/pkg/sbomhandler/syfthandler/syft_handler.go b/pkg/sbomhandler/syfthandler/syft_handler.go deleted file mode 100644 index 55b33a60..00000000 --- a/pkg/sbomhandler/syfthandler/syft_handler.go +++ /dev/null @@ -1,216 +0,0 @@ -package syfthandler - -import ( - "fmt" - - "github.com/kubescape/node-agent/pkg/sbomhandler" - "github.com/kubescape/node-agent/pkg/storage" - "github.com/kubescape/node-agent/pkg/utils" - - helpersv1 "github.com/kubescape/k8s-interface/instanceidhandler/v1/helpers" - - "github.com/kubescape/go-logger" - "github.com/kubescape/go-logger/helpers" - "github.com/kubescape/k8s-interface/names" - "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" -) - -type SyftHandler struct { - storageClient storage.StorageClient -} - -var _ sbomhandler.SBOMHandlerClient = (*SyftHandler)(nil) - -func CreateSyftSBOMHandler(sc storage.StorageClient) *SyftHandler { - return &SyftHandler{ - storageClient: sc, - } -} - -func (sc *SyftHandler) FilterSBOM(watchedContainer *utils.WatchedContainerData, sbomFileRelevantMap map[string]bool) error { - - if watchedContainer.InstanceID == nil { - return nil - } - - newRelevantData := false - - // retrieve SBOM from storage - SBOMKey, err := names.ImageInfoToSlug(watchedContainer.ImageTag, watchedContainer.ImageID) - if err != nil { - return err - } - - syftData, err := sc.storageClient.GetSBOM(SBOMKey) - if err != nil { - return fmt.Errorf("failed to get SBOM from storage: %w", err) - } - if syftData == nil { - return nil - } - - // check SBOM is complete - if syftData.Annotations != nil { - if status, ok := syftData.Annotations[helpersv1.StatusMetadataKey]; ok { - switch status { - case helpersv1.Incomplete, helpersv1.TooLarge, helpersv1.Unauthorize: - watchedContainer.SyncChannel <- utils.IncompleteSBOMError - } - } - } - - if watchedContainer.SBOMSyftFiltered == nil { - filteredSBOMKey, err := watchedContainer.InstanceID.GetSlug(false) - if err != nil { - return err - } - - if filteredSBOM, err := sc.storageClient.GetFilteredSBOM(filteredSBOMKey); err != nil { - logger.L().Debug("filtered SBOM not found, creating new one", helpers.String("containerID", watchedContainer.ContainerID), helpers.String("k8s workload", watchedContainer.K8sContainerID), helpers.String("filtered SBOM", filteredSBOMKey)) - watchedContainer.SBOMSyftFiltered = &v1beta1.SBOMSyftFiltered{ - ObjectMeta: metav1.ObjectMeta{ - Name: filteredSBOMKey, - Annotations: map[string]string{ - helpersv1.WlidMetadataKey: watchedContainer.Wlid, - helpersv1.InstanceIDMetadataKey: watchedContainer.InstanceID.GetStringFormatted(), - helpersv1.ContainerNameMetadataKey: watchedContainer.InstanceID.GetContainerName(), - helpersv1.ImageIDMetadataKey: watchedContainer.ImageID, - helpersv1.ImageTagMetadataKey: watchedContainer.ImageTag, - helpersv1.StatusMetadataKey: helpersv1.Ready, - }, - Labels: utils.GetLabels(watchedContainer, false), - }, - } - } else { - logger.L().Debug("filtered SBOM found, using it", helpers.String("containerID", watchedContainer.ContainerID), helpers.String("k8s workload", watchedContainer.K8sContainerID), helpers.String("filtered SBOM", filteredSBOMKey)) - filteredSBOM.ObjectMeta.ResourceVersion = "" - filteredSBOM.ObjectMeta.CreationTimestamp = metav1.Time{} - filteredSBOM.ObjectMeta.UID = "" - - // update annotations with the correct imageID - filteredSBOM.Annotations[helpersv1.ImageIDMetadataKey] = watchedContainer.ImageID - filteredSBOM.Annotations[helpersv1.ImageTagMetadataKey] = watchedContainer.ImageTag - - for i := range filteredSBOM.Spec.Syft.ArtifactRelationships { - watchedContainer.RelevantRelationshipsArtifactsByIdentifier[getRelationshipID(filteredSBOM.Spec.Syft.ArtifactRelationships[i])] = true - } - for i := range filteredSBOM.Spec.Syft.Files { - watchedContainer.RelevantRealtimeFilesByIdentifier[filteredSBOM.Spec.Syft.Files[i].ID] = true - } - for i := range filteredSBOM.Spec.Syft.Artifacts { - watchedContainer.RelevantArtifactsFilesByIdentifier[filteredSBOM.Spec.Syft.Artifacts[i].ID] = true - } - - watchedContainer.SBOMSyftFiltered = filteredSBOM - } - } - - // if resource version is higher than in-memory, delete saved relevancy info - if utils.Atoi(syftData.ResourceVersion) > watchedContainer.SBOMResourceVersion { - logger.L().Debug("SBOM resource version is higher than the one in memory, parsing SBOM", helpers.String("containerID", watchedContainer.ContainerID), helpers.String("k8s workload", watchedContainer.K8sContainerID), helpers.Int("in memory", watchedContainer.SBOMResourceVersion), helpers.Int("in storage", utils.Atoi(syftData.ResourceVersion))) - - for _, file := range syftData.Spec.Syft.Files { - if _, ok := watchedContainer.RelevantRealtimeFilesByIdentifier[file.ID]; ok { - watchedContainer.RelevantRealtimeFilesByIdentifier[file.ID] = false - } - } - // save files, packages and relationships - files := watchedContainer.SBOMSyftFiltered.Spec.Syft.Files - packages := watchedContainer.SBOMSyftFiltered.Spec.Syft.Artifacts - relationships := watchedContainer.SBOMSyftFiltered.Spec.Syft.ArtifactRelationships - - // copy spec and status - watchedContainer.SBOMSyftFiltered.Spec = syftData.Spec - watchedContainer.SBOMSyftFiltered.Status = syftData.Status - - // restore files, packages and relationships - watchedContainer.SBOMSyftFiltered.Spec.Syft.Files = files - watchedContainer.SBOMSyftFiltered.Spec.Syft.Artifacts = packages - watchedContainer.SBOMSyftFiltered.Spec.Syft.ArtifactRelationships = relationships - - // update resource version - watchedContainer.SBOMResourceVersion = utils.Atoi(syftData.ResourceVersion) - newRelevantData = true - } - - filterRelevantFilesInSBOM(watchedContainer, syftData.Spec.Syft, sbomFileRelevantMap, &newRelevantData) - - if !newRelevantData { - return nil - } - - if err = sc.storageClient.CreateFilteredSBOM(watchedContainer.SBOMSyftFiltered); err != nil { - return fmt.Errorf("failed to store filtered SBOM: %w", err) - } - logger.L().Info("filtered SBOM has been stored successfully", helpers.String("containerID", watchedContainer.ContainerID), helpers.String("k8s workload", watchedContainer.K8sContainerID), helpers.String("filtered SBOM", watchedContainer.SBOMSyftFiltered.Name)) - - return nil -} - -func filterRelevantFilesInSBOM(watchedContainer *utils.WatchedContainerData, syftDoc v1beta1.SyftDocument, sbomFileRelevantMap map[string]bool, newRelevantData *bool) { - - // filter relevant file list - for i := range syftDoc.Files { - // the .location.realPath is not the ID of the file, that's why the map identifier is the ID and not the path - if _, k := watchedContainer.RelevantRealtimeFilesByIdentifier[syftDoc.Files[i].ID]; !k { - if _, ok := sbomFileRelevantMap[syftDoc.Files[i].Location.RealPath]; ok { - watchedContainer.SBOMSyftFiltered.Spec.Syft.Files = append(watchedContainer.SBOMSyftFiltered.Spec.Syft.Files, syftDoc.Files[i]) - watchedContainer.RelevantRealtimeFilesByIdentifier[syftDoc.Files[i].ID] = true - *(newRelevantData) = true - } - } - } - - if !*newRelevantData { - return - } - - // filter relevant relationships. A relationship is relevant if the child is a relevant file - relationshipsArtifacts := make(map[string]bool, 0) - for _, relationship := range syftDoc.ArtifactRelationships { - if _, ok := watchedContainer.RelevantRelationshipsArtifactsByIdentifier[getRelationshipID(relationship)]; ok { - continue - } - if _, ok := watchedContainer.RelevantRealtimeFilesByIdentifier[relationship.Child]; ok { // if the child is a relevant file - relationshipsArtifacts[relationship.Parent] = true - watchedContainer.RelevantRelationshipsArtifactsByIdentifier[getRelationshipID(relationship)] = true - watchedContainer.SBOMSyftFiltered.Spec.Syft.ArtifactRelationships = append(watchedContainer.SBOMSyftFiltered.Spec.Syft.ArtifactRelationships, relationship) - } - } - - // Add children of relevant relationships (that the parent is not relevant) - for _, relationship := range syftDoc.ArtifactRelationships { - if _, ok := watchedContainer.RelevantRelationshipsArtifactsByIdentifier[getRelationshipID(relationship)]; ok { - continue - } - if _, ok := relationshipsArtifacts[relationship.Child]; ok { - relationshipsArtifacts[relationship.Parent] = true - watchedContainer.RelevantRelationshipsArtifactsByIdentifier[getRelationshipID(relationship)] = true - watchedContainer.SBOMSyftFiltered.Spec.Syft.ArtifactRelationships = append(watchedContainer.SBOMSyftFiltered.Spec.Syft.ArtifactRelationships, relationship) - } - } - - // filter relevant artifacts. An artifact is relevant if it is in the relevant relationships - for _, artifact := range syftDoc.Artifacts { - if _, ok := watchedContainer.RelevantArtifactsFilesByIdentifier[artifact.ID]; ok { - continue - } - if _, ok := relationshipsArtifacts[artifact.ID]; ok { - watchedContainer.SBOMSyftFiltered.Spec.Syft.Artifacts = append(watchedContainer.SBOMSyftFiltered.Spec.Syft.Artifacts, artifact) - watchedContainer.RelevantArtifactsFilesByIdentifier[artifact.ID] = true - } - } - -} - -func (sc *SyftHandler) IncrementImageUse(_ string) { - -} -func (sc *SyftHandler) DecrementImageUse(_ string) { - -} - -func getRelationshipID(relationship v1beta1.SyftRelationship) string { - return fmt.Sprintf("%s/%s/%s", relationship.Parent, relationship.Child, relationship.Type) -} diff --git a/pkg/sbomhandler/syfthandler/syft_handler_test.go b/pkg/sbomhandler/syfthandler/syft_handler_test.go deleted file mode 100644 index ac963f7d..00000000 --- a/pkg/sbomhandler/syfthandler/syft_handler_test.go +++ /dev/null @@ -1,184 +0,0 @@ -package syfthandler - -import ( - _ "embed" - "encoding/json" - "testing" - - "github.com/kubescape/node-agent/pkg/storage" - "github.com/kubescape/node-agent/pkg/utils" - - "github.com/kubescape/k8s-interface/instanceidhandler/v1" - "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" - "github.com/stretchr/testify/assert" -) - -// func TestFilterRelevantFilesInSBOM(t *testing.T) { -// tests := []struct { -// name string -// syftDocInBytes []byte -// sbomFileRelevantMap map[string]bool -// expectedSyftDocInBytes []byte -// }{ -// { -// name: "kollector", -// syftDocInBytes: syftKollectorSBOM, -// sbomFileRelevantMap: map[string]bool{ -// "/bin/busybox": true, -// }, -// expectedSyftDocInBytes: syftKollectorSBOMfiltered, -// }, -// } - -// var syftDoc v1beta1.SyftDocument -// var expectedSyftDoc v1beta1.SyftDocument -// for _, tt := range tests { -// t.Run(tt.name, func(t *testing.T) { -// err := json.Unmarshal(tt.syftDocInBytes, &syftDoc) -// require.NoError(t, err) -// err = json.Unmarshal(tt.expectedSyftDocInBytes, &expectedSyftDoc) -// require.NoError(t, err) - -// filteredSyftDoc := filterRelevantFilesInSBOM( syftDoc, tt.sbomFileRelevantMap) - -// assert.Equal(t, expectedSyftDoc, filteredSyftDoc) -// }) -// } -// } - -//go:embed testdata/kollector-syft-crd.json -var kollectorSyftCRD []byte - -func TestFilterSBOM(t *testing.T) { - type fields struct { - storageClient storage.StorageClient - } - type args struct { - watchedContainer *utils.WatchedContainerData - sbomFileRelevantMap map[string]bool - expectedFilteredFiles []string - expectedFilteredSBOMS int - } - instanceID, _ := instanceidhandler.GenerateInstanceIDFromString("apiVersion-v1/namespace-aaa/kind-deployment/name-kollector/containerName-kollector") - - var syftDoc v1beta1.SBOMSyft - err := json.Unmarshal(kollectorSyftCRD, &syftDoc) - assert.NoError(t, err) - - storageClient := storage.CreateSyftSBOMStorageHttpClientMock(syftDoc) - tests := []struct { - name string - fields fields - args args - }{ - { - name: "new relevant files - new filtered sbom", - args: args{ - watchedContainer: &utils.WatchedContainerData{ - ContainerID: "kollector-402d69", - ImageID: "quay.io/kubescape/kollector@sha256:84ce233dd3256f097282ea4079e8908c5c0d0a895ae1aa9ae86e12aa74402d69", - ImageTag: "kollector", - InstanceID: instanceID, - RelevantRealtimeFilesByIdentifier: make(map[string]bool), - RelevantRelationshipsArtifactsByIdentifier: make(map[string]bool), - RelevantArtifactsFilesByIdentifier: make(map[string]bool), - }, - sbomFileRelevantMap: map[string]bool{ - "/bin/busybox": true, - }, - expectedFilteredSBOMS: 1, - expectedFilteredFiles: []string{"/bin/busybox"}, - }, - fields: fields{ - storageClient: storageClient, - }, - }, - { - name: "no relevant files - no new filtered sbom", - args: args{ - watchedContainer: &utils.WatchedContainerData{ - ContainerID: "kollector-402d69", - ImageID: "quay.io/kubescape/kollector@sha256:84ce233dd3256f097282ea4079e8908c5c0d0a895ae1aa9ae86e12aa74402d69", - ImageTag: "kollector", - InstanceID: instanceID, - RelevantRealtimeFilesByIdentifier: map[string]bool{ - "272fc1a4e05df74a": true, - }, - RelevantRelationshipsArtifactsByIdentifier: make(map[string]bool), - RelevantArtifactsFilesByIdentifier: make(map[string]bool), - }, - sbomFileRelevantMap: map[string]bool{ - "/bin/busybox": true, - }, - expectedFilteredSBOMS: 0, - expectedFilteredFiles: []string{}, - }, - fields: fields{ - storageClient: storageClient, - }, - }, - { - name: "file is relevant but resource version is new - new filtered sbom", - args: args{ - watchedContainer: &utils.WatchedContainerData{ - SBOMResourceVersion: -1, - ContainerID: "kollector-402d69", - ImageID: "quay.io/kubescape/kollector@sha256:84ce233dd3256f097282ea4079e8908c5c0d0a895ae1aa9ae86e12aa74402d69", - ImageTag: "kollector", - InstanceID: instanceID, - RelevantRealtimeFilesByIdentifier: map[string]bool{ - "272fc1a4e05df74a": true, - }, - RelevantRelationshipsArtifactsByIdentifier: make(map[string]bool), - RelevantArtifactsFilesByIdentifier: make(map[string]bool), - SBOMSyftFiltered: &v1beta1.SBOMSyftFiltered{ - Spec: v1beta1.SBOMSyftSpec{ - Syft: v1beta1.SyftDocument{ - Files: []v1beta1.SyftFile{{ - ID: "dad6eaf501b8c3b7", - Location: v1beta1.Coordinates{ - RealPath: "/bin/busybox", - FileSystemID: "sha256:45cc071a8ca74fe4cd1ff622ce60aa0bf76ed8a52b68a685ea02c9e05a28142e", - }, - }}, - }, - }, - }, - }, - sbomFileRelevantMap: map[string]bool{ - "/bin/busybox": true, - }, - expectedFilteredSBOMS: 1, - expectedFilteredFiles: []string{"/bin/busybox"}, - }, - fields: fields{ - storageClient: storageClient, - }, - }, - } - - for _, tt := range tests { - storageClient.FilteredSyftSBOMs = []*v1beta1.SBOMSyftFiltered{} - - t.Run(tt.name, func(t *testing.T) { - sc := &SyftHandler{ - storageClient: tt.fields.storageClient, - } - - err := sc.FilterSBOM(tt.args.watchedContainer, tt.args.sbomFileRelevantMap) - assert.NoError(t, err) - - assert.Equal(t, tt.args.expectedFilteredSBOMS, len(storageClient.FilteredSyftSBOMs)) - - filesFound := 0 - for _, expectedFile := range tt.args.expectedFilteredFiles { - for _, sbom := range storageClient.FilteredSyftSBOMs[0].Spec.Syft.Files { - if sbom.Location.RealPath == expectedFile { - filesFound++ - } - } - } - assert.Equal(t, len(tt.args.expectedFilteredFiles), filesFound) - }) - } -} diff --git a/pkg/sbomhandler/syfthandler/testdata/kollector-syft-crd.json b/pkg/sbomhandler/syfthandler/testdata/kollector-syft-crd.json deleted file mode 100644 index c2296460..00000000 --- a/pkg/sbomhandler/syfthandler/testdata/kollector-syft-crd.json +++ /dev/null @@ -1,7790 +0,0 @@ -{ - "apiVersion": "spdx.softwarecomposition.kubescape.io/v1beta1", - "kind": "SBOMSyft", - "metadata": { - "annotations": { - "kubescape.io/image-id": "quay.io/kubescape/kollector@sha256:5d86e6f8d2477a053af6a43946ea857975e7a80f53f1d9b806e475ce7dd269b4", - "kubescape.io/image-tag": "quay.io/kubescape/kollector:v0.1.36", - "kubescape.io/status": "ready" - }, - "creationTimestamp": "2024-04-29T06:45:55Z", - "labels": { - "kubescape.io/image-id": "quay-io-kubescape-kollector-sha256-5d86e6f8d2477a053af6a43946ea", - "kubescape.io/image-name": "quay-io-kubescape-kollector" - }, - "name": "quay.io-kubescape-kollector-v0.1.36-d269b4", - "namespace": "kubescape", - "resourceVersion": "0", - "uid": "6858148d-6816-4452-a499-470b39d5848c" - }, - "spec": { - "metadata": { - "report": { - "createdAt": "2024-04-29T06:45:55Z" - }, - "tool": { - "name": "syft", - "version": "v1.2.0-hotfix" - } - }, - "syft": { - "artifactRelationships": [ - { - "child": "d965f9e83fca4979", - "parent": "0018cabba7870853", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "020d776a8eced289", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "02f0df017ac2d575", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "054726f64cb2306f", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "08d150f4694bfab6", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "096627983c28a16c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "0a6db93fdecdc77b", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "0e4a29f4a4bf1b1c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "0f0439fa5c346ba5", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "138b1b7eeec7dcce", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "14801a08aaa9fc96", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "1583dad480410342", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "18998ec9777b0855", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "1b77888df2480e35", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "1c894d89b1a9dfae", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "1d0755badf32b31c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "1e4f37d1ec04c225", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "210e1d746d1d7e1f", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "21975b5a4e56ccf8", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "21ee4d32477adc45", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "23e4e0095f02e565", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "23f0e19d6c5007aa", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "2528ec7b3b403e70", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "27f9a3b674fd9865", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "29e22600b4523281", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "2cca0d364a35a5a1", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "2fc71ede71d9c9d2", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "2fe9517801f6316c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "3069c86efc59c2c6", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "31fecc3c610f482f", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "32b3781c19cd70c6", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "336142581f062fae", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "34b7807210629197", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "35116f09175e4ad6", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "356311dbaa2c76ea", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "357c5856d530123c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "36567df0bde243ca", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "36c852813146cc78", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "36e5f3fec95bb945", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "37dc9f63c120cdd2", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "384b2a886d4f8be7", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "3ed4c45326f671c5", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "3f2e76cedc37edba", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "3f67898b48b3ffe7", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "427d8948909e7c49", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "43ad3068e1bb0c4d", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "44befac2eed4c26e", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "4ac565bbf84e1813", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "4c3feae06e65008c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "4e0c8890a29a6ff5", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "4eba024dceb878a2", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "4ecb0c9107a60c68", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "51a810961da9c8cf", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "532bfa8c30742cbd", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "53bc656531f42fa8", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "54e7ab3fe7780a32", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "55cd3f05817e1df4", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "5902f067ebe0b7f9", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "59b306f9fbc04e52", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "5af4e73965015f61", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "5bd257fa3152a233", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "5d4ffc4ed561b23d", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "5ee47b999f4335be", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "5f60a8833aefa9d8", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "5fa702bd21f4aea2", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "60e2befdd230f863", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "6398eed9caeebd39", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "63a8e209e6379e1f", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "64e8b1a724c878a0", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "65e2df3277e1ddd8", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "68b9f461a2318c8d", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "6bf67dff15bf3293", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "6cadd2a7d273b6da", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "6d4cd49146b5c7fa", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "6e42e51bfdb159a5", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "7211b61c98247210", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "7227fc60d04b413b", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "7369bcab06495e7a", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "744a1bdfbb5c54ca", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "748076a5f913ebd8", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "77b242f98eeaadd5", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "787cbf131e865ea0", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "7c64ab0f3192fc8b", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "7cf985b2c7d8cbb6", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "7f1759f7011c8c9e", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "7f3c46d3459da05c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "7f6e4f43fea16eb6", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "8009f937e6000a93", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "80d758ffc5cb3030", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "832dde92d4870032", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "84bdcfdcd21e63ba", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "8507b9eb49e57ebd", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "8924f2064a55f97b", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "8957f39eabab5bb4", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "899a591a3c4fd9c0", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "8a9da4b2f52f1eaf", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "8b4c41c439f74c5c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "913248781ca33b2d", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "9152034504255e78", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "93eb7276d776af97", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "947b046670c8c8d9", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "9520a716e0de6722", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "9774d578d55daf07", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "99c35b15f1049d29", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "9a6f00b3489123a9", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "9ac57fb993ba3adf", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "9cd1dbd9f532b3d8", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "a13b64fc4b455e0a", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "a34fe8d9845cb1bb", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "a5f794b415974a1b", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "a6ad418aa1acad80", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "ae5102def1e1a4ec", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "af02c8fab4b128e4", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "afca5aec52db7663", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "afd1472af926a561", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "affec9c5934fbbc1", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "b2190d686f752727", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "b3acf065ddefe020", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "b4b1e46e4fba7afb", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "b6d8728291b5ca66", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "b8f383d724ffcee3", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "b903bcb1c7b501f1", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "ba69d89d7badff60", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "bbdfd77847d7c696", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "c22aeaef63e9e5cd", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "c4f2be0d1f68b520", - "type": "evident-by" - }, - { - "child": "0018cabba7870853", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "020d776a8eced289", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "02f0df017ac2d575", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "054726f64cb2306f", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "08d150f4694bfab6", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "096627983c28a16c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "0a6db93fdecdc77b", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "0e4a29f4a4bf1b1c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "0f0439fa5c346ba5", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "138b1b7eeec7dcce", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "14801a08aaa9fc96", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "1583dad480410342", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "18998ec9777b0855", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "1b77888df2480e35", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "1c894d89b1a9dfae", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "1d0755badf32b31c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "1e4f37d1ec04c225", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "210e1d746d1d7e1f", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "21975b5a4e56ccf8", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "21ee4d32477adc45", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "23e4e0095f02e565", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "23f0e19d6c5007aa", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "2528ec7b3b403e70", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "27f9a3b674fd9865", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "29e22600b4523281", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "2cca0d364a35a5a1", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "2fc71ede71d9c9d2", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "2fe9517801f6316c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "3069c86efc59c2c6", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "31fecc3c610f482f", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "32b3781c19cd70c6", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "336142581f062fae", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "34b7807210629197", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "35116f09175e4ad6", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "356311dbaa2c76ea", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "357c5856d530123c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "36567df0bde243ca", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "36c852813146cc78", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "36e5f3fec95bb945", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "37dc9f63c120cdd2", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "384b2a886d4f8be7", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "3ed4c45326f671c5", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "3f2e76cedc37edba", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "3f67898b48b3ffe7", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "427d8948909e7c49", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "43ad3068e1bb0c4d", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "44befac2eed4c26e", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "4ac565bbf84e1813", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "4c3feae06e65008c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "4e0c8890a29a6ff5", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "4eba024dceb878a2", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "4ecb0c9107a60c68", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "51a810961da9c8cf", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "532bfa8c30742cbd", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "53bc656531f42fa8", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "54e7ab3fe7780a32", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "55cd3f05817e1df4", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "5902f067ebe0b7f9", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "59b306f9fbc04e52", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "5af4e73965015f61", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "5bd257fa3152a233", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "5d4ffc4ed561b23d", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "5ee47b999f4335be", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "5f60a8833aefa9d8", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "5fa702bd21f4aea2", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "60e2befdd230f863", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "6398eed9caeebd39", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "63a8e209e6379e1f", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "64e8b1a724c878a0", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "65e2df3277e1ddd8", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "68b9f461a2318c8d", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "6bf67dff15bf3293", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "6cadd2a7d273b6da", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "6d4cd49146b5c7fa", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "6e42e51bfdb159a5", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "7211b61c98247210", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "7227fc60d04b413b", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "7369bcab06495e7a", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "744a1bdfbb5c54ca", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "748076a5f913ebd8", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "77b242f98eeaadd5", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "787cbf131e865ea0", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "7c64ab0f3192fc8b", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "7cf985b2c7d8cbb6", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "7f1759f7011c8c9e", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "7f3c46d3459da05c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "7f6e4f43fea16eb6", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "8009f937e6000a93", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "80d758ffc5cb3030", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "832dde92d4870032", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "84bdcfdcd21e63ba", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "8507b9eb49e57ebd", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "8924f2064a55f97b", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "8957f39eabab5bb4", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "899a591a3c4fd9c0", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "8a9da4b2f52f1eaf", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "8b4c41c439f74c5c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "913248781ca33b2d", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "9152034504255e78", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "93eb7276d776af97", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "947b046670c8c8d9", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "9520a716e0de6722", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "9774d578d55daf07", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "99c35b15f1049d29", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "9a6f00b3489123a9", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "9ac57fb993ba3adf", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "9cd1dbd9f532b3d8", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "a13b64fc4b455e0a", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "a34fe8d9845cb1bb", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "a5f794b415974a1b", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "a6ad418aa1acad80", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "ae5102def1e1a4ec", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "af02c8fab4b128e4", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "afca5aec52db7663", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "afd1472af926a561", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "affec9c5934fbbc1", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "b2190d686f752727", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "b3acf065ddefe020", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "b4b1e46e4fba7afb", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "b6d8728291b5ca66", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "b8f383d724ffcee3", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "b903bcb1c7b501f1", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "ba69d89d7badff60", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "bbdfd77847d7c696", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "c22aeaef63e9e5cd", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "c4f2be0d1f68b520", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "c7b8122ad3147a22", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "cc91e9dd9f53d86c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "cd2a58859ee7bbea", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "cdcda25595751161", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "ce2f5492b7c30bab", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "d032c628607bbeac", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "d0996ee796691d00", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "d1b5164be88474df", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "d3627a01c402e1c5", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "d6d910cf9da9ae20", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "d7b9d826a663bdab", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "d8974dde1dea9e0e", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "d98799b61e419dc8", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "de10e0e7892d1a73", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "df123e66f0cea22c", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "dff310123928d28d", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "e3d175d4bb0bb2d4", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "e5b23e9e89c90e21", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "e6072de82b0e3a10", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "e7726497c61877e7", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "e7974aac5950ad2d", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "e8d4664ec082f7c1", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "ebe8b6cc385434ed", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "ed49d8f53d40a0d0", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "ef3772e47934433a", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "ef4effd6e471b389", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "efcd72c3320ed830", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f05b7c3e0e183001", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f0d32f8999724bfa", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f1f31f3494dd0a63", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f2d84c96c1b5718a", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f34518e02cd60d50", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f56c1f8ab50fac02", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f59e3d6e5c72c220", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f6aa4e25c98e75a3", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f7eecef8ef84f10d", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "f8ede481ea3896e0", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "fad677a6757c23f6", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "fd48a2f62a1a6cd0", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "fd73eb601add2a0e", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "fdd6a1a374316946", - "parent": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "type": "contains" - }, - { - "child": "d965f9e83fca4979", - "parent": "c7b8122ad3147a22", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "cc91e9dd9f53d86c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "cd2a58859ee7bbea", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "cdcda25595751161", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "ce2f5492b7c30bab", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "d032c628607bbeac", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "d0996ee796691d00", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "d1b5164be88474df", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "d3627a01c402e1c5", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "d6d910cf9da9ae20", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "d7b9d826a663bdab", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "d8974dde1dea9e0e", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "d98799b61e419dc8", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "de10e0e7892d1a73", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "df123e66f0cea22c", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "dff310123928d28d", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "e3d175d4bb0bb2d4", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "e5b23e9e89c90e21", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "e6072de82b0e3a10", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "e7726497c61877e7", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "e7974aac5950ad2d", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "e8d4664ec082f7c1", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "ebe8b6cc385434ed", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "ed49d8f53d40a0d0", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "ef3772e47934433a", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "ef4effd6e471b389", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "efcd72c3320ed830", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f05b7c3e0e183001", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f0d32f8999724bfa", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f1f31f3494dd0a63", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f2d84c96c1b5718a", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f34518e02cd60d50", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f56c1f8ab50fac02", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f59e3d6e5c72c220", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f6aa4e25c98e75a3", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f7eecef8ef84f10d", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "f8ede481ea3896e0", - "type": "evident-by" - }, - { - "child": "272fc1a4e05df74a", - "parent": "fad677a6757c23f6", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "fd48a2f62a1a6cd0", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "fd73eb601add2a0e", - "type": "evident-by" - }, - { - "child": "d965f9e83fca4979", - "parent": "fdd6a1a374316946", - "type": "evident-by" - } - ], - "artifacts": [ - { - "cpes": [ - { - "cpe": "cpe:2.3:a:busybox:busybox:1.36.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:busybox:busybox:1.36.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "binary-classifier-cataloger", - "id": "fad677a6757c23f6", - "language": "", - "licenses": [], - "locations": [ - { - "accessPath": "/bin/busybox", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:46192ee6f5712e705efe6f05ead832816451f73c2eb9599a2b939d7ce90e7e30", - "path": "/bin/busybox" - } - ], - "metadata": { - "matches": [ - { - "classifier": "busybox-binary", - "location": { - "accessPath": "/bin/busybox", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:46192ee6f5712e705efe6f05ead832816451f73c2eb9599a2b939d7ce90e7e30", - "path": "/bin/busybox" - } - } - ] - }, - "metadataType": "binary-signature", - "name": "busybox", - "purl": "pkg:generic/busybox@1.36.1", - "type": "binary", - "version": "1.36.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:go:compute\\/metadata:v0.2.3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "77b242f98eeaadd5", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "cloud.google.com/go/compute/metadata", - "purl": "pkg:golang/cloud.google.com/go/compute@v0.2.3#metadata", - "type": "go-module", - "version": "v0.2.3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:go:container:v1.29.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "787cbf131e865ea0", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:jIltU529R2zBFvP8rhiG1mgeTcnT27KhU0H/1d6SQRg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "cloud.google.com/go/container", - "purl": "pkg:golang/cloud.google.com/go/container@v1.29.0", - "type": "go-module", - "version": "v1.29.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:Azure:azure-sdk-for-go\\/sdk\\/azcore:v1.9.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:Azure:azure_sdk_for_go\\/sdk\\/azcore:v1.9.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "fd73eb601add2a0e", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:lGlwhPtrX6EVml1hO0ivjkUxsSyl4dsiw9qcA1k/3IQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/Azure/azure-sdk-for-go/sdk/azcore", - "purl": "pkg:golang/github.com/Azure/azure-sdk-for-go@v1.9.1#sdk/azcore", - "type": "go-module", - "version": "v1.9.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:Azure:azure-sdk-for-go\\/sdk\\/azidentity:v1.5.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:Azure:azure_sdk_for_go\\/sdk\\/azidentity:v1.5.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "748076a5f913ebd8", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:sO0/P7g68FrryJzljemN+6GTssUXdANk6aJ7T1ZxnsQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/Azure/azure-sdk-for-go/sdk/azidentity", - "purl": "pkg:golang/github.com/Azure/azure-sdk-for-go@v1.5.1#sdk/azidentity", - "type": "go-module", - "version": "v1.5.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:Azure:azure-sdk-for-go\\/sdk\\/internal:v1.5.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:Azure:azure_sdk_for_go\\/sdk\\/internal:v1.5.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "7cf985b2c7d8cbb6", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:6oNBlSdi1QqM1PNW7FPA6xOGA5UNsXnkaYZz9vdPGhA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/Azure/azure-sdk-for-go/sdk/internal", - "purl": "pkg:golang/github.com/Azure/azure-sdk-for-go@v1.5.1#sdk/internal", - "type": "go-module", - "version": "v1.5.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:Azure:azure-sdk-for-go\\/sdk\\/resourcemanager\\/authorization\\/armauthorization:v1.0.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:Azure:azure_sdk_for_go\\/sdk\\/resourcemanager\\/authorization\\/armauthorization:v1.0.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "23f0e19d6c5007aa", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:qtRcg5Y7jNJ4jEzPq4GpWLfTspHdNe2ZK6LjwGcjgmU=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/authorization/armauthorization", - "purl": "pkg:golang/github.com/Azure/azure-sdk-for-go@v1.0.0#sdk/resourcemanager/authorization/armauthorization", - "type": "go-module", - "version": "v1.0.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:Azure:azure-sdk-for-go\\/sdk\\/resourcemanager\\/authorization\\/armauthorization\\/v2:v2.1.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:Azure:azure_sdk_for_go\\/sdk\\/resourcemanager\\/authorization\\/armauthorization\\/v2:v2.1.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "f0d32f8999724bfa", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:6A4M8smF+y8nM/DYsLNQz9n7n2ZGaEVqfz8ZWQirQkI=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/authorization/armauthorization/v2", - "purl": "pkg:golang/github.com/Azure/azure-sdk-for-go@v2.1.1#sdk/resourcemanager/authorization/armauthorization/v2", - "type": "go-module", - "version": "v2.1.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:Azure:azure-sdk-for-go\\/sdk\\/resourcemanager\\/containerservice\\/armcontainerservice\\/v2:v2.4.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:Azure:azure_sdk_for_go\\/sdk\\/resourcemanager\\/containerservice\\/armcontainerservice\\/v2:v2.4.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "65e2df3277e1ddd8", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:1u/K2BFv0MwkG6he8RYuUcbbeK22rkoZbg4lKa/msZU=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v2", - "purl": "pkg:golang/github.com/Azure/azure-sdk-for-go@v2.4.0#sdk/resourcemanager/containerservice/armcontainerservice/v2", - "type": "go-module", - "version": "v2.4.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:AzureAD:microsoft-authentication-library-for-go:v1.2.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:AzureAD:microsoft_authentication_library_for_go:v1.2.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "f6aa4e25c98e75a3", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:DzHpqpoJVaCgOUdVHxE8QB52S6NiVdDQvGlny1qvPqA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/AzureAD/microsoft-authentication-library-for-go", - "purl": "pkg:golang/github.com/AzureAD/microsoft-authentication-library-for-go@v1.2.1", - "type": "go-module", - "version": "v1.2.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:OneOfOne:xxhash:v1.2.8:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "afca5aec52db7663", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:31czK/TI9sNkxIKfaUfGlU47BAxQ0ztGgd9vPyqimf8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/OneOfOne/xxhash", - "purl": "pkg:golang/github.com/OneOfOne/xxhash@v1.2.8", - "type": "go-module", - "version": "v1.2.8" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:agnivade:levenshtein:v1.1.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "7227fc60d04b413b", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:QY8M92nrzkmr798gCo3kmMyqXFzdQVpxLlGPRBij0P8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/agnivade/levenshtein", - "purl": "pkg:golang/github.com/agnivade/levenshtein@v1.1.1", - "type": "go-module", - "version": "v1.1.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:armosec:armoapi-go:v0.0.330:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:armosec:armoapi_go:v0.0.330:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "356311dbaa2c76ea", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:kvyLshJ3VBqWxDO/hvlpVU1DNsrmkb5M0oStw+Uwxb8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/armosec/armoapi-go", - "purl": "pkg:golang/github.com/armosec/armoapi-go@v0.0.330", - "type": "go-module", - "version": "v0.0.330" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:armosec:cluster-notifier-api-go:v0.0.5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:armosec:cluster_notifier_api_go:v0.0.5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "32b3781c19cd70c6", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:UKY58ehKocKgtqzrawyaIHJa5paG9A4srv+4/6n+Ez4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/armosec/cluster-notifier-api-go", - "purl": "pkg:golang/github.com/armosec/cluster-notifier-api-go@v0.0.5", - "type": "go-module", - "version": "v0.0.5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:armosec:gojay:v1.2.15:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "ae5102def1e1a4ec", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:sSB2vnAvacUNkw9nzUYZKcPzhJOyk6/5LK2JCNdmoZY=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/armosec/gojay", - "purl": "pkg:golang/github.com/armosec/gojay@v1.2.15", - "type": "go-module", - "version": "v1.2.15" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:armosec:utils-go:v0.0.57:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:armosec:utils_go:v0.0.57:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "23e4e0095f02e565", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:0RaqexK+t7HeKWfldBv2C1JiLLGuUx9FP0DGWDNRJpg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/armosec/utils-go", - "purl": "pkg:golang/github.com/armosec/utils-go@v0.0.57", - "type": "go-module", - "version": "v0.0.57" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:armosec:utils-k8s-go:v0.0.26:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:armosec:utils_k8s_go:v0.0.26:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "6398eed9caeebd39", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:gVSV1mrALyphaesc+JXbx9SfbxLqfgg1KvvC1/0Hfkk=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/armosec/utils-k8s-go", - "purl": "pkg:golang/github.com/armosec/utils-k8s-go@v0.0.26", - "type": "go-module", - "version": "v0.0.26" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go:v1.44.312:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go:v1.44.312:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "336142581f062fae", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:llrElfzeqG/YOLFFKjg1xNpZCFJ2xraIi3PqSuP+95k=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go", - "purl": "pkg:golang/github.com/aws/aws-sdk-go@v1.44.312", - "type": "go-module", - "version": "v1.44.312" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2:v1.24.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2:v1.24.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "1b77888df2480e35", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:xAojnj+ktS95YZlDf0zxWBkbFtymPeDP+rvUQIH3uAU=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.24.1", - "type": "go-module", - "version": "v1.24.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/config:v1.26.6:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/config:v1.26.6:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "5ee47b999f4335be", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:Z/7w9bUqlRI0FFQpetVuFYEsjzE3h7fpU6HuGmfPL/o=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/config", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.26.6#config", - "type": "go-module", - "version": "v1.26.6" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/credentials:v1.16.16:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/credentials:v1.16.16:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "2cca0d364a35a5a1", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:8q6Rliyv0aUFAVtzaldUEcS+T5gbadPbWdV1WcAddK8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/credentials", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.16.16#credentials", - "type": "go-module", - "version": "v1.16.16" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/feature\\/ec2\\/imds:v1.14.11:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/feature\\/ec2\\/imds:v1.14.11:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "054726f64cb2306f", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:c5I5iH+DZcH3xOIMlz3/tCKJDaHFwYEmxvlh2fAcFo8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/feature/ec2/imds", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.14.11#feature/ec2/imds", - "type": "go-module", - "version": "v1.14.11" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/internal\\/configsources:v1.2.10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/internal\\/configsources:v1.2.10:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "7f6e4f43fea16eb6", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:vF+Zgd9s+H4vOXd5BMaPWykta2a6Ih0AKLq/X6NYKn4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/internal/configsources", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.2.10#internal/configsources", - "type": "go-module", - "version": "v1.2.10" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/internal\\/endpoints\\/v2:v2.5.10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/internal\\/endpoints\\/v2:v2.5.10:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "1d0755badf32b31c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:nYPe006ktcqUji8S2mqXf9c/7NdiKriOwMvWQHgYztw=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/internal/endpoints/v2", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v2.5.10#internal/endpoints/v2", - "type": "go-module", - "version": "v2.5.10" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/internal\\/ini:v1.7.3:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/internal\\/ini:v1.7.3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "27f9a3b674fd9865", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:n3GDfwqF2tzEkXlv5cuy4iy7LpKDtqDMcNLfZDu9rls=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/internal/ini", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.7.3#internal/ini", - "type": "go-module", - "version": "v1.7.3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/service\\/ecr:v1.20.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/service\\/ecr:v1.20.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "5d4ffc4ed561b23d", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:y6LX9GUoEA3mO0qpFl1ZQHj1rFyPWVphlzebiSt2tKE=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/service/ecr", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.20.2#service/ecr", - "type": "go-module", - "version": "v1.20.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/service\\/eks:v1.28.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/service\\/eks:v1.28.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "59b306f9fbc04e52", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:SA+98Rnehl2KXewvGXc2Lw2ns3Y4t9jdMHmEY5hcNws=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/service/eks", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.28.1#service/eks", - "type": "go-module", - "version": "v1.28.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/service\\/iam:v1.21.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/service\\/iam:v1.21.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "e3d175d4bb0bb2d4", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:VTCWgsrromZqnlRgfziqqWWcW7LFkQLwJVYgf/5zgWA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/service/iam", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.21.1#service/iam", - "type": "go-module", - "version": "v1.21.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/service\\/internal\\/accept-encoding:v1.10.4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/service\\/internal\\/accept_encoding:v1.10.4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "14801a08aaa9fc96", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:/b31bi3YVNlkzkBrm9LfpaKoaYZUxIAj4sHfOTmLfqw=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.10.4#service/internal/accept-encoding", - "type": "go-module", - "version": "v1.10.4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/service\\/internal\\/presigned-url:v1.10.10:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/service\\/internal\\/presigned_url:v1.10.10:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "9ac57fb993ba3adf", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:DBYTXwIGQSGs9w4jKm60F5dmCQ3EEruxdc0MFh+3EY4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/service/internal/presigned-url", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.10.10#service/internal/presigned-url", - "type": "go-module", - "version": "v1.10.10" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/service\\/sso:v1.18.7:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/service\\/sso:v1.18.7:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "affec9c5934fbbc1", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:eajuO3nykDPdYicLlP3AGgOyVN3MOlFmZv7WGTuJPow=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/service/sso", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.18.7#service/sso", - "type": "go-module", - "version": "v1.18.7" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/service\\/ssooidc:v1.21.7:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/service\\/ssooidc:v1.21.7:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "b903bcb1c7b501f1", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:QPMJf+Jw8E1l7zqhZmMlFw6w1NmfkfiSK8mS4zOx3BA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/service/ssooidc", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.21.7#service/ssooidc", - "type": "go-module", - "version": "v1.21.7" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:aws-sdk-go-v2\\/service\\/sts:v1.26.7:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:aws_sdk_go_v2\\/service\\/sts:v1.26.7:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "fdd6a1a374316946", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:NzO4Vrau795RkUdSHKEwiR01FaGzGOH1EETJ+5QHnm0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/aws-sdk-go-v2/service/sts", - "purl": "pkg:golang/github.com/aws/aws-sdk-go-v2@v1.26.7#service/sts", - "type": "go-module", - "version": "v1.26.7" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:aws:smithy-go:v1.19.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:aws:smithy_go:v1.19.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "d7b9d826a663bdab", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:KWFKQV80DpP3vJrrA9sVAHQ5gc2z8i4EzrLhLlWXcBM=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/aws/smithy-go", - "purl": "pkg:golang/github.com/aws/smithy-go@v1.19.0", - "type": "go-module", - "version": "v1.19.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:beorn7:perks:v1.0.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "84bdcfdcd21e63ba", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/beorn7/perks", - "purl": "pkg:golang/github.com/beorn7/perks@v1.0.1", - "type": "go-module", - "version": "v1.0.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:briandowns:spinner:v1.23.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "efcd72c3320ed830", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:alDF2guRWqa/FOZZYWjlMIx2L6H0wyewPxo/CH4Pt2A=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/briandowns/spinner", - "purl": "pkg:golang/github.com/briandowns/spinner@v1.23.0", - "type": "go-module", - "version": "v1.23.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:cenkalti:backoff:v2.2.1\\+incompatible:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "b6d8728291b5ca66", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/cenkalti/backoff", - "purl": "pkg:golang/github.com/cenkalti/backoff@v2.2.1%2Bincompatible", - "type": "go-module", - "version": "v2.2.1+incompatible" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:cenkalti:backoff\\/v4:v4.2.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "d8974dde1dea9e0e", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/cenkalti/backoff/v4", - "purl": "pkg:golang/github.com/cenkalti/backoff@v4.2.1#v4", - "type": "go-module", - "version": "v4.2.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:cespare:xxhash\\/v2:v2.2.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "c22aeaef63e9e5cd", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/cespare/xxhash/v2", - "purl": "pkg:golang/github.com/cespare/xxhash@v2.2.0#v2", - "type": "go-module", - "version": "v2.2.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:coreos:go-oidc:v2.2.1\\+incompatible:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:coreos:go_oidc:v2.2.1\\+incompatible:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "9520a716e0de6722", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:mh48q/BqXqgjVHpy2ZY7WnWAbenxRjsz9N1i1YxjHAk=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/coreos/go-oidc", - "purl": "pkg:golang/github.com/coreos/go-oidc@v2.2.1%2Bincompatible", - "type": "go-module", - "version": "v2.2.1+incompatible" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:davecgh:go-spew:v1.1.2-0.20180830191138-d8f796af33cc:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:davecgh:go_spew:v1.1.2-0.20180830191138-d8f796af33cc:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "b3acf065ddefe020", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/davecgh/go-spew", - "purl": "pkg:golang/github.com/davecgh/go-spew@v1.1.2-0.20180830191138-d8f796af33cc", - "type": "go-module", - "version": "v1.1.2-0.20180830191138-d8f796af33cc" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:docker:docker:v25.0.1\\+incompatible:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "3f67898b48b3ffe7", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:k5TYd5rIVQRSqcTwCID+cyVA0yRg86+Pcrz1ls0/frA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/docker/docker", - "purl": "pkg:golang/github.com/docker/docker@v25.0.1%2Bincompatible", - "type": "go-module", - "version": "v25.0.1+incompatible" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:emicklei:go-restful\\/v3:v3.11.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:emicklei:go_restful\\/v3:v3.11.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "8b4c41c439f74c5c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:rAQeMHw1c7zTmncogyy8VvRZwtkmkZ4FxERmMY4rD+g=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/emicklei/go-restful/v3", - "purl": "pkg:golang/github.com/emicklei/go-restful@v3.11.0#v3", - "type": "go-module", - "version": "v3.11.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:fatih:color:v1.15.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "fd48a2f62a1a6cd0", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/fatih/color", - "purl": "pkg:golang/github.com/fatih/color@v1.15.0", - "type": "go-module", - "version": "v1.15.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:francoispqt:gojay:v1.2.13:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "3ed4c45326f671c5", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:d2m3sFjloqoIUQU3TsHBgj6qg/BVGlTBeHDUmyJnXKk=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/francoispqt/gojay", - "purl": "pkg:golang/github.com/francoispqt/gojay@v1.2.13", - "type": "go-module", - "version": "v1.2.13" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:fsnotify:fsnotify:v1.7.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "d032c628607bbeac", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/fsnotify/fsnotify", - "purl": "pkg:golang/github.com/fsnotify/fsnotify@v1.7.0", - "type": "go-module", - "version": "v1.7.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:go-ini:ini:v1.67.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go_ini:ini:v1.67.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go:ini:v1.67.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "5902f067ebe0b7f9", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:z6ZrTEZqSWOTyH2FlglNbNgARyHG8oLW9gMELqKr06A=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/go-ini/ini", - "purl": "pkg:golang/github.com/go-ini/ini@v1.67.0", - "type": "go-module", - "version": "v1.67.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:go-logr:logr:v1.4.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go_logr:logr:v1.4.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go:logr:v1.4.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "08d150f4694bfab6", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/go-logr/logr", - "purl": "pkg:golang/github.com/go-logr/logr@v1.4.1", - "type": "go-module", - "version": "v1.4.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:go-logr:stdr:v1.2.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go_logr:stdr:v1.2.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go:stdr:v1.2.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "a13b64fc4b455e0a", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/go-logr/stdr", - "purl": "pkg:golang/github.com/go-logr/stdr@v1.2.2", - "type": "go-module", - "version": "v1.2.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:go-openapi:jsonpointer:v0.20.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go_openapi:jsonpointer:v0.20.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go:jsonpointer:v0.20.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "f7eecef8ef84f10d", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:mQc3nmndL8ZBzStEo3JYF8wzmeWffDH4VbXz58sAx6Q=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/go-openapi/jsonpointer", - "purl": "pkg:golang/github.com/go-openapi/jsonpointer@v0.20.2", - "type": "go-module", - "version": "v0.20.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:go-openapi:jsonreference:v0.20.4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go_openapi:jsonreference:v0.20.4:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go:jsonreference:v0.20.4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "9152034504255e78", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:bKlDxQxQJgwpUSgOENiMPzCTBVuc7vTdXSSgNeAhojU=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/go-openapi/jsonreference", - "purl": "pkg:golang/github.com/go-openapi/jsonreference@v0.20.4", - "type": "go-module", - "version": "v0.20.4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:go-openapi:swag:v0.22.9:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go_openapi:swag:v0.22.9:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:go:swag:v0.22.9:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "35116f09175e4ad6", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:XX2DssF+mQKM2DHsbgZK74y/zj4mo9I99+89xUmuZCE=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/go-openapi/swag", - "purl": "pkg:golang/github.com/go-openapi/swag@v0.22.9", - "type": "go-module", - "version": "v0.22.9" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:gobwas:glob:v0.2.3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "63a8e209e6379e1f", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/gobwas/glob", - "purl": "pkg:golang/github.com/gobwas/glob@v0.2.3", - "type": "go-module", - "version": "v0.2.3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:gogo:protobuf:v1.3.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "68b9f461a2318c8d", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/gogo/protobuf", - "purl": "pkg:golang/github.com/gogo/protobuf@v1.3.2", - "type": "go-module", - "version": "v1.3.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang-jwt:jwt\\/v5:v5.2.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:golang_jwt:jwt\\/v5:v5.2.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:golang:jwt\\/v5:v5.2.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "43ad3068e1bb0c4d", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:d/ix8ftRUorsN+5eMIlF4T6J8CAt9rch3My2winC1Jw=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/golang-jwt/jwt/v5", - "purl": "pkg:golang/github.com/golang-jwt/jwt@v5.2.0#v5", - "type": "go-module", - "version": "v5.2.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:glog:v1.1.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "d6d910cf9da9ae20", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:DVjP2PbBOzHyzA+dn3WhHIq4NdVu3Q+pvivFICf/7fo=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/golang/glog", - "purl": "pkg:golang/github.com/golang/glog@v1.1.2", - "type": "go-module", - "version": "v1.1.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:groupcache:v0.0.0-20210331224755-41bb18bfe9da:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "e7726497c61877e7", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/golang/groupcache", - "purl": "pkg:golang/github.com/golang/groupcache@v0.0.0-20210331224755-41bb18bfe9da", - "type": "go-module", - "version": "v0.0.0-20210331224755-41bb18bfe9da" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:protobuf:v1.5.3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "899a591a3c4fd9c0", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/golang/protobuf", - "purl": "pkg:golang/github.com/golang/protobuf@v1.5.3", - "type": "go-module", - "version": "v1.5.3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:gnostic-models:v0.6.9-0.20230804172637-c7be7c783f49:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:google:gnostic_models:v0.6.9-0.20230804172637-c7be7c783f49:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "d98799b61e419dc8", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:0VpGH+cDhbDtdcweoyCVsF3fhN8kejK6rFe/2FFX2nU=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/google/gnostic-models", - "purl": "pkg:golang/github.com/google/gnostic-models@v0.6.9-0.20230804172637-c7be7c783f49", - "type": "go-module", - "version": "v0.6.9-0.20230804172637-c7be7c783f49" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:gofuzz:v1.2.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "ef3772e47934433a", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/google/gofuzz", - "purl": "pkg:golang/github.com/google/gofuzz@v1.2.0", - "type": "go-module", - "version": "v1.2.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:s2a-go:v0.1.7:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:google:s2a_go:v0.1.7:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "af02c8fab4b128e4", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:60BLSyTrOV4/haCDW4zb1guZItoSq8foHCXrAnjBo/o=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/google/s2a-go", - "purl": "pkg:golang/github.com/google/s2a-go@v0.1.7", - "type": "go-module", - "version": "v0.1.7" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:uuid:v1.6.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "947b046670c8c8d9", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/google/uuid", - "purl": "pkg:golang/github.com/google/uuid@v1.6.0", - "type": "go-module", - "version": "v1.6.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:googleapis:enterprise-certificate-proxy:v0.3.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:googleapis:enterprise_certificate_proxy:v0.3.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "31fecc3c610f482f", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:Vie5ybvEvT75RniqhfFxPRy3Bf7vr3h0cechB90XaQs=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/googleapis/enterprise-certificate-proxy", - "purl": "pkg:golang/github.com/googleapis/enterprise-certificate-proxy@v0.3.2", - "type": "go-module", - "version": "v0.3.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:googleapis:gax-go\\/v2:v2.12.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:googleapis:gax_go\\/v2:v2.12.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "744a1bdfbb5c54ca", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:A+gCJKdRfqXkr+BIRGtZLibNXf0m1f9E4HG56etFpas=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/googleapis/gax-go/v2", - "purl": "pkg:golang/github.com/googleapis/gax-go@v2.12.0#v2", - "type": "go-module", - "version": "v2.12.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:gorilla:mux:v1.8.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "8a9da4b2f52f1eaf", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/gorilla/mux", - "purl": "pkg:golang/github.com/gorilla/mux@v1.8.1", - "type": "go-module", - "version": "v1.8.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:gorilla:websocket:v1.5.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "0f0439fa5c346ba5", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:gmztn0JnHVt9JZquRuzLw3g4wouNVzKL15iLr/zn/QY=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/gorilla/websocket", - "purl": "pkg:golang/github.com/gorilla/websocket@v1.5.1", - "type": "go-module", - "version": "v1.5.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:grpc-ecosystem:grpc-gateway\\/v2:v2.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:grpc-ecosystem:grpc_gateway\\/v2:v2.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:grpc_ecosystem:grpc-gateway\\/v2:v2.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:grpc_ecosystem:grpc_gateway\\/v2:v2.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:grpc:grpc-gateway\\/v2:v2.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:grpc:grpc_gateway\\/v2:v2.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "9774d578d55daf07", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:RtRsiaGvWxcwd8y3BiRZxsylPT8hLWZ5SPcfI+3IDNk=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/grpc-ecosystem/grpc-gateway/v2", - "purl": "pkg:golang/github.com/grpc-ecosystem/grpc-gateway@v2.18.0#v2", - "type": "go-module", - "version": "v2.18.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:hashicorp:hcl:v1.0.1-vault-5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "93eb7276d776af97", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:kI3hhbbyzr4dldA8UdTb7ZlVVlI2DACdCfz31RPDgJM=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/hashicorp/hcl", - "purl": "pkg:golang/github.com/hashicorp/hcl@v1.0.1-vault-5", - "type": "go-module", - "version": "v1.0.1-vault-5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:imdario:mergo:v0.3.16:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "37dc9f63c120cdd2", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/imdario/mergo", - "purl": "pkg:golang/github.com/imdario/mergo@v0.3.16", - "type": "go-module", - "version": "v0.3.16" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:jmespath:go-jmespath:v0.4.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:jmespath:go_jmespath:v0.4.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "36c852813146cc78", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/jmespath/go-jmespath", - "purl": "pkg:golang/github.com/jmespath/go-jmespath@v0.4.0", - "type": "go-module", - "version": "v0.4.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:josharian:intern:v1.0.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "7f3c46d3459da05c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/josharian/intern", - "purl": "pkg:golang/github.com/josharian/intern@v1.0.0", - "type": "go-module", - "version": "v1.0.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:json-iterator:go:v1.1.12:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:json_iterator:go:v1.1.12:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:json:go:v1.1.12:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "0018cabba7870853", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/json-iterator/go", - "purl": "pkg:golang/github.com/json-iterator/go@v1.1.12", - "type": "go-module", - "version": "v1.1.12" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:kubescape:backend:v0.0.19:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "d0996ee796691d00", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:u8gp/VljTEFrdjtHo+IB9KeBhf+8n1St+J2kOFvPj+I=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/kubescape/backend", - "purl": "pkg:golang/github.com/kubescape/backend@v0.0.19", - "type": "go-module", - "version": "v0.0.19" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:kubescape:go-logger:v0.0.22:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:kubescape:go_logger:v0.0.22:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "d1b5164be88474df", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:gle7wH6emOiGv9ljdpVi82pWLQ3jGucrUucvil6JXHE=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/kubescape/go-logger", - "purl": "pkg:golang/github.com/kubescape/go-logger@v0.0.22", - "type": "go-module", - "version": "v0.0.22" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:kubescape:k8s-interface:v0.0.163:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:kubescape:k8s_interface:v0.0.163:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "532bfa8c30742cbd", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:PQkXh7YRk/tqtipEuFCRa7Ur08DHknTiBavPObgoJLk=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/kubescape/k8s-interface", - "purl": "pkg:golang/github.com/kubescape/k8s-interface@v0.0.163", - "type": "go-module", - "version": "v0.0.163" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:kubescape:kollector:v0.0.0-20240327130938-675ecf951417:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "5fa702bd21f4aea2", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goBuildSettings": [ - { - "key": "-buildmode", - "value": "exe" - }, - { - "key": "-compiler", - "value": "gc" - }, - { - "key": "-ldflags", - "value": "-s" - }, - { - "key": "CGO_ENABLED", - "value": "0" - }, - { - "key": "GOARCH", - "value": "amd64" - }, - { - "key": "GOOS", - "value": "linux" - }, - { - "key": "GOAMD64", - "value": "v1" - }, - { - "key": "vcs", - "value": "git" - }, - { - "key": "vcs.revision", - "value": "675ecf9514171fa6f5a6bbbe90fe3000cf996d9e" - }, - { - "key": "vcs.time", - "value": "2024-03-27T13:09:38Z" - }, - { - "key": "vcs.modified", - "value": "false" - } - ], - "goCompiledVersion": "go1.21.8", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/kubescape/kollector", - "purl": "pkg:golang/github.com/kubescape/kollector@v0.0.0-20240327130938-675ecf951417", - "type": "go-module", - "version": "v0.0.0-20240327130938-675ecf951417" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:kubescape:opa-utils:v0.0.278:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:kubescape:opa_utils:v0.0.278:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "4ecb0c9107a60c68", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:x0akigrjYjocD0HzlRZ4+ZgL+ZK33286d2L48z6m0PE=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/kubescape/opa-utils", - "purl": "pkg:golang/github.com/kubescape/opa-utils@v0.0.278", - "type": "go-module", - "version": "v0.0.278" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:kubescape:rbac-utils:v0.0.21-0.20230806101615-07e36f555520:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:kubescape:rbac_utils:v0.0.21-0.20230806101615-07e36f555520:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "f8ede481ea3896e0", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:SqlwF8G+oFazeYmZQKoPczLEflBQpwpHCU8DoLLyfj8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/kubescape/rbac-utils", - "purl": "pkg:golang/github.com/kubescape/rbac-utils@v0.0.21-0.20230806101615-07e36f555520", - "type": "go-module", - "version": "v0.0.21-0.20230806101615-07e36f555520" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:kylelemons:godebug:v1.1.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "34b7807210629197", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/kylelemons/godebug", - "purl": "pkg:golang/github.com/kylelemons/godebug@v1.1.0", - "type": "go-module", - "version": "v1.1.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:magiconair:properties:v1.8.7:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "8009f937e6000a93", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/magiconair/properties", - "purl": "pkg:golang/github.com/magiconair/properties@v1.8.7", - "type": "go-module", - "version": "v1.8.7" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:mailru:easyjson:v0.7.7:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "54e7ab3fe7780a32", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/mailru/easyjson", - "purl": "pkg:golang/github.com/mailru/easyjson@v0.7.7", - "type": "go-module", - "version": "v0.7.7" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:mattn:go-colorable:v0.1.13:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:mattn:go_colorable:v0.1.13:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "0a6db93fdecdc77b", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/mattn/go-colorable", - "purl": "pkg:golang/github.com/mattn/go-colorable@v0.1.13", - "type": "go-module", - "version": "v0.1.13" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:mattn:go-isatty:v0.0.20:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:mattn:go_isatty:v0.0.20:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "096627983c28a16c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/mattn/go-isatty", - "purl": "pkg:golang/github.com/mattn/go-isatty@v0.0.20", - "type": "go-module", - "version": "v0.0.20" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:matttproud:golang-protobuf-extensions\\/v2:v2.0.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:matttproud:golang_protobuf_extensions\\/v2:v2.0.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "cdcda25595751161", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/matttproud/golang_protobuf_extensions/v2", - "purl": "pkg:golang/github.com/matttproud/golang_protobuf_extensions@v2.0.0#v2", - "type": "go-module", - "version": "v2.0.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:mitchellh:mapstructure:v1.5.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "1583dad480410342", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/mitchellh/mapstructure", - "purl": "pkg:golang/github.com/mitchellh/mapstructure@v1.5.0", - "type": "go-module", - "version": "v1.5.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:modern-go:concurrent:v0.0.0-20180306012644-bacd9c7ef1dd:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:modern_go:concurrent:v0.0.0-20180306012644-bacd9c7ef1dd:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:modern:concurrent:v0.0.0-20180306012644-bacd9c7ef1dd:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "b2190d686f752727", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/modern-go/concurrent", - "purl": "pkg:golang/github.com/modern-go/concurrent@v0.0.0-20180306012644-bacd9c7ef1dd", - "type": "go-module", - "version": "v0.0.0-20180306012644-bacd9c7ef1dd" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:modern-go:reflect2:v1.0.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:modern_go:reflect2:v1.0.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:modern:reflect2:v1.0.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "ce2f5492b7c30bab", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/modern-go/reflect2", - "purl": "pkg:golang/github.com/modern-go/reflect2@v1.0.2", - "type": "go-module", - "version": "v1.0.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:munnerz:goautoneg:v0.0.0-20191010083416-a7dc8b61c822:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "e5b23e9e89c90e21", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/munnerz/goautoneg", - "purl": "pkg:golang/github.com/munnerz/goautoneg@v0.0.0-20191010083416-a7dc8b61c822", - "type": "go-module", - "version": "v0.0.0-20191010083416-a7dc8b61c822" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:olvrng:ujson:v1.1.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "df123e66f0cea22c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:8xVUzVlqwdMVWh5d1UHBtLQ1D50nxoPuPEq9Wozs8oA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/olvrng/ujson", - "purl": "pkg:golang/github.com/olvrng/ujson@v1.1.0", - "type": "go-module", - "version": "v1.1.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:open-policy-agent:opa:v0.61.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:open_policy_agent:opa:v0.61.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:open-policy:opa:v0.61.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:open_policy:opa:v0.61.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:open:opa:v0.61.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "f05b7c3e0e183001", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:nhncQ2CAYtQTV/SMBhDDPsCpCQsUW+zO/1j+T5V7oZg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/open-policy-agent/opa", - "purl": "pkg:golang/github.com/open-policy-agent/opa@v0.61.0", - "type": "go-module", - "version": "v0.61.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:opencontainers:go-digest:v1.0.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:opencontainers:go_digest:v1.0.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "1e4f37d1ec04c225", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/opencontainers/go-digest", - "purl": "pkg:golang/github.com/opencontainers/go-digest@v1.0.0", - "type": "go-module", - "version": "v1.0.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:opencontainers:image-spec:v1.1.0-rc5:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:opencontainers:image_spec:v1.1.0-rc5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "427d8948909e7c49", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:Ygwkfw9bpDvs+c9E34SdgGOj41dX/cbdlwvlWt0pnFI=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/opencontainers/image-spec", - "purl": "pkg:golang/github.com/opencontainers/image-spec@v1.1.0-rc5", - "type": "go-module", - "version": "v1.1.0-rc5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:pelletier:go-toml\\/v2:v2.1.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:pelletier:go_toml\\/v2:v2.1.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "80d758ffc5cb3030", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/pelletier/go-toml/v2", - "purl": "pkg:golang/github.com/pelletier/go-toml@v2.1.0#v2", - "type": "go-module", - "version": "v2.1.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:pkg:browser:v0.0.0-20240102092130-5ac0b6a4141c:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "4eba024dceb878a2", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/pkg/browser", - "purl": "pkg:golang/github.com/pkg/browser@v0.0.0-20240102092130-5ac0b6a4141c", - "type": "go-module", - "version": "v0.0.0-20240102092130-5ac0b6a4141c" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:pkg:errors:v0.9.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "cc91e9dd9f53d86c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/pkg/errors", - "purl": "pkg:golang/github.com/pkg/errors@v0.9.1", - "type": "go-module", - "version": "v0.9.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:pmezard:go-difflib:v1.0.1-0.20181226105442-5d4384ee4fb2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:pmezard:go_difflib:v1.0.1-0.20181226105442-5d4384ee4fb2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "3069c86efc59c2c6", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/pmezard/go-difflib", - "purl": "pkg:golang/github.com/pmezard/go-difflib@v1.0.1-0.20181226105442-5d4384ee4fb2", - "type": "go-module", - "version": "v1.0.1-0.20181226105442-5d4384ee4fb2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:pquerna:cachecontrol:v0.2.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "99c35b15f1049d29", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:vBXSNuE5MYP9IJ5kjsdo8uq+w41jSPgvba2DEnkRx9k=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/pquerna/cachecontrol", - "purl": "pkg:golang/github.com/pquerna/cachecontrol@v0.2.0", - "type": "go-module", - "version": "v0.2.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:prometheus:client-golang:v1.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:prometheus:client_golang:v1.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "4ac565bbf84e1813", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:HzFfmkOzH5Q8L8G+kSJKUx5dtG87sewO+FoDDqP5Tbk=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/prometheus/client_golang", - "purl": "pkg:golang/github.com/prometheus/client_golang@v1.18.0", - "type": "go-module", - "version": "v1.18.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:prometheus:client-model:v0.5.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:prometheus:client_model:v0.5.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "9cd1dbd9f532b3d8", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/prometheus/client_model", - "purl": "pkg:golang/github.com/prometheus/client_model@v0.5.0", - "type": "go-module", - "version": "v0.5.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:prometheus:common:v0.45.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "4c3feae06e65008c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:2BGz0eBc2hdMDLnO/8n0jeB3oPrt2D08CekT0lneoxM=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/prometheus/common", - "purl": "pkg:golang/github.com/prometheus/common@v0.45.0", - "type": "go-module", - "version": "v0.45.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:prometheus:procfs:v0.12.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "2528ec7b3b403e70", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/prometheus/procfs", - "purl": "pkg:golang/github.com/prometheus/procfs@v0.12.0", - "type": "go-module", - "version": "v0.12.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:rcrowley:go-metrics:v0.0.0-20201227073835-cf1acfcdf475:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:rcrowley:go_metrics:v0.0.0-20201227073835-cf1acfcdf475:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "a5f794b415974a1b", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/rcrowley/go-metrics", - "purl": "pkg:golang/github.com/rcrowley/go-metrics@v0.0.0-20201227073835-cf1acfcdf475", - "type": "go-module", - "version": "v0.0.0-20201227073835-cf1acfcdf475" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:sagikazarmark:slog-shim:v0.1.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:sagikazarmark:slog_shim:v0.1.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "f1f31f3494dd0a63", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6gto+ugjYE=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/sagikazarmark/slog-shim", - "purl": "pkg:golang/github.com/sagikazarmark/slog-shim@v0.1.0", - "type": "go-module", - "version": "v0.1.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:sirupsen:logrus:v1.9.3:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "ed49d8f53d40a0d0", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/sirupsen/logrus", - "purl": "pkg:golang/github.com/sirupsen/logrus@v1.9.3", - "type": "go-module", - "version": "v1.9.3" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:spf13:afero:v1.11.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "210e1d746d1d7e1f", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/spf13/afero", - "purl": "pkg:golang/github.com/spf13/afero@v1.11.0", - "type": "go-module", - "version": "v1.11.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:spf13:cast:v1.6.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "6cadd2a7d273b6da", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:GEiTHELF+vaR5dhz3VqZfFSzZjYbgeKDpBxQVS4GYJ0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/spf13/cast", - "purl": "pkg:golang/github.com/spf13/cast@v1.6.0", - "type": "go-module", - "version": "v1.6.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:spf13:pflag:v1.0.5:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "f34518e02cd60d50", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/spf13/pflag", - "purl": "pkg:golang/github.com/spf13/pflag@v1.0.5", - "type": "go-module", - "version": "v1.0.5" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:spf13:viper:v1.18.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "2fc71ede71d9c9d2", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:LUXCnvUvSM6FXAsj6nnfc8Q2tp1dIgUfY9Kc8GsSOiQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/spf13/viper", - "purl": "pkg:golang/github.com/spf13/viper@v1.18.2", - "type": "go-module", - "version": "v1.18.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:stretchr:testify:v1.8.4:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "ebe8b6cc385434ed", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/stretchr/testify", - "purl": "pkg:golang/github.com/stretchr/testify@v1.8.4", - "type": "go-module", - "version": "v1.8.4" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:stripe:stripe-go\\/v74:v74.28.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:stripe:stripe_go\\/v74:v74.28.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "b4b1e46e4fba7afb", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:ItzPPy+cjMKbR3Oihknt/8dv6PANp3hTThUGZjhF9lc=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/stripe/stripe-go/v74", - "purl": "pkg:golang/github.com/stripe/stripe-go@v74.28.0#v74", - "type": "go-module", - "version": "v74.28.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:subosito:gotenv:v1.6.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "3f2e76cedc37edba", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/subosito/gotenv", - "purl": "pkg:golang/github.com/subosito/gotenv@v1.6.0", - "type": "go-module", - "version": "v1.6.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:tchap:go-patricia\\/v2:v2.3.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:tchap:go_patricia\\/v2:v2.3.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "6d4cd49146b5c7fa", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:6rQp39lgIYZ+MHmdEq4xzuk1t7OdC35z/xm0BGhTkes=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/tchap/go-patricia/v2", - "purl": "pkg:golang/github.com/tchap/go-patricia@v2.3.1#v2", - "type": "go-module", - "version": "v2.3.1" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:uptrace:opentelemetry-go-extra\\/otelutil:v0.2.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:uptrace:opentelemetry_go_extra\\/otelutil:v0.2.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "913248781ca33b2d", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:CNznWHkrbA6o1q2H/BsH4tIHf4zbKNtndeoV+AH8z0U=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/uptrace/opentelemetry-go-extra/otelutil", - "purl": "pkg:golang/github.com/uptrace/opentelemetry-go-extra@v0.2.2#otelutil", - "type": "go-module", - "version": "v0.2.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:uptrace:opentelemetry-go-extra\\/otelzap:v0.2.2:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:uptrace:opentelemetry_go_extra\\/otelzap:v0.2.2:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "a6ad418aa1acad80", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:uyrW06oJi4iWvhjPLVfk4qrSP2Zm0AMozKKDmp6i4pE=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/uptrace/opentelemetry-go-extra/otelzap", - "purl": "pkg:golang/github.com/uptrace/opentelemetry-go-extra@v0.2.2#otelzap", - "type": "go-module", - "version": "v0.2.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:uptrace:uptrace-go:v1.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:uptrace:uptrace_go:v1.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "7c64ab0f3192fc8b", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:RY15qy19C0irbe2UCxQbjenk8WyUdvUV756R9ZpqCGI=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/uptrace/uptrace-go", - "purl": "pkg:golang/github.com/uptrace/uptrace-go@v1.18.0", - "type": "go-module", - "version": "v1.18.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:xeipuuv:gojsonpointer:v0.0.0-20190905194746-02993c407bfb:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "64e8b1a724c878a0", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:zGWFAtiMcyryUHoUjUJX0/lt1H2+i2Ka2n+D3DImSNo=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/xeipuuv/gojsonpointer", - "purl": "pkg:golang/github.com/xeipuuv/gojsonpointer@v0.0.0-20190905194746-02993c407bfb", - "type": "go-module", - "version": "v0.0.0-20190905194746-02993c407bfb" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:xeipuuv:gojsonreference:v0.0.0-20180127040603-bd5ef7bd5415:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "b8f383d724ffcee3", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/xeipuuv/gojsonreference", - "purl": "pkg:golang/github.com/xeipuuv/gojsonreference@v0.0.0-20180127040603-bd5ef7bd5415", - "type": "go-module", - "version": "v0.0.0-20180127040603-bd5ef7bd5415" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:yashtewari:glob-intersection:v0.2.0:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:yashtewari:glob_intersection:v0.2.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "afd1472af926a561", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:8iuHdN88yYuCzCdjt0gDe+6bAhUwBeEWqThExu54RFg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "github.com/yashtewari/glob-intersection", - "purl": "pkg:golang/github.com/yashtewari/glob-intersection@v0.2.0", - "type": "go-module", - "version": "v0.2.0" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "6e42e51bfdb159a5", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opencensus.io", - "purl": "pkg:golang/go.opencensus.io@v0.24.0", - "type": "go-module", - "version": "v0.24.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:contrib:instrumentation\\/google.golang.org\\/grpc\\/otelgrpc:v0.47.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "5bd257fa3152a233", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:UNQQKPfTDe1J81ViolILjTKPr9WetKW6uei2hFgJmFs=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc", - "purl": "pkg:golang/go.opentelemetry.io/contrib/instrumentation@v0.47.0#google.golang.org/grpc/otelgrpc", - "type": "go-module", - "version": "v0.47.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:contrib:instrumentation\\/runtime:v0.44.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "60e2befdd230f863", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:TXu20nL4yYfJlQeqG/D3Ia6b0p2HZmLfJto9hqJTQ/c=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/contrib/instrumentation/runtime", - "purl": "pkg:golang/go.opentelemetry.io/contrib/instrumentation@v0.44.0#runtime", - "type": "go-module", - "version": "v0.44.0" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "a34fe8d9845cb1bb", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:xS7Ku+7yTFvDfDraDIJVpw7XPyuHlB9MCiqqX5mcJ6Y=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel", - "purl": "pkg:golang/go.opentelemetry.io/otel@v1.22.0", - "type": "go-module", - "version": "v1.22.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:otel:exporters\\/otlp\\/otlpmetric:v0.41.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "e8d4664ec082f7c1", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:k0k7hFNDd8K4iOMJXj7s8sHaC4mhTlAeppRmZXLgZ6k=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel/exporters/otlp/otlpmetric", - "purl": "pkg:golang/go.opentelemetry.io/otel/exporters@v0.41.0#otlp/otlpmetric", - "type": "go-module", - "version": "v0.41.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:otel:exporters\\/otlp\\/otlpmetric\\/otlpmetricgrpc:v0.41.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "f56c1f8ab50fac02", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:HgbDTD8pioFdY3NRc/YCvsWjqQPtweGyXxa32LgnTOw=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc", - "purl": "pkg:golang/go.opentelemetry.io/otel/exporters@v0.41.0#otlp/otlpmetric/otlpmetricgrpc", - "type": "go-module", - "version": "v0.41.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:otel:exporters\\/otlp\\/otlptrace:v1.22.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "9a6f00b3489123a9", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:9M3+rhx7kZCIQQhQRYaZCdNu1V73tm4TvXs2ntl98C4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel/exporters/otlp/otlptrace", - "purl": "pkg:golang/go.opentelemetry.io/otel/exporters@v1.22.0#otlp/otlptrace", - "type": "go-module", - "version": "v1.22.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:otel:exporters\\/otlp\\/otlptrace\\/otlptracegrpc:v1.22.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "0e4a29f4a4bf1b1c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:H2JFgRcGiyHg7H7bwcwaQJYrNFqCqrbTQ8K4p1OvDu8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc", - "purl": "pkg:golang/go.opentelemetry.io/otel/exporters@v1.22.0#otlp/otlptrace/otlptracegrpc", - "type": "go-module", - "version": "v1.22.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:otel:exporters\\/stdout\\/stdouttrace:v1.18.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "f2d84c96c1b5718a", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:hSWWvDjXHVLq9DkmB+77fl8v7+t+yYiS+eNkiplDK54=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel/exporters/stdout/stdouttrace", - "purl": "pkg:golang/go.opentelemetry.io/otel/exporters@v1.18.0#stdout/stdouttrace", - "type": "go-module", - "version": "v1.18.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:otel:metric:v1.22.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "02f0df017ac2d575", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:lypMQnGyJYeuYPhOM/bgjbFM6WE44W1/T45er4d8Hhg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel/metric", - "purl": "pkg:golang/go.opentelemetry.io/otel/metric@v1.22.0", - "type": "go-module", - "version": "v1.22.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:otel:sdk:v1.22.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "44befac2eed4c26e", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:6coWHw9xw7EfClIC/+O31R8IY3/+EiRFHevmHafB2Gw=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel/sdk", - "purl": "pkg:golang/go.opentelemetry.io/otel/sdk@v1.22.0", - "type": "go-module", - "version": "v1.22.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:otel:sdk\\/metric:v0.41.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "ba69d89d7badff60", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:c3sAt9/pQ5fSIUfl0gPtClV3HhE18DCVzByD33R/zsk=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel/sdk/metric", - "purl": "pkg:golang/go.opentelemetry.io/otel/sdk@v0.41.0#metric", - "type": "go-module", - "version": "v0.41.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:otel:trace:v1.22.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "36567df0bde243ca", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:Hg6pPujv0XG9QaVbGOBVHunyuLcCC3jN7WEhPx83XD0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/otel/trace", - "purl": "pkg:golang/go.opentelemetry.io/otel/trace@v1.22.0", - "type": "go-module", - "version": "v1.22.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:proto:otlp:v1.0.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "55cd3f05817e1df4", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:T0TX0tmXU8a3CbNXzEKGeU5mIVOdf0oykP+u2lIVU/I=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.opentelemetry.io/proto/otlp", - "purl": "pkg:golang/go.opentelemetry.io/proto/otlp@v1.0.0", - "type": "go-module", - "version": "v1.0.0" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "5f60a8833aefa9d8", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.uber.org/multierr", - "purl": "pkg:golang/go.uber.org/multierr@v1.11.0", - "type": "go-module", - "version": "v1.11.0" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "832dde92d4870032", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "go.uber.org/zap", - "purl": "pkg:golang/go.uber.org/zap@v1.27.0", - "type": "go-module", - "version": "v1.27.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:x\\/crypto:v0.19.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "29e22600b4523281", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:ENy+Az/9Y1vSrlrvBSyna3PITt4tiZLf7sgCjZBX7Wo=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "golang.org/x/crypto", - "purl": "pkg:golang/golang.org/x/crypto@v0.19.0", - "type": "go-module", - "version": "v0.19.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:x\\/exp:v0.0.0-20240222234643-814bf88cf225:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "21ee4d32477adc45", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:LfspQV/FYTatPTr/3HzIcmiUFH7PGP+OQ6mgDYo3yuQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "golang.org/x/exp", - "purl": "pkg:golang/golang.org/x/exp@v0.0.0-20240222234643-814bf88cf225", - "type": "go-module", - "version": "v0.0.0-20240222234643-814bf88cf225" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:x\\/net:v0.21.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "2fe9517801f6316c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "golang.org/x/net", - "purl": "pkg:golang/golang.org/x/net@v0.21.0", - "type": "go-module", - "version": "v0.21.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:x\\/oauth2:v0.16.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "21975b5a4e56ccf8", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:aDkGMBSYxElaoP81NpoUoz2oo2R2wHdZpGToUxfyQrQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "golang.org/x/oauth2", - "purl": "pkg:golang/golang.org/x/oauth2@v0.16.0", - "type": "go-module", - "version": "v0.16.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:x\\/sync:v0.6.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "e6072de82b0e3a10", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "golang.org/x/sync", - "purl": "pkg:golang/golang.org/x/sync@v0.6.0", - "type": "go-module", - "version": "v0.6.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:x\\/sys:v0.17.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "d3627a01c402e1c5", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "golang.org/x/sys", - "purl": "pkg:golang/golang.org/x/sys@v0.17.0", - "type": "go-module", - "version": "v0.17.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:x\\/term:v0.17.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "bbdfd77847d7c696", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "golang.org/x/term", - "purl": "pkg:golang/golang.org/x/term@v0.17.0", - "type": "go-module", - "version": "v0.17.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:x\\/text:v0.14.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "c7b8122ad3147a22", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "golang.org/x/text", - "purl": "pkg:golang/golang.org/x/text@v0.14.0", - "type": "go-module", - "version": "v0.14.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:x\\/time:v0.5.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "8924f2064a55f97b", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "golang.org/x/time", - "purl": "pkg:golang/golang.org/x/time@v0.5.0", - "type": "go-module", - "version": "v0.5.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:api:v0.159.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "7369bcab06495e7a", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:fVTj+7HHiUYz4JEZCHHoRIeQX7h5FMzrA2RF/DzDdbs=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "google.golang.org/api", - "purl": "pkg:golang/google.golang.org/api@v0.159.0", - "type": "go-module", - "version": "v0.159.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:genproto:v0.0.0-20240102182953-50ed04b92917:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "36e5f3fec95bb945", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:nz5NESFLZbJGPFxDT/HCn+V1mZ8JGNoY4nUpmW/Y2eg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "google.golang.org/genproto", - "purl": "pkg:golang/google.golang.org/genproto@v0.0.0-20240102182953-50ed04b92917", - "type": "go-module", - "version": "v0.0.0-20240102182953-50ed04b92917" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:genproto:v0.0.0-20240102182953-50ed04b92917:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "6bf67dff15bf3293", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:rcS6EyEaoCO52hQDupoSfrxI3R6C2Tq741is7X8OvnM=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "google.golang.org/genproto/googleapis/api", - "purl": "pkg:golang/google.golang.org/genproto/googleapis@v0.0.0-20240102182953-50ed04b92917#api", - "type": "go-module", - "version": "v0.0.0-20240102182953-50ed04b92917" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:genproto:v0.0.0-20240116215550-a9fa1716bcac:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "ef4effd6e471b389", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:nUQEQmH/csSvFECKYRv6HWEyypysidKl2I6Qpsglq/0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "google.golang.org/genproto/googleapis/rpc", - "purl": "pkg:golang/google.golang.org/genproto/googleapis@v0.0.0-20240116215550-a9fa1716bcac#rpc", - "type": "go-module", - "version": "v0.0.0-20240116215550-a9fa1716bcac" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:grpc:v1.61.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "8957f39eabab5bb4", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:TOvOcuXn30kRao+gfcvsebNEa5iZIiLkisYEkf7R7o0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "google.golang.org/grpc", - "purl": "pkg:golang/google.golang.org/grpc@v1.61.0", - "type": "go-module", - "version": "v1.61.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:google:protobuf:v1.33.0:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "5af4e73965015f61", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "google.golang.org/protobuf", - "purl": "pkg:golang/google.golang.org/protobuf@v1.33.0", - "type": "go-module", - "version": "v1.33.0" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "f59e3d6e5c72c220", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "gopkg.in/inf.v0", - "purl": "pkg:golang/gopkg.in/inf.v0@v0.9.1", - "type": "go-module", - "version": "v0.9.1" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "de10e0e7892d1a73", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "gopkg.in/ini.v1", - "purl": "pkg:golang/gopkg.in/ini.v1@v1.67.0", - "type": "go-module", - "version": "v1.67.0" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "138b1b7eeec7dcce", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:VpOs+IwYnYBaFnrNAeB8UUWtL3vEUnzSCL1nVjPhqrw=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "gopkg.in/mgo.v2", - "purl": "pkg:golang/gopkg.in/mgo.v2@v2.0.0-20190816093944-a6b53ec6cb22", - "type": "go-module", - "version": "v2.0.0-20190816093944-a6b53ec6cb22" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "1c894d89b1a9dfae", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:NGk74WTnPKBNUhNzQX7PYcTLUjoq7mzKk2OKbvwk2iI=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "gopkg.in/square/go-jose.v2", - "purl": "pkg:golang/gopkg.in/square/go-jose.v2@v2.6.0", - "type": "go-module", - "version": "v2.6.0" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "e7974aac5950ad2d", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "gopkg.in/yaml.v2", - "purl": "pkg:golang/gopkg.in/yaml.v2@v2.4.0", - "type": "go-module", - "version": "v2.4.0" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "384b2a886d4f8be7", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "gopkg.in/yaml.v3", - "purl": "pkg:golang/gopkg.in/yaml.v3@v3.0.1", - "type": "go-module", - "version": "v3.0.1" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "c4f2be0d1f68b520", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:hBC7B9+MU+ptchxEqTNW2DkUosJpp1P+Wn6YncZ474A=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "k8s.io/api", - "purl": "pkg:golang/k8s.io/api@v0.29.2", - "type": "go-module", - "version": "v0.29.2" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "8507b9eb49e57ebd", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:iwhyoeS4xj9Y7v8YExhUwbVuBhMr3Q4bd/laClBV6Bo=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "k8s.io/apiextensions-apiserver", - "purl": "pkg:golang/k8s.io/apiextensions-apiserver@v0.27.2", - "type": "go-module", - "version": "v0.27.2" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "cd2a58859ee7bbea", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:EWGpfJ856oj11C52NRCHuU7rFDwxev48z+6DSlGNsV8=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "k8s.io/apimachinery", - "purl": "pkg:golang/k8s.io/apimachinery@v0.29.2", - "type": "go-module", - "version": "v0.29.2" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "4e0c8890a29a6ff5", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:FEg85el1TeZp+/vYJM7hkDlSTFZ+c5nnK44DJ4FyoRg=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "k8s.io/client-go", - "purl": "pkg:golang/k8s.io/client-go@v0.29.2", - "type": "go-module", - "version": "v0.29.2" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:klog:v2:v2.110.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "020d776a8eced289", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:U/Af64HJf7FcwMcXyKm2RPM22WZzyR7OSpYj5tg3cL0=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "k8s.io/klog/v2", - "purl": "pkg:golang/k8s.io/klog/v2@v2.110.1", - "type": "go-module", - "version": "v2.110.1" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "dff310123928d28d", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:aVUu9fTY98ivBPKR9Y5w/AuzbMm96cd3YHRTU83I780=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "k8s.io/kube-openapi", - "purl": "pkg:golang/k8s.io/kube-openapi@v0.0.0-20231010175941-2dd684a91f00", - "type": "go-module", - "version": "v0.0.0-20231010175941-2dd684a91f00" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "357c5856d530123c", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:sgn3ZU783SCgtaSJjpcVVlRqd6GSnlTLKgpAAttJvpI=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "k8s.io/utils", - "purl": "pkg:golang/k8s.io/utils@v0.0.0-20230726121419-3b25d923346b", - "type": "go-module", - "version": "v0.0.0-20230726121419-3b25d923346b" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "51a810961da9c8cf", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:ML+5Adt3qZnMSYxZ7gAverBLNPSMQEibtzAgp0UPojU=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "sigs.k8s.io/controller-runtime", - "purl": "pkg:golang/sigs.k8s.io/controller-runtime@v0.15.0", - "type": "go-module", - "version": "v0.15.0" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "18998ec9777b0855", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "sigs.k8s.io/json", - "purl": "pkg:golang/sigs.k8s.io/json@v0.0.0-20221116044647-bc3834ca7abd", - "type": "go-module", - "version": "v0.0.0-20221116044647-bc3834ca7abd" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:structured-merge-diff:v4:v4.4.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:structured_merge_diff:v4:v4.4.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:structured-merge:v4:v4.4.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:structured_merge:v4:v4.4.1:*:*:*:*:*:*:*", - "source": "syft-generated" - }, - { - "cpe": "cpe:2.3:a:structured:v4:v4.4.1:*:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "go-module-binary-cataloger", - "id": "53bc656531f42fa8", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "sigs.k8s.io/structured-merge-diff/v4", - "purl": "pkg:golang/sigs.k8s.io/structured-merge-diff/v4@v4.4.1", - "type": "go-module", - "version": "v4.4.1" - }, - { - "cpes": [], - "foundBy": "go-module-binary-cataloger", - "id": "7211b61c98247210", - "language": "go", - "licenses": [], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "amd64", - "goCompiledVersion": "go1.21.8", - "h1Digest": "h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E=", - "mainModule": "github.com/kubescape/kollector" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "sigs.k8s.io/yaml", - "purl": "pkg:golang/sigs.k8s.io/yaml@v1.4.0", - "type": "go-module", - "version": "v1.4.0" - }, - { - "cpes": [ - { - "cpe": "cpe:2.3:a:golang:go:1.21.8:-:*:*:*:*:*:*", - "source": "syft-generated" - } - ], - "foundBy": "", - "id": "7f1759f7011c8c9e", - "language": "go", - "licenses": [ - { - "locations": [], - "spdxExpression": "BSD-3-Clause", - "type": "declared", - "urls": [], - "value": "BSD-3-Clause" - } - ], - "locations": [ - { - "accessPath": "/usr/bin/kollector", - "annotations": { - "evidence": "primary" - }, - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - ], - "metadata": { - "architecture": "", - "goCompiledVersion": "go1.21.8" - }, - "metadataType": "go-module-buildinfo-entry", - "name": "stdlib", - "purl": "pkg:golang/stdlib@1.21.8", - "type": "go-module", - "version": "go1.21.8" - } - ], - "descriptor": { - "configuration": { - "catalogers": { - "requested": { - "default": [ - "image" - ] - }, - "used": [ - "alpm-db-cataloger", - "apk-db-cataloger", - "binary-classifier-cataloger", - "cargo-auditable-binary-cataloger", - "conan-info-cataloger", - "dotnet-portable-executable-cataloger", - "dpkg-db-cataloger", - "elf-binary-package-cataloger", - "go-module-binary-cataloger", - "graalvm-native-image-cataloger", - "java-archive-cataloger", - "javascript-package-cataloger", - "linux-kernel-cataloger", - "nix-store-cataloger", - "php-composer-installed-cataloger", - "php-pecl-serialized-cataloger", - "portage-cataloger", - "python-installed-package-cataloger", - "r-package-cataloger", - "rpm-db-cataloger", - "ruby-installed-gemspec-cataloger", - "wordpress-plugins-cataloger" - ] - }, - "data-generation": { - "generate-cpes": true - }, - "files": { - "content": { - "globs": null, - "skip-files-above-size": 0 - }, - "hashers": [ - "sha-256" - ], - "selection": "owned-by-package" - }, - "packages": { - "binary": [ - "python-binary", - "python-binary-lib", - "pypy-binary-lib", - "go-binary", - "julia-binary", - "helm", - "redis-binary", - "java-binary-openjdk", - "java-binary-ibm", - "java-binary-oracle", - "java-binary-graalvm", - "java-binary-jdk", - "nodejs-binary", - "go-binary-hint", - "busybox-binary", - "haproxy-binary", - "perl-binary", - "php-cli-binary", - "php-fpm-binary", - "php-apache-binary", - "php-composer-binary", - "httpd-binary", - "memcached-binary", - "traefik-binary", - "postgresql-binary", - "mysql-binary", - "mysql-binary", - "mysql-binary", - "xtrabackup-binary", - "mariadb-binary", - "rust-standard-library-linux", - "rust-standard-library-macos", - "ruby-binary", - "erlang-binary", - "consul-binary", - "nginx-binary", - "bash-binary", - "openssl-binary", - "gcc-binary", - "wordpress-cli-binary" - ], - "golang": { - "local-mod-cache-dir": "/home/nonroot/go/pkg/mod", - "main-module-version": { - "from-build-settings": true, - "from-contents": true, - "from-ld-flags": true - }, - "proxies": [ - "https://proxy.golang.org", - "direct" - ], - "search-local-mod-cache-licenses": false, - "search-remote-licenses": false - }, - "java-archive": { - "include-indexed-archives": true, - "include-unindexed-archives": false, - "maven-base-url": "https://repo1.maven.org/maven2", - "max-parent-recursive-depth": 5, - "use-network": false - }, - "javascript": { - "npm-base-url": "", - "search-remote-licenses": false - }, - "linux-kernel": { - "catalog-modules": true - }, - "python": { - "guess-unpinned-requirements": false - } - }, - "relationships": { - "exclude-binary-packages-with-file-ownership-overlap": true, - "package-file-ownership": true, - "package-file-ownership-overlap": true - }, - "search": { - "scope": "squashed" - } - }, - "name": "quay.io-kubescape-kollector-v0.1.36-d269b4", - "version": "v1.2.0-hotfix" - }, - "distro": { - "id": "busybox", - "idLike": [ - "busybox" - ], - "name": "busybox", - "prettyName": "BusyBox v1.36.1", - "version": "1.36.1", - "versionID": "1.36.1" - }, - "files": [ - { - "executable": { - "elfSecurityFeatures": { - "dso": false, - "nx": true, - "pie": false, - "relRO": "partial", - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [] - }, - "id": "272fc1a4e05df74a", - "location": { - "layerID": "sha256:46192ee6f5712e705efe6f05ead832816451f73c2eb9599a2b939d7ce90e7e30", - "path": "/bin/busybox" - } - }, - { - "executable": { - "elfSecurityFeatures": { - "dso": false, - "nx": true, - "pie": false, - "relRO": "none", - "symbolTableStripped": true - }, - "format": "elf", - "hasEntrypoint": true, - "hasExports": false, - "importedLibraries": [] - }, - "id": "d965f9e83fca4979", - "location": { - "layerID": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "path": "/usr/bin/kollector" - } - } - ], - "schema": { - "url": "https://raw.githubusercontent.com/anchore/syft/main/schema/json/schema-16.0.7.json", - "version": "16.0.7" - }, - "source": { - "id": "c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "metadata": { - "architecture": "amd64", - "config": "eyJhcmNoaXRlY3R1cmUiOiJhbWQ2NCIsImNvbmZpZyI6eyJVc2VyIjoia3MiLCJFbnYiOlsiUEFUSD0vdXNyL2xvY2FsL3NiaW46L3Vzci9sb2NhbC9iaW46L3Vzci9zYmluOi91c3IvYmluOi9zYmluOi9iaW4iXSwiRW50cnlwb2ludCI6WyIvYmluL2J1c3lib3giLCJzaCIsIi9ob21lL2tzL2tvbGxlY3Rvci1lbnRyeXBvaW50LnNoIl0sIldvcmtpbmdEaXIiOiIvaG9tZS9rcy8ifSwiY3JlYXRlZCI6IjIwMjQtMDMtMjdUMTM6MTQ6MDQuNTQ0MjY0MjQ3WiIsImhpc3RvcnkiOlt7ImNyZWF0ZWQiOiIyMDI0LTAzLTI3VDEzOjE0OjA0LjIyNzkxMTc0MloiLCJjcmVhdGVkX2J5IjoiQ09QWSAvZXRjL3Bhc3N3ZCAvZXRjL3Bhc3N3ZCAjIGJ1aWxka2l0IiwiY29tbWVudCI6ImJ1aWxka2l0LmRvY2tlcmZpbGUudjAifSx7ImNyZWF0ZWQiOiIyMDI0LTAzLTI3VDEzOjE0OjA0LjI2NzY1Nzk1M1oiLCJjcmVhdGVkX2J5IjoiVVNFUiBrcyIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIiwiZW1wdHlfbGF5ZXIiOnRydWV9LHsiY3JlYXRlZCI6IjIwMjQtMDMtMjdUMTM6MTQ6MDQuMjY3NjU3OTUzWiIsImNyZWF0ZWRfYnkiOiJXT1JLRElSIC9ob21lL2tzLyIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIn0seyJjcmVhdGVkIjoiMjAyNC0wMy0yN1QxMzoxNDowNC40NTkxMDk4NjRaIiwiY3JlYXRlZF9ieSI6IkNPUFkgL3dvcmsvYnVpbGQva29sbGVjdG9yIC91c3IvYmluL2tvbGxlY3RvciAjIGJ1aWxka2l0IiwiY29tbWVudCI6ImJ1aWxka2l0LmRvY2tlcmZpbGUudjAifSx7ImNyZWF0ZWQiOiIyMDI0LTAzLTI3VDEzOjE0OjA0LjUxODAyMzc3NFoiLCJjcmVhdGVkX2J5IjoiQ09QWSAvZXRjL3NzbC9jZXJ0cyAvZXRjL3NzbC9jZXJ0cyAjIGJ1aWxka2l0IiwiY29tbWVudCI6ImJ1aWxka2l0LmRvY2tlcmZpbGUudjAifSx7ImNyZWF0ZWQiOiIyMDI0LTAzLTI3VDEzOjE0OjA0LjUzMzY4MjE2NFoiLCJjcmVhdGVkX2J5IjoiQ09QWSAvYmluL2J1c3lib3guc3RhdGljIC9iaW4vYnVzeWJveCAjIGJ1aWxka2l0IiwiY29tbWVudCI6ImJ1aWxka2l0LmRvY2tlcmZpbGUudjAifSx7ImNyZWF0ZWQiOiIyMDI0LTAzLTI3VDEzOjE0OjA0LjU0NDI2NDI0N1oiLCJjcmVhdGVkX2J5IjoiQ09QWSAuL2tvbGxlY3Rvci1lbnRyeXBvaW50LnNoIC9ob21lL2tzLyAjIGJ1aWxka2l0IiwiY29tbWVudCI6ImJ1aWxka2l0LmRvY2tlcmZpbGUudjAifSx7ImNyZWF0ZWQiOiIyMDI0LTAzLTI3VDEzOjE0OjA0LjU0NDI2NDI0N1oiLCJjcmVhdGVkX2J5IjoiRU5UUllQT0lOVCBbXCIvYmluL2J1c3lib3hcIiBcInNoXCIgXCIvaG9tZS9rcy9rb2xsZWN0b3ItZW50cnlwb2ludC5zaFwiXSIsImNvbW1lbnQiOiJidWlsZGtpdC5kb2NrZXJmaWxlLnYwIiwiZW1wdHlfbGF5ZXIiOnRydWV9XSwib3MiOiJsaW51eCIsInJvb3RmcyI6eyJ0eXBlIjoibGF5ZXJzIiwiZGlmZl9pZHMiOlsic2hhMjU2OjYxNTIwMjU5MjE2YzQxMGIxZmFiYWQxY2FjMDUyY2M4Mzk1YTNmNGU3MWNhZWQzNjFjZGM5MTVlYTMzNzE2OTAiLCJzaGEyNTY6ZWMwYzBkZmJjNzk5ZGFmZDUxYmY3NWQ4NjE2NTk2ZDI0MWQxMTc4NDAxZjczNzIxY2QzNDdhOWZiNjM1NzJlZCIsInNoYTI1NjplNTc1NDM1MTc4MGFkNThhY2UzYjMxN2IzYjRmYTI5NzIzNjI4ZDJmMmVmYTU1OTFlN2YwZmVlMzFkZWIxZWIzIiwic2hhMjU2Ojg5YzQ5MjAxOTlhZmU4YmYzMWZhZmU1NzQ3YzJlODFjOWYyYmZjMTc2NThlZThmMTRjMmZmOWIxZWQ1MmYwZTMiLCJzaGEyNTY6NDYxOTJlZTZmNTcxMmU3MDVlZmU2ZjA1ZWFkODMyODE2NDUxZjczYzJlYjk1OTlhMmI5MzlkN2NlOTBlN2UzMCIsInNoYTI1Njo2NTM1Yjk4ZjhiNTI2ZmI3MzRlZDI0YThhOWJiMzU0MTdkYTBjNzAxNzRhMDg0Y2Y0MzY1MTVmOTU1NmQxMTc2Il19fQ==", - "imageID": "sha256:57ba0ecb0720363382dca8ab9859986f2baf0462f176df3f7f005cc220e9de3d", - "imageSize": 55655920, - "layers": [ - { - "digest": "sha256:61520259216c410b1fabad1cac052cc8395a3f4e71caed361cdc915ea3371690", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 1222 - }, - { - "digest": "sha256:ec0c0dfbc799dafd51bf75d8616596d241d1178401f73721cd347a9fb63572ed", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 0 - }, - { - "digest": "sha256:e5754351780ad58ace3b317b3b4fa29723628d2f2efa5591e7f0fee31deb1eb3", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 54407168 - }, - { - "digest": "sha256:89c4920199afe8bf31fafe5747c2e81c9f2bfc17658ee8f14c2ff9b1ed52f0e3", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 221145 - }, - { - "digest": "sha256:46192ee6f5712e705efe6f05ead832816451f73c2eb9599a2b939d7ce90e7e30", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 1025960 - }, - { - "digest": "sha256:6535b98f8b526fb734ed24a8a9bb35417da0c70174a084cf436515f9556d1176", - "mediaType": "application/vnd.oci.image.layer.v1.tar+gzip", - "size": 425 - } - ], - "manifest": "ewogICJzY2hlbWFWZXJzaW9uIjogMiwKICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubWFuaWZlc3QudjEranNvbiIsCiAgImNvbmZpZyI6IHsKICAgICJtZWRpYVR5cGUiOiAiYXBwbGljYXRpb24vdm5kLm9jaS5pbWFnZS5jb25maWcudjEranNvbiIsCiAgICAiZGlnZXN0IjogInNoYTI1Njo1N2JhMGVjYjA3MjAzNjMzODJkY2E4YWI5ODU5OTg2ZjJiYWYwNDYyZjE3NmRmM2Y3ZjAwNWNjMjIwZTlkZTNkIiwKICAgICJzaXplIjogMTkxMgogIH0sCiAgImxheWVycyI6IFsKICAgIHsKICAgICAgIm1lZGlhVHlwZSI6ICJhcHBsaWNhdGlvbi92bmQub2NpLmltYWdlLmxheWVyLnYxLnRhcitnemlwIiwKICAgICAgImRpZ2VzdCI6ICJzaGEyNTY6MGE1ZGE2YzFkZjU3M2RiNmZjMDQ4ZTg5NzU3MDY4YjJiNzI3MGE2OTJhZTU3YWM5NjdlY2VhMDAzYzg3NzU0YyIsCiAgICAgICJzaXplIjogNTk4CiAgICB9LAogICAgewogICAgICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubGF5ZXIudjEudGFyK2d6aXAiLAogICAgICAiZGlnZXN0IjogInNoYTI1Njo4NzI1YmY3ZDkzZjdkZmZkY2Y4ZGIwMDAwODM4MjliOGJlMTA5M2IwMmE2YjNkM2RlNjg3NGJjMzZhNjMzNjRlIiwKICAgICAgInNpemUiOiAxMTQKICAgIH0sCiAgICB7CiAgICAgICJtZWRpYVR5cGUiOiAiYXBwbGljYXRpb24vdm5kLm9jaS5pbWFnZS5sYXllci52MS50YXIrZ3ppcCIsCiAgICAgICJkaWdlc3QiOiAic2hhMjU2OjNmYmU4NDM0NDk5ZDkyNjgzZDlmNDVjMjU0YmVkM2IwZjJhMTdmMjFjZTUwZjA5M2Y3NjVjZGEzNjBiMjNlOGEiLAogICAgICAic2l6ZSI6IDE2MDI5MjkxCiAgICB9LAogICAgewogICAgICAibWVkaWFUeXBlIjogImFwcGxpY2F0aW9uL3ZuZC5vY2kuaW1hZ2UubGF5ZXIudjEudGFyK2d6aXAiLAogICAgICAiZGlnZXN0IjogInNoYTI1NjpjZjQ0Y2MzYjA1Njc0NjFhYmE4NzllZTE5NzFjYzg3ZDBhZDE0YTFjMTIwMTRiYWZmZDlhMWM3OWQ0YWZmNjBiIiwKICAgICAgInNpemUiOiAxMzYxMDUKICAgIH0sCiAgICB7CiAgICAgICJtZWRpYVR5cGUiOiAiYXBwbGljYXRpb24vdm5kLm9jaS5pbWFnZS5sYXllci52MS50YXIrZ3ppcCIsCiAgICAgICJkaWdlc3QiOiAic2hhMjU2OmJlNWU0ZmQyZmMyYWVhZDc0NGQwNWQxOGUzNjQwMjcyNDIzNzU4MTQ0YWQ1YjNkZWFkNjFkNDY0YzVmNTRjN2MiLAogICAgICAic2l6ZSI6IDY1NjU2NwogICAgfSwKICAgIHsKICAgICAgIm1lZGlhVHlwZSI6ICJhcHBsaWNhdGlvbi92bmQub2NpLmltYWdlLmxheWVyLnYxLnRhcitnemlwIiwKICAgICAgImRpZ2VzdCI6ICJzaGEyNTY6NjgzZDI0MmQyOWI4Y2FiMDVkMTMzYjM5ODdmNTljYWVkNjhiMWEzZmFkNGQwNTJkZTI4MjRmYzgzOGZiYjUyNCIsCiAgICAgICJzaXplIjogNDAyCiAgICB9CiAgXQp9", - "manifestDigest": "sha256:c5dbec6e21e48f3ab25cebedf504c2eeb77b22dfaca8a8dc5d377da1892626bb", - "mediaType": "application/vnd.oci.image.manifest.v1+json", - "os": "linux", - "repoDigests": [ - "quay.io/kubescape/kollector@sha256:5d86e6f8d2477a053af6a43946ea857975e7a80f53f1d9b806e475ce7dd269b4" - ], - "tags": [], - "userInput": "quay.io/kubescape/kollector@sha256:5d86e6f8d2477a053af6a43946ea857975e7a80f53f1d9b806e475ce7dd269b4" - }, - "name": "quay.io/kubescape/kollector", - "type": "image", - "version": "sha256:5d86e6f8d2477a053af6a43946ea857975e7a80f53f1d9b806e475ce7dd269b4" - } - } - }, - "status": {} -} diff --git a/pkg/storage/storage_interface.go b/pkg/storage/storage_interface.go index 84d970ba..2c13d8ae 100644 --- a/pkg/storage/storage_interface.go +++ b/pkg/storage/storage_interface.go @@ -10,8 +10,6 @@ type StorageClient interface { CreateApplicationProfile(profile *v1beta1.ApplicationProfile, namespace string) error PatchApplicationProfile(name, namespace string, operations []utils.PatchOperation, channel chan error) error GetApplicationProfile(namespace, name string) (*v1beta1.ApplicationProfile, error) - CreateFilteredSBOM(SBOM *v1beta1.SBOMSyftFiltered) error - GetFilteredSBOM(name string) (*v1beta1.SBOMSyftFiltered, error) CreateSBOM(SBOM *v1beta1.SBOMSyft) (*v1beta1.SBOMSyft, error) GetSBOM(name string) (*v1beta1.SBOMSyft, error) GetSBOMMeta(name string) (*v1beta1.SBOMSyft, error) diff --git a/pkg/storage/storage_mock.go b/pkg/storage/storage_mock.go index 10934080..e876b189 100644 --- a/pkg/storage/storage_mock.go +++ b/pkg/storage/storage_mock.go @@ -1,8 +1,6 @@ package storage import ( - "errors" - "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" spdxv1beta1 "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" ) @@ -15,7 +13,6 @@ const ( type StorageHttpClientMock struct { ApplicationActivities []*spdxv1beta1.ApplicationActivity ApplicationProfiles []*spdxv1beta1.ApplicationProfile - FilteredSyftSBOMs []*spdxv1beta1.SBOMSyftFiltered SyftSBOMs []*spdxv1beta1.SBOMSyft NetworkNeighborhoods []*v1beta1.NetworkNeighborhood NetworkNeighborses []*v1beta1.NetworkNeighbors @@ -26,13 +23,6 @@ type StorageHttpClientMock struct { var _ StorageClient = (*StorageHttpClientMock)(nil) -func CreateSyftSBOMStorageHttpClientMock(sbom spdxv1beta1.SBOMSyft) *StorageHttpClientMock { - return &StorageHttpClientMock{ - ImageCounters: map[string]int{}, - mockSBOM: &sbom, - } -} - func (sc *StorageHttpClientMock) CreateApplicationActivity(activity *spdxv1beta1.ApplicationActivity, _ string) error { sc.ApplicationActivities = append(sc.ApplicationActivities, activity) return nil @@ -43,20 +33,6 @@ func (sc *StorageHttpClientMock) CreateNetworkNeighbors(networkNeighbors *v1beta return nil } -func (sc *StorageHttpClientMock) CreateFilteredSBOM(SBOM *v1beta1.SBOMSyftFiltered) error { - sc.FilteredSyftSBOMs = append(sc.FilteredSyftSBOMs, SBOM) - return nil -} - -func (sc *StorageHttpClientMock) GetFilteredSBOM(name string) (*v1beta1.SBOMSyftFiltered, error) { - for _, sbom := range sc.FilteredSyftSBOMs { - if sbom.Name == name { - return sbom, nil - } - } - return nil, errors.New("not found") -} - func (sc *StorageHttpClientMock) CreateSBOM(SBOM *v1beta1.SBOMSyft) (*v1beta1.SBOMSyft, error) { sc.SyftSBOMs = append(sc.SyftSBOMs, SBOM) return SBOM, nil @@ -75,10 +51,6 @@ func (sc *StorageHttpClientMock) ReplaceSBOM(SBOM *v1beta1.SBOMSyft) (*v1beta1.S return SBOM, nil } -func (sc *StorageHttpClientMock) PatchFilteredSBOM(_ string, _ *spdxv1beta1.SBOMSyftFiltered) error { - return nil -} - func (sc *StorageHttpClientMock) IncrementImageUse(imageID string) { if _, ok := sc.ImageCounters[imageID]; !ok { sc.ImageCounters[imageID] = 0 diff --git a/pkg/storage/testdata/nginx-spdx-format-mock.json b/pkg/storage/testdata/nginx-spdx-format-mock.json deleted file mode 100644 index 25d7886e..00000000 --- a/pkg/storage/testdata/nginx-spdx-format-mock.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "apiVersion": "spdx.softwarecomposition.kubescape.io/v1beta1", - "kind": "SBOMSPDXv2p3", - "metadata": { - "name": "aa0afebbb3cfa473099a62c4b32e9b3fb73ed23f2a75a65ce1d4b4f55a5c2ef2", - "resourceVersion": "1" - }, - "spec": { - "spdx": { - "spdxVersion": "SPDX-2.3", - "dataLicense": "CC0-1.0", - "SPDXID": "SPDXRef-DOCUMENT", - "name": "nginx", - "documentNamespace": "https://anchore.com/syft/image/nginx-b0a8069e-2bcf-445e-b535-de6d078a6d36", - "creationInfo": { - "licenseListVersion": "3.19", - "creators": [ - "Organization: Anchore, Inc", - "Tool: syft-0.70.0" - ], - "created": "2023-02-26T13:34:46Z" - }, - "packages": [ - { - "name": "adduser", - "SPDXID": "SPDXRef-Package-deb-adduser-3e9282034226b93f", - "versionInfo": "3.118", - "originator": "Person: Debian Adduser Developers \u003cadduser@packages.debian.org\u003e", - "downloadLocation": "NOASSERTION", - "sourceInfo": "acquired package info from DPKG DB: /usr/share/doc/adduser/copyright, /var/lib/dpkg/info/adduser.conffiles, /var/lib/dpkg/info/adduser.md5sums, /var/lib/dpkg/status", - "licenseConcluded": "GPL-2.0-only", - "licenseDeclared": "GPL-2.0-only", - "copyrightText": "NOASSERTION", - "externalRefs": [ - { - "referenceCategory": "SECURITY", - "referenceType": "cpe23Type", - "referenceLocator": "cpe:2.3:a:adduser:adduser:3.118:*:*:*:*:*:*:*" - }, - { - "referenceCategory": "PACKAGE-MANAGER", - "referenceType": "purl", - "referenceLocator": "pkg:deb/debian/adduser@3.118?arch=all&distro=debian-11" - } - ] - } - ], - "files": [ - { - "fileName": "/usr/share/adduser/adduser.conf", - "SPDXID": "SPDXRef-18099a63ef768f72", - "checksums": [ - { - "algorithm": "SHA1", - "checksumValue": "0000000000000000000000000000000000000000" - } - ], - "licenseConcluded": "NOASSERTION", - "copyrightText": "", - "comment": "layerID: sha256:67a4178b7d47beb6a1f697a593bd0c6841c67eb0da00f2badefb05fd30671490" - }, - { - "fileName": "/usr/sbin/deluser", - "SPDXID": "SPDXRef-1a35bf77abe6053c", - "checksums": [ - { - "algorithm": "SHA1", - "checksumValue": "0000000000000000000000000000000000000000" - } - ], - "licenseConcluded": "NOASSERTION", - "copyrightText": "", - "comment": "layerID: sha256:67a4178b7d47beb6a1f697a593bd0c6841c67eb0da00f2badefb05fd30671490" - }, - { - "fileName": "/etc/deluser.conf", - "SPDXID": "SPDXRef-3ec7e593276354ae", - "checksums": [ - { - "algorithm": "SHA1", - "checksumValue": "0000000000000000000000000000000000000000" - } - ], - "licenseConcluded": "NOASSERTION", - "copyrightText": "", - "comment": "layerID: sha256:67a4178b7d47beb6a1f697a593bd0c6841c67eb0da00f2badefb05fd30671490" - }, - { - "fileName": "/usr/share/doc/adduser/copyright", - "SPDXID": "SPDXRef-b2a13b08d0a14a92", - "checksums": [ - { - "algorithm": "SHA1", - "checksumValue": "0000000000000000000000000000000000000000" - } - ], - "licenseConcluded": "NOASSERTION", - "copyrightText": "", - "comment": "layerID: sha256:67a4178b7d47beb6a1f697a593bd0c6841c67eb0da00f2badefb05fd30671490" - }, - { - "fileName": "/usr/share/doc/adduser/copyright", - "SPDXID": "SPDXRef-b2a13b08d0a14a92", - "checksums": [ - { - "algorithm": "SHA1", - "checksumValue": "0000000000000000000000000000000000000000" - } - ], - "licenseConcluded": "NOASSERTION", - "copyrightText": "", - "comment": "layerID: sha256:67a4178b7d47beb6a1f697a593bd0c6841c67eb0da00f2badefb05fd30671490" - }, - { - "fileName": "/usr/sbin/adduser", - "SPDXID": "SPDXRef-e97fef92a7d904e0", - "checksums": [ - { - "algorithm": "SHA1", - "checksumValue": "0000000000000000000000000000000000000000" - } - ], - "licenseConcluded": "NOASSERTION", - "copyrightText": "", - "comment": "layerID: sha256:67a4178b7d47beb6a1f697a593bd0c6841c67eb0da00f2badefb05fd30671490" - }, - { - "fileName": "/usr/sbin/adduser", - "SPDXID": "SPDXRef-e97fef92a7d904e0", - "checksums": [ - { - "algorithm": "SHA1", - "checksumValue": "0000000000000000000000000000000000000000" - } - ], - "licenseConcluded": "NOASSERTION", - "copyrightText": "", - "comment": "layerID: sha256:67a4178b7d47beb6a1f697a593bd0c6841c67eb0da00f2badefb05fd30671490" - } - ], - "relationships": [ - { - "spdxElementId": "SPDXRef-Package-deb-adduser-3e9282034226b93f", - "relatedSpdxElement": "SPDXRef-18099a63ef768f72", - "relationshipType": "CONTAINS" - }, - { - "spdxElementId": "SPDXRef-Package-deb-adduser-3e9282034226b93f", - "relatedSpdxElement": "SPDXRef-1a35bf77abe6053c", - "relationshipType": "CONTAINS" - }, - { - "spdxElementId": "SPDXRef-Package-deb-adduser-3e9282034226b93f", - "relatedSpdxElement": "SPDXRef-3ec7e593276354ae", - "relationshipType": "CONTAINS" - }, - { - "spdxElementId": "SPDXRef-Package-deb-adduser-3e9282034226b93f", - "relatedSpdxElement": "SPDXRef-b2a13b08d0a14a92", - "relationshipType": "CONTAINS" - }, - { - "spdxElementId": "SPDXRef-Package-deb-adduser-3e9282034226b93f", - "relatedSpdxElement": "SPDXRef-e045176dbb87bb5a", - "relationshipType": "CONTAINS" - }, - { - "spdxElementId": "SPDXRef-Package-deb-adduser-3e9282034226b93f", - "relatedSpdxElement": "SPDXRef-e97fef92a7d904e0", - "relationshipType": "CONTAINS" - } - ] - } - } -} diff --git a/pkg/storage/testdata/sbom-incomplete-mock.json b/pkg/storage/testdata/sbom-incomplete-mock.json deleted file mode 100644 index 01ef650a..00000000 --- a/pkg/storage/testdata/sbom-incomplete-mock.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "apiVersion": "spdx.softwarecomposition.kubescape.io/v1beta1", - "kind": "SBOMSPDXv2p3", - "metadata": { - "name": "f7988fb6c02e0ce69257d9bd9cf37ae20a60f1df7563c3a2a6abe24160306b8d", - "annotations": { - "kubescape.io/image-id": "quay.io/kubescape/kubevuln@sha256:0a992168e92055d1905c34d1e11cb7d3f0847759998458443561bd0a4d60b4e2", - "kubescape.io/status": "incomplete" - }, - "resourceVersion": "1" - }, - "spec": { - "spdx": { - "SPDXID": "SPDXRef-", - "annotations": null, - "comment": "", - "creationInfo": null, - "dataLicense": "", - "documentDescribes": null, - "documentNamespace": "", - "externalDocumentRefs": null, - "files": null, - "hasExtractedLicensingInfos": null, - "name": "", - "packages": null, - "relationships": null, - "snippets": null, - "spdxVersion": "" - } - } -} diff --git a/pkg/storage/v1/applicationprofile.go b/pkg/storage/v1/applicationprofile.go index ec161f3d..2ddb31d7 100644 --- a/pkg/storage/v1/applicationprofile.go +++ b/pkg/storage/v1/applicationprofile.go @@ -5,6 +5,8 @@ import ( "encoding/json" "fmt" + "github.com/kubescape/go-logger" + loggerhelpers "github.com/kubescape/go-logger/helpers" "github.com/kubescape/k8s-interface/instanceidhandler/v1/helpers" "github.com/kubescape/node-agent/pkg/utils" "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" @@ -34,6 +36,7 @@ func (sc Storage) CreateApplicationProfile(profile *v1beta1.ApplicationProfile, } func (sc Storage) PatchApplicationProfile(name, namespace string, operations []utils.PatchOperation, channel chan error) error { + logger.L().Debug("patching application profile", loggerhelpers.String("name", name), loggerhelpers.String("namespace", namespace), loggerhelpers.Int("operations", len(operations))) // split operations into max JSON operations batches for _, chunk := range utils.ChunkBy(operations, sc.maxJsonPatchOperations) { if err := sc.patchApplicationProfile(name, namespace, chunk, channel); err != nil { diff --git a/pkg/storage/v1/network.go b/pkg/storage/v1/network.go index c74ced2b..97cad15c 100644 --- a/pkg/storage/v1/network.go +++ b/pkg/storage/v1/network.go @@ -5,6 +5,8 @@ import ( "encoding/json" "fmt" + "github.com/kubescape/go-logger" + loggerhelpers "github.com/kubescape/go-logger/helpers" "github.com/kubescape/k8s-interface/instanceidhandler/v1/helpers" "github.com/kubescape/node-agent/pkg/utils" "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" @@ -34,6 +36,7 @@ func (sc Storage) CreateNetworkNeighborhood(neighborhood *v1beta1.NetworkNeighbo } func (sc Storage) PatchNetworkNeighborhood(name, namespace string, operations []utils.PatchOperation, channel chan error) error { + logger.L().Debug("patching network neighborhood", loggerhelpers.String("name", name), loggerhelpers.String("namespace", namespace), loggerhelpers.Int("operations", len(operations))) // split operations into max JSON operations batches for _, chunk := range utils.ChunkBy(operations, sc.maxJsonPatchOperations) { if err := sc.patchNetworkNeighborhood(name, namespace, chunk, channel); err != nil { diff --git a/pkg/storage/v1/storage.go b/pkg/storage/v1/storage.go index 8419e9f3..d3efb7be 100644 --- a/pkg/storage/v1/storage.go +++ b/pkg/storage/v1/storage.go @@ -18,12 +18,10 @@ import ( "github.com/kubescape/storage/pkg/generated/clientset/versioned" "github.com/kubescape/storage/pkg/generated/clientset/versioned/fake" spdxv1beta1 "github.com/kubescape/storage/pkg/generated/clientset/versioned/typed/softwarecomposition/v1beta1" - "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "k8s.io/client-go/rest" "k8s.io/client-go/tools/clientcmd" - "k8s.io/client-go/util/retry" ) const ( @@ -148,40 +146,6 @@ func (sc Storage) GetApplicationActivity(namespace, name string) (*v1beta1.Appli return aa, err } -func (sc Storage) CreateFilteredSBOM(SBOM *v1beta1.SBOMSyftFiltered) error { - _, err := sc.StorageClient.SBOMSyftFiltereds(sc.namespace).Create(context.Background(), SBOM, metav1.CreateOptions{}) - switch { - case errors.IsAlreadyExists(err): - retryErr := retry.RetryOnConflict(retry.DefaultRetry, func() error { - // retrieve the latest version before attempting update - // RetryOnConflict uses exponential backoff to avoid exhausting the apiserver - result, getErr := sc.StorageClient.SBOMSyftFiltereds(sc.namespace).Get(context.Background(), SBOM.Name, metav1.GetOptions{ResourceVersion: "metadata"}) - if getErr != nil { - return getErr - } - // update the SBOM manifest - result.Annotations = SBOM.Annotations - result.Labels = SBOM.Labels - result.Spec = SBOM.Spec - // try to send the updated workload configuration scan manifest - _, updateErr := sc.StorageClient.SBOMSyftFiltereds(sc.namespace).Update(context.Background(), result, metav1.UpdateOptions{}) - return updateErr - }) - if retryErr != nil { - return retryErr - } - case err != nil: - return err - default: - return nil - } - return nil -} - -func (sc Storage) GetFilteredSBOM(name string) (*v1beta1.SBOMSyftFiltered, error) { - return sc.StorageClient.SBOMSyftFiltereds(sc.namespace).Get(context.Background(), name, metav1.GetOptions{}) -} - func (sc Storage) CreateSBOM(SBOM *v1beta1.SBOMSyft) (*v1beta1.SBOMSyft, error) { return sc.StorageClient.SBOMSyfts(sc.namespace).Create(context.Background(), SBOM, metav1.CreateOptions{}) } @@ -198,19 +162,6 @@ func (sc Storage) ReplaceSBOM(SBOM *v1beta1.SBOMSyft) (*v1beta1.SBOMSyft, error) return sc.StorageClient.SBOMSyfts(sc.namespace).Update(context.Background(), SBOM, metav1.UpdateOptions{}) } -func (sc Storage) PatchFilteredSBOM(name string, sbom *v1beta1.SBOMSyftFiltered) error { - - bytes, err := json.Marshal(sbom) - if err != nil { - return err - } - _, err = sc.StorageClient.SBOMSyftFiltereds(sc.namespace).Patch(context.Background(), name, types.StrategicMergePatchType, bytes, metav1.PatchOptions{}) - if err != nil { - return err - } - return nil -} - func (sc Storage) IncrementImageUse(_ string) { // noop } diff --git a/pkg/storage/v1/storage_test.go b/pkg/storage/v1/storage_test.go index 5e898f55..516dc529 100644 --- a/pkg/storage/v1/storage_test.go +++ b/pkg/storage/v1/storage_test.go @@ -2,7 +2,6 @@ package storage import ( "context" - "fmt" "reflect" "testing" @@ -15,142 +14,6 @@ import ( v1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) -func TestStorage_CreateFilteredSBOM(t *testing.T) { - type args struct { - SBOM *v1beta1.SBOMSyftFiltered - } - tests := []struct { - name string - args args - wantErr bool - }{ - { - name: "TestCreateFilteredSBOM", - args: args{ - SBOM: &v1beta1.SBOMSyftFiltered{ - ObjectMeta: v1.ObjectMeta{ - Name: storage.NginxKey, - }, - }, - }, - }, - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - sc, _ := CreateFakeStorage("kubescape") - if err := sc.CreateFilteredSBOM(tt.args.SBOM); (err != nil) != tt.wantErr { - t.Errorf("CreateFilteredSBOM() error = %v, wantErr %v", err, tt.wantErr) - } - }) - } -} - -func TestStorage_GetSBOM(t *testing.T) { - type args struct { - name string - } - tests := []struct { - createSBOM bool - name string - args args - want *v1beta1.SBOMSyft - wantErr bool - }{ - { - name: "TestGetSBOM", - args: args{ - name: storage.NginxKey, - }, - createSBOM: true, - want: &v1beta1.SBOMSyft{ - ObjectMeta: v1.ObjectMeta{ - Name: storage.NginxKey, - Namespace: "kubescape", - }, - }, - }, - { - name: "missing SBOM", - args: args{ - name: storage.NginxKey, - }, - wantErr: true, - }, - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - sc, _ := CreateFakeStorage("kubescape") - if tt.createSBOM { - _, _ = sc.StorageClient.SBOMSyfts("kubescape").Create(context.Background(), tt.want, v1.CreateOptions{}) - } - got, err := sc.GetSBOM(tt.args.name) - if (err != nil) != tt.wantErr { - t.Errorf("GetSBOM() error = %v, wantErr %v", err, tt.wantErr) - return - } - assert.Equal(t, tt.want, got) - }) - } -} - -func TestStorage_PatchFilteredSBOM(t *testing.T) { - type args struct { - name string - SBOM *v1beta1.SBOMSyftFiltered - } - tests := []struct { - name string - args args - wantErr bool - }{ - { - name: "TestPatchFilteredSBOM", - args: args{ - name: storage.NginxKey, - SBOM: &v1beta1.SBOMSyftFiltered{ - TypeMeta: v1.TypeMeta{ - Kind: "SBOMSyftFiltered", - APIVersion: "softwarecomposition.kubescape.io/v1beta1", - }, - Spec: v1beta1.SBOMSyftSpec{ - Syft: v1beta1.SyftDocument{ - Artifacts: []v1beta1.SyftPackage{ - { - PackageBasicData: v1beta1.PackageBasicData{ - Name: "test", - ID: "test", - }, - }, - }, - }, - }, - }, - }, - }, - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - sc, _ := CreateFakeStorage("kubescape") - filteredSBOM := &v1beta1.SBOMSyftFiltered{ - ObjectMeta: v1.ObjectMeta{ - Name: tt.args.name, - }, - } - c, e := sc.StorageClient.SBOMSyftFiltereds("kubescape").Create(context.Background(), filteredSBOM, v1.CreateOptions{}) - if e != nil { - t.Errorf("CreateFilteredSBOM() error = %v, wantErr %v", e, tt.wantErr) - } - fmt.Println(c) - if err := sc.PatchFilteredSBOM(tt.args.name, tt.args.SBOM); (err != nil) != tt.wantErr { - t.Errorf("PatchFilteredSBOM() error = %v, wantErr %v", err, tt.wantErr) - } - got, err := sc.StorageClient.SBOMSyftFiltereds("kubescape").Get(context.Background(), tt.args.name, v1.GetOptions{}) - assert.NoError(t, err) - assert.Equal(t, 1, len(got.Spec.Syft.Artifacts)) - }) - } -} - func TestStorage_PatchNetworkNeighbors(t *testing.T) { type args struct { name string @@ -200,7 +63,7 @@ func TestStorage_PatchNetworkNeighbors(t *testing.T) { } _, _ = sc.StorageClient.NetworkNeighborses("default").Create(context.Background(), existingProfile, v1.CreateOptions{}) if err := sc.PatchNetworkNeighborsIngressAndEgress(tt.args.name, "default", tt.args.neighbors); (err != nil) != tt.wantErr { - t.Errorf("PatchFilteredSBOM() error = %v, wantErr %v", err, tt.wantErr) + t.Errorf("PatchNetworkNeighborsIngressAndEgress() error = %v, wantErr %v", err, tt.wantErr) } got, err := sc.StorageClient.NetworkNeighborses("default").Get(context.Background(), tt.args.name, v1.GetOptions{}) assert.NoError(t, err) @@ -349,7 +212,7 @@ func TestStorage_PatchApplicationProfile(t *testing.T) { } _, _ = sc.StorageClient.ApplicationProfiles("default").Create(context.Background(), existingProfile, v1.CreateOptions{}) if err := sc.PatchApplicationProfile(tt.args.name, "default", tt.args.operations, nil); (err != nil) != tt.wantErr { - t.Errorf("PatchFilteredSBOM() error = %v, wantErr %v", err, tt.wantErr) + t.Errorf("PatchNetworkNeighborsIngressAndEgress() error = %v, wantErr %v", err, tt.wantErr) } got, err := sc.StorageClient.ApplicationProfiles("default").Get(context.Background(), tt.args.name, v1.GetOptions{}) assert.NoError(t, err) diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go index 374f779b..7deb2a5c 100644 --- a/pkg/utils/utils.go +++ b/pkg/utils/utils.go @@ -36,7 +36,6 @@ import ( helpersv1 "github.com/kubescape/k8s-interface/instanceidhandler/v1/helpers" "github.com/kubescape/k8s-interface/k8sinterface" "github.com/kubescape/k8s-interface/workloadinterface" - "github.com/kubescape/storage/pkg/apis/softwarecomposition/v1beta1" "github.com/prometheus/procfs" v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -49,7 +48,6 @@ var ( ContainerReachedMaxTime = errors.New("container reached max time") ObjectCompleted = errors.New("object is completed") TooLargeObjectError = errors.New("object is too large") - IncompleteSBOMError = errors.New("incomplete SBOM") ) type ContainerType int @@ -87,7 +85,6 @@ type WatchedContainerData struct { InstanceID instanceidhandler.IInstanceID UpdateDataTicker *time.Ticker SyncChannel chan error - SBOMSyftFiltered *v1beta1.SBOMSyftFiltered RelevantRealtimeFilesByIdentifier map[string]bool RelevantRelationshipsArtifactsByIdentifier map[string]bool RelevantArtifactsFilesByIdentifier map[string]bool @@ -98,10 +95,9 @@ type WatchedContainerData struct { Wlid string TemplateHash string K8sContainerID string - SBOMResourceVersion int ContainerType ContainerType ContainerIndex int - ContainerNames map[ContainerType][]string + ContainerInfos map[ContainerType][]ContainerInfo NsMntId uint64 InitialDelayExpired bool statusUpdated bool @@ -111,6 +107,12 @@ type WatchedContainerData struct { SeccompProfilePath *string } +type ContainerInfo struct { + Name string + ImageTag string + ImageID string +} + func Between(value string, a string, b string) string { // Get substring between two strings. posFirst := strings.Index(value, a) @@ -243,20 +245,41 @@ func (watchedContainer *WatchedContainerData) StatusUpdated() bool { return watchedContainer.statusUpdated } -func (watchedContainer *WatchedContainerData) SetContainerInfo(wl workloadinterface.IWorkload, containerName string) { - if watchedContainer.ContainerNames == nil { - watchedContainer.ContainerNames = make(map[ContainerType][]string) +func (watchedContainer *WatchedContainerData) SetContainerInfo(wl workloadinterface.IWorkload, containerName string) error { + if watchedContainer.ContainerInfos == nil { + watchedContainer.ContainerInfos = make(map[ContainerType][]ContainerInfo) } - // check pod level seccomp profile (might be overridden at container level) podSpec, err := wl.GetPodSpec() - if err == nil && podSpec.SecurityContext != nil && podSpec.SecurityContext.SeccompProfile != nil { + if err != nil { + return fmt.Errorf("failed to get pod spec: %w", err) + } + podStatus, err := wl.GetPodStatus() + if err != nil { + return fmt.Errorf("failed to get pod status: %w", err) + } + // check pod level seccomp profile (might be overridden at container level) + if podSpec.SecurityContext != nil && podSpec.SecurityContext.SeccompProfile != nil { watchedContainer.SeccompProfilePath = podSpec.SecurityContext.SeccompProfile.LocalhostProfile } - checkContainers := func(containers []v1.Container, ephemeralContainers []v1.EphemeralContainer, containerType ContainerType) { - var containerNames []string + // TODO rewrite with podutil.VisitContainers() + checkContainers := func(containers []v1.Container, ephemeralContainers []v1.EphemeralContainer, containerType ContainerType) error { + var imageID string + for _, c := range podStatus.ContainerStatuses { + if c.Name == containerName { + imageID = c.ImageID + } + } + if imageID == "" { + return fmt.Errorf("failed to get imageID for container %s", containerName) + } + var containersInfo []ContainerInfo if containerType == EphemeralContainer { for i, c := range ephemeralContainers { - containerNames = append(containerNames, c.Name) + containersInfo = append(containersInfo, ContainerInfo{ + Name: c.Name, + ImageTag: c.Image, + ImageID: imageID, + }) if c.Name == containerName { watchedContainer.ContainerIndex = i watchedContainer.ContainerType = containerType @@ -267,7 +290,11 @@ func (watchedContainer *WatchedContainerData) SetContainerInfo(wl workloadinterf } } else { for i, c := range containers { - containerNames = append(containerNames, c.Name) + containersInfo = append(containersInfo, ContainerInfo{ + Name: c.Name, + ImageTag: c.Image, + ImageID: imageID, + }) if c.Name == containerName { watchedContainer.ContainerIndex = i watchedContainer.ContainerType = containerType @@ -277,26 +304,22 @@ func (watchedContainer *WatchedContainerData) SetContainerInfo(wl workloadinterf } } } - watchedContainer.ContainerNames[containerType] = containerNames + watchedContainer.ContainerInfos[containerType] = containersInfo + return nil } // containers - containers, err := wl.GetContainers() - if err != nil { - return + if err := checkContainers(podSpec.Containers, nil, Container); err != nil { + return err } - checkContainers(containers, nil, Container) // initContainers - initContainers, err := wl.GetInitContainers() - if err != nil { - return + if err := checkContainers(podSpec.InitContainers, nil, InitContainer); err != nil { + return err } - checkContainers(initContainers, nil, InitContainer) // ephemeralContainers - ephemeralContainers, err := wl.GetEphemeralContainers() - if err != nil { - return + if err := checkContainers(nil, podSpec.EphemeralContainers, EphemeralContainer); err != nil { + return err } - checkContainers(nil, ephemeralContainers, EphemeralContainer) + return nil } type PatchOperation struct { diff --git a/tests/chart/templates/node-agent/clusterrole.yaml b/tests/chart/templates/node-agent/clusterrole.yaml index 67f0a98a..e2271c8d 100644 --- a/tests/chart/templates/node-agent/clusterrole.yaml +++ b/tests/chart/templates/node-agent/clusterrole.yaml @@ -18,10 +18,7 @@ rules: resources: ["deployments", "daemonsets", "statefulsets", "replicasets"] verbs: ["get", "watch", "list"] - apiGroups: ["spdx.softwarecomposition.kubescape.io"] - resources: ["sbomsyfts"] - verbs: ["get", "watch", "list"] -- apiGroups: ["spdx.softwarecomposition.kubescape.io"] - resources: ["applicationactivities", "applicationprofiles", "networkneighborses", "networkneighborhoods", "sbomsyftfiltereds"] + resources: ["applicationactivities", "applicationprofiles", "networkneighborses", "networkneighborhoods"] verbs: ["create", "get", "update", "watch", "list", "patch"] - apiGroups: ["kubescape.io"] resources: ["runtimerulealertbindings"] diff --git a/tests/chart/values.yaml b/tests/chart/values.yaml index bd186f05..68c8ae81 100644 --- a/tests/chart/values.yaml +++ b/tests/chart/values.yaml @@ -33,7 +33,7 @@ storage: name: "storage" image: repository: quay.io/kubescape/storage - tag: v0.0.121 + tag: v0.0.127 pullPolicy: IfNotPresent cleanupInterval: "6h" labels: