diff --git a/.Rbuildignore b/.Rbuildignore index 95bdd25..b9b7829 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -12,3 +12,4 @@ ^\.Rproj\.user$ ^\.travis\.yml$ ^\.here$ +^\.github$ diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml new file mode 100644 index 0000000..e320c9c --- /dev/null +++ b/.github/workflows/R-CMD-check.yaml @@ -0,0 +1,83 @@ +on: + push: + branches: + - master + - main + - dev + pull_request: + branches: + - master + - main + - dev + +name: R-CMD-check + +jobs: + R-CMD-check: + runs-on: ${{ matrix.config.os }} + + name: ${{ matrix.config.os }} (${{ matrix.config.r }}) + + strategy: + fail-fast: false + matrix: + config: + - {os: macOS-latest, r: 'release'} + - {os: ubuntu-20.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"} + - {os: windows-latest, r: 'devel'} + - {os: windows-latest, r: 'oldrel'} + - {os: windows-latest, r: 'release'} + + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + R_REMOTES_NO_ERRORS_FROM_WARNINGS: true + RSPM: ${{ matrix.config.rspm }} + + steps: + - uses: actions/checkout@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + r-version: ${{ matrix.config.r }} + + - uses: r-lib/actions/setup-pandoc@v2 + + - name: Query dependencies + run: | + install.packages('remotes') + saveRDS(remotes::dev_package_deps(dependencies = TRUE), "depends.Rds", version = 2) + shell: Rscript {0} + + - name: Cache R packages + if: runner.os != 'Windows' + uses: actions/cache@v1 + with: + path: ${{ env.R_LIBS_USER }} + key: ${{ runner.os }}-r-${{ matrix.config.r }}-3-${{ hashFiles('depends.Rds') }} + restore-keys: ${{ runner.os }}-r-${{ matrix.config.r }}-3- + + - name: Install system dependencies + if: runner.os == 'Linux' + env: + RHUB_PLATFORM: linux-x86_64-ubuntu-gcc + run: | + Rscript -e "remotes::install_github('r-hub/sysreqs')" + sysreqs=$(Rscript -e "cat(sysreqs::sysreq_commands('DESCRIPTION'))") + sudo -s eval "$sysreqs" + - name: Install dependencies + run: | + #options("pkgType" = "binary") #see: https://github.com/r-lib/actions/issues/141#issuecomment-664390398 + remotes::install_deps(dependencies = TRUE) + remotes::install_cran("rcmdcheck") + shell: Rscript {0} + + - name: Check + run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning", check_dir = "check") + shell: Rscript {0} + + - name: Upload check results + if: failure() + uses: actions/upload-artifact@master + with: + name: ${{ runner.os }}-r${{ matrix.config.r }}-results + path: check diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml new file mode 100644 index 0000000..7dc7100 --- /dev/null +++ b/.github/workflows/pkgdown.yaml @@ -0,0 +1,49 @@ +on: + push: + branches: + - main + - master + - dev + +name: pkgdown + +jobs: + pkgdown: + runs-on: macOS-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + + - uses: r-lib/actions/setup-r@v2 + + - uses: r-lib/actions/setup-pandoc@v2 + + - name: Query dependencies + run: | + install.packages('remotes') + saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) + writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") + shell: Rscript {0} + + - name: Cache R packages + uses: actions/cache@v2 + with: + path: ${{ env.R_LIBS_USER }} + key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} + restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- + + - name: Install dependencies + run: | + remotes::install_deps(dependencies = TRUE) + install.packages("pkgdown", type = "binary") + shell: Rscript {0} + + - name: Install package + run: R CMD INSTALL . + + - name: Deploy package + run: | + git config --local user.email "actions@github.com" + git config --local user.name "GitHub Actions" + Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' diff --git a/.github/workflows/pr-commands.yaml b/.github/workflows/pr-commands.yaml new file mode 100644 index 0000000..cfda2fb --- /dev/null +++ b/.github/workflows/pr-commands.yaml @@ -0,0 +1,51 @@ +on: + issue_comment: + types: [created] +name: Commands +jobs: + document: + if: startsWith(github.event.comment.body, '/document') + name: document + runs-on: macOS-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + - uses: r-lib/actions/pr-fetch@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + - uses: r-lib/actions/setup-r@v2 + - name: Install dependencies + run: Rscript -e 'install.packages(c("remotes", "roxygen2"))' -e 'remotes::install_deps(dependencies = TRUE)' + - name: Document + run: Rscript -e 'roxygen2::roxygenise()' + - name: commit + run: | + git add man/\* NAMESPACE + git commit -m 'Document' + - uses: r-lib/actions/pr-push@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + style: + if: startsWith(github.event.comment.body, '/style') + name: style + runs-on: macOS-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + - uses: r-lib/actions/pr-fetch@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + - uses: r-lib/actions/setup-r@v2 + - name: Install dependencies + run: Rscript -e 'install.packages("styler")' + - name: Style + run: Rscript -e 'styler::style_pkg()' + - name: commit + run: | + git add \*.R + git commit -m 'Style' + - uses: r-lib/actions/pr-push@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml new file mode 100644 index 0000000..c4cfea8 --- /dev/null +++ b/.github/workflows/test-coverage.yaml @@ -0,0 +1,48 @@ +on: + push: + branches: + - master + - main + pull_request: + branches: + - master + - main + +name: test-coverage + +jobs: + test-coverage: + runs-on: macOS-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + + - uses: r-lib/actions/setup-r@v2 + + - uses: r-lib/actions/setup-pandoc@v2 + + - name: Query dependencies + run: | + install.packages('remotes') + saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) + writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") + shell: Rscript {0} + + - name: Cache R packages + uses: actions/cache@v1 + with: + path: ${{ env.R_LIBS_USER }} + key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} + restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- + + - name: Install dependencies + run: | + install.packages(c("remotes")) + remotes::install_deps(dependencies = TRUE) + remotes::install_cran("covr") + shell: Rscript {0} + + - name: Test coverage + run: covr::codecov() + shell: Rscript {0} diff --git a/.gitignore b/.gitignore index 737ce07..020f0a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ .Rproj.user - # and deploys the website to "gh-pages" branch docs inst/doc +.Rhistory diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 59eb27e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,31 +0,0 @@ -############################################################################## -### Autogenerated with R package kwb.pkgbuild v0.0.0.9000 -### (installed from 'local' source code on 2019-06-17) -### by calling the function kwb.pkgbuild::use_autopkgdown() -### (file created at: 2019-07-30 16:38:20) -############################################################################## - - -language: r -sudo: required -#cache: packages -r_packages: -- remotes -- covr -matrix: - include: - - r: devel - - r: release - after_success: - - Rscript -e 'covr::codecov()' - before_deploy: - - Rscript -e 'remotes::install_cran("pkgdown")' - deploy: - provider: script - script: Rscript -e 'pkgdown::deploy_site_github(verbose = TRUE)' - skip_cleanup: 'true' - on: - branch: - - master - - dev - - r: oldrel diff --git a/DESCRIPTION b/DESCRIPTION index 89a1d0a..0afe375 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fakin.path.app Title: Shiny App to Visualise File Paths -Version: 0.3.0 +Version: 0.3.1 Authors@R: c(person(given = "Hauke", family = "Sonnenberg", @@ -14,25 +14,13 @@ Authors@R: comment = c(ORCID = "0000-0003-0647-7726")), person(given = "Kompetenzzentrum Wasser Berlin gGmbH (KWB)", role = "cph")) -Description: This package contains an R Shiny App that - loads file path information from a file and displays the paths in - different ways. The aim of the app is to find weaknesses in the - folder structure. +Description: This package contains an R Shiny App that loads file path + information from a file and displays the paths in different ways. The + aim of the app is to find weaknesses in the folder structure. License: MIT + file LICENSE URL: https://github.com/KWB-R/fakin.path.app BugReports: https://github.com/KWB-R/fakin.path.app/issues -Encoding: UTF-8 -LazyData: true -Suggests: - covr (>= 3.2.1), - kwb.db (>= 0.3.0), - RMySQL (>= 0.10.17), - knitr (>= 1.23), - rmarkdown (>= 1.13), - testthat (>= 2.2.1) -RoxygenNote: 6.1.1 Imports: - bit64 (>= 0.9.7), data.table (>= 1.11.8), dplyr (>= 0.8.1), DT (>= 0.7), @@ -42,7 +30,7 @@ Imports: htmltools (>= 0.3.6), jsTree (>= 1.0.1), kwb.file (>= 0.3.0), - kwb.utils (>= 0.5.0), + kwb.utils (>= 0.7.0), magrittr (>= 1.5), networkD3 (>= 0.4), pathlist (>= 0.2.0), @@ -54,6 +42,13 @@ Imports: shinyjs (>= 1.0), treemap (>= 2.4.2), wordcloud (>= 2.6) +Suggests: + covr (>= 3.2.1), + knitr (>= 1.23), + kwb.db (>= 0.3.0), + rmarkdown (>= 1.13), + RMySQL (>= 0.10.17), + testthat (>= 2.2.1) VignetteBuilder: knitr Remotes: @@ -61,3 +56,6 @@ Remotes: github::kwb-r/kwb.db, github::kwb-r/kwb.file, github::kwb-r/kwb.utils +Encoding: UTF-8 +LazyData: true +RoxygenNote: 7.2.3 diff --git a/LICENSE b/LICENSE index be5f543..8d656bf 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ # MIT License -Copyright (c) 2019 Kompetenzzentrum Wasser Berlin gGmbH (KWB) +Copyright (c) 2019-2021 Kompetenzzentrum Wasser Berlin gGmbH (KWB) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSE.md b/LICENSE.md index be5f543..8d656bf 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ # MIT License -Copyright (c) 2019 Kompetenzzentrum Wasser Berlin gGmbH (KWB) +Copyright (c) 2019-2021 Kompetenzzentrum Wasser Berlin gGmbH (KWB) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/NEWS.md b/NEWS.md index cc7f6be..d9771f1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,10 @@ +# fakin.path.app v0.3.1 (2021-12-16) + +* Add badges for [https://kwb-r.r-universe.dev]([https://kwb-r.r-universe.dev) +* Use GitHub actions for continious integration +* Move `read_lines()` to `kwb.utils::readLinesWithEncoding()` +* Improve error message when path file is empty + # fakin.path.app v0.3.0 (2020-01-10) First release with main functions: diff --git a/R/app_scan.R b/R/app_scan.R index eafcba8..e3580f0 100644 --- a/R/app_scan.R +++ b/R/app_scan.R @@ -8,15 +8,15 @@ server_app_scan <- function(input, output, session) } # Volumes required as start paths for shinyDirChoose() - volumes <- shinyFiles::getVolumes() + get_volumes <- shinyFiles::getVolumes() # Let the user choose a new root directory if the browse button is clicked shinyFiles::shinyDirChoose( - input, "browse", roots = volumes, session = session + input, "browse", roots = get_volumes(), session = session ) shinyFiles::shinyDirChoose( - input, "browse_target", roots = volumes, session = session + input, "browse_target", roots = get_volumes(), session = session ) # Update the list of root directories if a new path was selected @@ -26,7 +26,7 @@ server_app_scan <- function(input, output, session) #browser(expr = TRUE) - new_dir <- shinyFiles::parseDirPath(volumes, input$browse) + new_dir <- shinyFiles::parseDirPath(get_volumes(), input$browse) if (length(new_dir) == 0) { return() @@ -39,7 +39,7 @@ server_app_scan <- function(input, output, session) # Update the target directory if a new path was selected shiny::observeEvent(input$browse_target, { - new_dir <- shinyFiles::parseDirPath(volumes, input$browse_target) + new_dir <- shinyFiles::parseDirPath(get_volumes(), input$browse_target) if (length(new_dir) == 0) { return() } diff --git a/R/guess_file_metadata.R b/R/guess_file_metadata.R index c94a276..652f178 100644 --- a/R/guess_file_metadata.R +++ b/R/guess_file_metadata.R @@ -5,8 +5,8 @@ #' @param file path to text file #' @param n_first_rows number of first rows of \code{file} from which to guess #' the meta information. -#' @param \dots further arguments passed to \code{fakin.path.app:::read_lines}, -#' such as \code{fileEncoding} +#' @param \dots further arguments passed to +#' \code{\link[kwb.utils]{readLinesWithEncoding}}, such as \code{fileEncoding} #' @return data frame with columns #' \itemize{ #' \item \code{paths}: does the file seem to contain path information, i.e. @@ -29,7 +29,7 @@ #' guess_file_metadata <- function(file, n_first_rows = 1000, ...) { - first_rows <- read_lines(file, n_first_rows, ...) + first_rows <- kwb.utils::readLinesWithEncoding(file, n_first_rows, ...) patterns <- c(slash = "/", backslash = "\\\\") has_pattern <- lapply(patterns, grepl_bytes, first_rows) has_paths <- has_pattern$slash | has_pattern$backslash diff --git a/R/module_csv.R b/R/module_csv.R index 5b101a0..6a3893c 100644 --- a/R/module_csv.R +++ b/R/module_csv.R @@ -90,7 +90,11 @@ csvFile <- function(input, output, session, read_function) } } ) - + + if (is.null(x)) { + stop("The file seems to be empty:\n ", csv_file()) + } + kwb.utils::selectColumns( x = normalise_column_names(x), columns = c("path", "type", "size", "modified") diff --git a/R/plot_treemaps.R b/R/plot_treemaps.R index b0f8ab1..9d53d10 100644 --- a/R/plot_treemaps.R +++ b/R/plot_treemaps.R @@ -86,6 +86,9 @@ plot_treemaps_from_path_data <- function( depth = 1, types = c("size", "files") ) { + #kwb.utils::assignPackageObjects("fakin.path.app") + #kwb.utils::assignArgumentDefaults(fakin.path.app:::plot_treemaps_from_path_data) + if (! inherits(path_data, "pathlist") && ! check_path_data(path_data)) { return() } @@ -109,6 +112,7 @@ plot_treemaps_from_path_data <- function( maps <- lapply(types, function(map_type) { + #map_type <- types[1L] map <- kwb.utils::catAndRun( sprintf("Creating treemap '%s'", map_type), kwb.utils::callWith( @@ -212,7 +216,7 @@ prepare_for_n_level_treemap2 <- function( # Filter for paths starting with root_path if root_path is given if (root_path != "") { - pl <- pl[left_substring_equals(as.character(pl), root_path)] + pl <- pl[kwb.utils::leftSubstringEquals(as.character(pl), root_path)] } # Let pathlist remove common roots @@ -255,7 +259,11 @@ args_treemap <- function( vSize = setting$column, vColor = anti_setting$column, title = setting$title, - title.legend = setting$legend + title.legend = setting$legend, + # The default value "NULL" of argument "format.legend" in treemap::treemap() + # leads to an error! It must be a list since this list is finally passed + # to do.call() (e.g. in treemap:::dens2col()) + format.legend = list() ) } @@ -378,7 +386,7 @@ filter_for_start_path <- function(path_data, start_path = "") paths <- kwb.utils::selectColumns(path_data, "path") # Filter for paths starting with start_path - path_data[left_substring_equals(paths, start_path), ] + path_data[kwb.utils::leftSubstringEquals(paths, start_path), ] } # aggregate_by_levels ---------------------------------------------------------- @@ -387,8 +395,14 @@ aggregate_by_levels <- function(folder_data, group_by = names(folder_data)[1:2]) # Convert size to numeric, otherwise we get an overflow when summing up folder_data$size <- as.numeric(folder_data$size) - do.call(dplyr::group_by_, c(list(folder_data), as.list(group_by))) %>% - dplyr::summarise_(n_files = "length(size)", total_size = "sum(size)") %>% + do.call(dplyr::group_by, args = c( + list(folder_data), folder_data[group_by]) + ) %>% + dplyr::summarise( + n_files = length(.data$size), + total_size = sum(.data$size), + .groups = "drop" + ) %>% as.data.frame() } @@ -400,7 +414,7 @@ plot_treemap <- function( #args <- list() args <- list(...) - if (length(args) == 0) { + if (length(args) == 0L) { args <- args_treemap() } diff --git a/R/read_file_paths.R b/R/read_file_paths.R index a25d400..6bba569 100644 --- a/R/read_file_paths.R +++ b/R/read_file_paths.R @@ -101,6 +101,6 @@ guess_file_path_type <- function(x) { kwb.utils::catAndRun("Guessing file path type", { has_extension <- kwb.utils::fileExtension(x) != "" - ifelse(has_final_slash(x) | ! has_extension, "directory", "file") + ifelse(kwb.utils::hasFinalSlash(x) | ! has_extension, "directory", "file") }) } diff --git a/R/read_lines.R b/R/read_lines.R index 28a6cdf..13ec033 100644 --- a/R/read_lines.R +++ b/R/read_lines.R @@ -11,19 +11,13 @@ #' read_lines <- function(file, ..., encoding = "unknown", fileEncoding = "") { - # This part is copied from the implementation of read.table - if (is.character(file)) { - con <- if (nzchar(fileEncoding)) { - file(file, "rt", encoding = fileEncoding) - } else { - file(file, "rt") - } - on.exit(close(con)) - } else { - con <- file - } - - readLines(con, encoding = encoding, ...) + kwb.utils::warningDeprecated( + "fakin.path.app:::read_lines", "kwb.utils::readLinesWithEncoding" + ) + + kwb.utils::readLinesWithEncoding( + file, ..., fileEncoding = fileEncoding, encoding = encoding + ) } # default_local_encoding ------------------------------------------------------- diff --git a/R/read_paths.R b/R/read_paths.R index d8fab4c..802a6f1 100644 --- a/R/read_paths.R +++ b/R/read_paths.R @@ -42,8 +42,8 @@ read_paths_only <- function(file, metadata) #' @param fileEncoding The name of the encoding to be assumed. Passed as #' \code{encoding} to \code{\link{file}}, see there. #' @param encoding passed to \code{\link{readLines}}. -#' @param \dots arguments passed to \code{fakin.path.app:::read_lines}, -#' such as \code{n} +#' @param \dots arguments passed to +#' \code{\link[kwb.utils]{readLinesWithEncoding}}, such as \code{n} #' @param do_sort if \code{TRUE} (default), the vector of paths is sorted #' alphanumerically. #' @param expected_encodings vector of names of file encodings that are @@ -65,8 +65,11 @@ read_paths_ <- function( fileEncoding <- guess_expected_encoding(file, expected_encodings) } - paths <- kwb.utils::catAndRun(sprintf("Reading paths from '%s'", file), { - read_lines(file, encoding = encoding, fileEncoding = fileEncoding, ...) + paths <- kwb.utils::catAndRun( + sprintf("Reading paths from '%s'", file), { + kwb.utils::readLinesWithEncoding( + file, encoding = encoding, fileEncoding = fileEncoding, ... + ) }) cat(length(paths), "lines have been read.\n") diff --git a/R/utils.R b/R/utils.R index dd2bf2e..247ea4b 100644 --- a/R/utils.R +++ b/R/utils.R @@ -48,14 +48,6 @@ grepl_bytes <- function(...) grepl(..., useBytes = TRUE) } -# has_final_slash -------------------------------------------------------------- -has_final_slash <- function(x) -{ - #grepl_bytes("/$", x) - n <- nchar(x) - substr(x, n, n) == "/" -} - # prepare_root_for_jsTree ------------------------------------------------------ prepare_root_for_jsTree <- function(root) { @@ -80,20 +72,6 @@ inlineRadioButtons <- function(...) shiny::radioButtons(..., inline = TRUE) } -# left_substring_equals -------------------------------------------------------- - -#' Is Left Substring of X Equal To Y? -#' -#' @param x String of which the left part is compared with \code{y} -#' @param y String to be compared with the left part of \code{x} -#' -left_substring_equals <- function(x, y) -{ - stopifnot(is.character(x), is.character(y)) - - substr(x, 1, nchar(y)) == y -} - # normalise_column_names ------------------------------------------------------- normalise_column_names <- function(x) { @@ -140,12 +118,6 @@ read_slider_config_raw <- function(file) lapply(raw_config, kwb.utils::removeColumns, "name") } -# remove_empty ----------------------------------------------------------------- -remove_empty <- function(x) -{ - x[! kwb.utils::isNaOrEmpty(x)] -} - # run_with_modal --------------------------------------------------------------- run_with_modal <- function(expr, text = "Loading") { diff --git a/README.md b/README.md index f5dd566..4605ce0 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,11 @@ -[![Appveyor build Status](https://ci.appveyor.com/api/projects/status/github/KWB-R/fakin.path.app?branch=master&svg=true)](https://ci.appveyor.com/project/KWB-R/fakin-path-app/branch/master) -[![Travis build Status](https://travis-ci.org/KWB-R/fakin.path.app.svg?branch=master)](https://travis-ci.org/KWB-R/fakin.path.app) +[![R-CMD-check](https://github.com/KWB-R/fakin.path.app/workflows/R-CMD-check/badge.svg)](https://github.com/KWB-R/fakin.path.app/actions?query=workflow%3AR-CMD-check) +[![pkgdown](https://github.com/KWB-R/fakin.path.app/workflows/pkgdown/badge.svg)](https://github.com/KWB-R/fakin.path.app/actions?query=workflow%3Apkgdown) [![codecov](https://codecov.io/github/KWB-R/fakin.path.app/branch/master/graphs/badge.svg)](https://codecov.io/github/KWB-R/fakin.path.app) [![Project Status](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/fakin.path.app)]() +[![R-Universe_Status_Badge](https://kwb-r.r-universe.dev/badges/fakin.path.app)](https://kwb-r.r-universe.dev/) +[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.3603502.svg)](https://doi.org/10.5281/zenodo.3603502) +[![Launch binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/kwb-r/apps/fakin.path.app?urlpath=shiny/) # fakin.path.app @@ -11,6 +14,10 @@ loads file path information from a file and displays the paths in different ways. The aim of the app is to find weaknesses in the folder structure. +## Online Demo + +For starting an interactive online demo of the app please click on this [![Launch binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/kwb-r/apps/fakin.path.app?urlpath=shiny/) badge. + ## Installation ```r diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 0e7c1db..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,45 +0,0 @@ -# DO NOT CHANGE the "init" and "install" sections below - -# Download script file from GitHub -init: - ps: | - $ErrorActionPreference = "Stop" - Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1" - Import-Module '..\appveyor-tool.ps1' - -install: - ps: Bootstrap - -cache: -# - C:\RLibrary - -# Adapt as necessary starting from here - -build_script: - - travis-tool.sh install_deps - -test_script: - - travis-tool.sh run_tests - -on_failure: - - 7z a failure.zip *.Rcheck\* - - appveyor PushArtifact failure.zip - -artifacts: - - path: '*.Rcheck\**\*.log' - name: Logs - - - path: '*.Rcheck\**\*.out' - name: Logs - - - path: '*.Rcheck\**\*.fail' - name: Logs - - - path: '*.Rcheck\**\*.Rout' - name: Logs - - - path: '\*_*.tar.gz' - name: Bits - - - path: '\*_*.zip' - name: Bits diff --git a/index.md b/index.md index 9e710d3..569c8c1 100644 --- a/index.md +++ b/index.md @@ -1,12 +1,19 @@ -[![Appveyor build Status](https://ci.appveyor.com/api/projects/status/ufb4myi4n730logd/branch/master?svg=true)](https://ci.appveyor.com/project/KWB-R/fakin-path-app/branch/master) -[![Travis build Status](https://travis-ci.org/KWB-R/fakin.path.app.svg?branch=master)](https://travis-ci.org/KWB-R/fakin.path.app) +[![R-CMD-check](https://github.com/KWB-R/fakin.path.app/workflows/R-CMD-check/badge.svg)](https://github.com/KWB-R/fakin.path.app/actions?query=workflow%3AR-CMD-check) +[![pkgdown](https://github.com/KWB-R/fakin.path.app/workflows/pkgdown/badge.svg)](https://github.com/KWB-R/fakin.path.app/actions?query=workflow%3Apkgdown) [![codecov](https://codecov.io/github/KWB-R/fakin.path.app/branch/master/graphs/badge.svg)](https://codecov.io/github/KWB-R/fakin.path.app) [![Project Status](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/fakin.path.app)]() +[![R-Universe_Status_Badge](https://kwb-r.r-universe.dev/badges/fakin.path.app)](https://kwb-r.r-universe.dev/) +[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.3603502.svg)](https://doi.org/10.5281/zenodo.3603502) +[![Launch binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/kwb-r/apps/fakin.path.app?urlpath=shiny/) This package contains an R Shiny App that loads file path information from a file and displays the paths in different ways. The aim of the app is to find -weaknesses in given folder structures. +weaknesses in given folder structures. + +## Online Demo + +For starting an interactive online demo of the app please click on this [![Launch binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/kwb-r/apps/fakin.path.app?urlpath=shiny/) badge. ## Installation diff --git a/inst/extdata/example_file_info_SysWOW64.csv b/inst/extdata/example_file_info_SysWOW64.csv new file mode 100644 index 0000000..c8b2d84 --- /dev/null +++ b/inst/extdata/example_file_info_SysWOW64.csv @@ -0,0 +1,5807 @@ +path;type;size;permissions;modification_time;user;group;device_id;hard_links;special_device_id;inode;block_size;blocks;flags;generation;access_time;change_time;birth_time +C:/Windows/SysWOW64/%LOCALAPPDATA%;directory;0;16822;2020-11-03T12:52:03.285130Z;;;2785144255;1;0;1970324837784900;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:52:03.285130Z;2020-03-16T22:22:58.723711Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps;directory;0;16822;2020-10-06T06:54:36.717555Z;;;2785144255;1;0;844424930428005;4096;8;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:52:03.285130Z;2020-03-16T22:22:58.723711Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/ThinkPad_Hybrid_Dock_TVSU_FW_V1.0.0.25.exe.11856.dmp;file;431260;33206;2020-08-05T11:47:41.235923Z;;;2785144255;1;0;12666373952115100;4096;848;0;0;2020-08-05T11:47:41.235923Z;2020-08-05T11:47:41.235923Z;2020-08-05T11:47:41.137141Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/ThinkPad_Hybrid_Dock_TVSU_FW_V1.0.0.25.exe.14892.dmp;file;430300;33206;2020-07-07T08:47:11.481311Z;;;2785144255;1;0;5629499534329930;4096;848;0;0;2020-07-07T08:47:11.481311Z;2020-07-07T08:47:11.481311Z;2020-07-07T08:47:11.417858Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/ThinkPad_Hybrid_Dock_TVSU_FW_V1.0.0.25.exe.18292.dmp;file;428424;33206;2020-07-07T08:47:07.532820Z;;;2785144255;1;0;5629499534329930;4096;840;0;0;2020-07-07T08:47:07.532820Z;2020-07-07T08:47:07.532820Z;2020-07-07T08:47:07.445948Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/ThinkPad_Hybrid_Dock_TVSU_FW_V1.0.0.25.exe.18380.dmp;file;430908;33206;2020-08-05T11:47:37.605234Z;;;2785144255;1;0;20266198323302700;4096;848;0;0;2020-08-05T11:47:37.605234Z;2020-08-05T11:47:37.605234Z;2020-08-05T11:47:37.504984Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/ThinkPad_Hybrid_Dock_TVSU_FW_V1.0.0.25.exe.2012.dmp;file;431372;33206;2020-06-29T16:44:10.610458Z;;;2785144255;1;0;5348024557545660;4096;848;0;0;2020-06-29T16:44:10.610458Z;2020-06-29T16:44:10.610458Z;2020-06-29T16:44:06.786390Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/ThinkPad_Hybrid_Dock_TVSU_FW_V1.0.0.25.exe.8048.dmp;file;429432;33206;2020-08-13T09:41:35.902423Z;;;2785144255;1;0;5910974510990930;4096;840;0;0;2020-08-13T09:41:35.902423Z;2020-08-13T09:41:35.902423Z;2020-08-13T09:41:35.799975Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/ThinkPad_Hybrid_Dock_TVSU_FW_V1.0.0.25.exe.8952.dmp;file;430608;33206;2020-08-13T09:41:32.016428Z;;;2785144255;1;0;1407374883849320;4096;848;0;0;2020-08-13T09:41:32.016428Z;2020-08-13T09:41:32.016428Z;2020-08-13T09:41:31.926832Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/uncsetting.exe.13384.dmp;file;6328711;33206;2020-08-25T06:19:10.063209Z;;;2785144255;1;0;20266198323232800;4096;12368;0;0;2020-08-25T06:19:10.063209Z;2020-08-25T06:19:10.063209Z;2020-08-25T06:19:09.914680Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/uncsetting.exe.17172.dmp;file;6313167;33206;2020-10-06T06:54:37.022647Z;;;2785144255;1;0;28428972647849200;4096;12336;0;0;2020-10-06T06:54:37.022647Z;2020-10-06T06:54:37.022647Z;2020-10-06T06:54:36.717555Z +C:/Windows/SysWOW64/%LOCALAPPDATA%/CrashDumps/uncsetting.exe.6188.dmp;file;6310663;33206;2020-07-25T10:31:36.156490Z;;;2785144255;1;0;5910974510964930;4096;12328;0;0;2020-07-25T10:31:36.156490Z;2020-07-25T10:31:36.156490Z;2020-07-25T10:31:35.994782Z +C:/Windows/SysWOW64/0409;directory;0;16822;2019-12-07T14:51:16.610878Z;;;2785144255;1;0;18295873486513000;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.610878Z +C:/Windows/SysWOW64/12520437.cpx;file;2151;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907629730;4096;8;0;0;2021-12-16T13:35:27.404179Z;2020-11-03T12:35:39.219540Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/12520850.cpx;file;2233;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907627910;4096;8;0;0;2021-12-16T13:35:27.412194Z;2020-11-03T12:35:38.375987Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/@AppHelpToast.png;file;232;33206;2019-12-07T09:09:21.756153Z;;;2785144255;2;0;1125899907637410;4096;0;0;0;2021-12-16T13:36:01.121077Z;2021-05-18T10:36:12.845374Z;2019-12-07T09:09:21.756153Z +C:/Windows/SysWOW64/@AudioToastIcon.png;file;308;33206;2019-12-07T09:09:21.770852Z;;;2785144255;2;0;1125899907637580;4096;0;0;0;2021-12-16T13:36:01.121077Z;2021-07-07T10:42:14.779695Z;2019-12-07T09:09:21.770852Z +C:/Windows/SysWOW64/@EnrollmentToastIcon.png;file;330;33206;2019-12-07T09:09:26.114855Z;;;2785144255;2;0;1125899907636890;4096;8;0;0;2021-12-16T13:36:01.121077Z;2021-11-11T08:10:02.330909Z;2019-12-07T09:09:26.114855Z +C:/Windows/SysWOW64/@VpnToastIcon.png;file;404;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907514280;4096;8;0;0;2021-12-16T13:36:01.126157Z;2021-12-16T12:06:18.175712Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/@WirelessDisplayToast.png;file;691;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907637220;4096;8;0;0;2021-12-16T13:36:01.126157Z;2021-02-22T08:01:24.302824Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/aadauthhelper.dll;file;339968;33206;2021-10-16T00:21:15.979705Z;;;2785144255;2;0;281474977857332;4096;664;0;0;2021-12-16T13:35:27.540794Z;2021-11-11T11:29:33.737270Z;2021-10-16T00:21:15.964110Z +C:/Windows/SysWOW64/aadtb.dll;file;1125888;33206;2021-10-03T19:02:04.324233Z;;;2785144255;2;0;1688849861186660;4096;2200;0;0;2021-12-16T13:35:27.579012Z;2021-11-11T11:29:33.744251Z;2021-10-03T19:02:04.248765Z +C:/Windows/SysWOW64/aadWamExtension.dll;file;137016;33206;2021-10-03T19:02:04.144513Z;;;2785144255;2;0;1688849861186660;4096;272;0;0;2021-12-16T13:35:27.595931Z;2021-11-11T11:29:33.734277Z;2021-10-03T19:02:04.137191Z +C:/Windows/SysWOW64/AarSvc.dll;file;354816;33206;2021-10-16T00:21:15.230801Z;;;2785144255;2;0;281474977857299;4096;696;0;0;2021-12-16T13:35:27.612092Z;2021-11-11T11:29:33.703360Z;2021-10-16T00:21:15.230801Z +C:/Windows/SysWOW64/AboveLockAppHost.dll;file;331776;33206;2021-03-11T12:12:19.379596Z;;;2785144255;2;0;844424931103396;4096;648;0;0;2021-12-16T13:35:27.628738Z;2021-11-11T11:29:30.961582Z;2021-03-11T12:12:19.363944Z +C:/Windows/SysWOW64/accessibilitycpl.dll;file;223232;33206;2020-11-03T12:45:51.025747Z;;;2785144255;2;0;562949954396558;4096;440;0;0;2021-12-16T13:35:27.645290Z;2021-11-11T11:29:33.772176Z;2020-11-03T12:45:51.010161Z +C:/Windows/SysWOW64/accountaccessor.dll;file;203264;33206;2021-01-15T09:27:50.155019Z;;;2785144255;2;0;21392098230634600;4096;400;0;0;2021-12-16T13:35:27.659291Z;2021-11-11T11:29:35.502596Z;2021-01-15T09:27:50.155019Z +C:/Windows/SysWOW64/AccountsRt.dll;file;342528;33206;2021-01-15T09:27:50.170638Z;;;2785144255;2;0;15762598696421500;4096;672;0;0;2021-12-16T13:35:27.674152Z;2021-11-11T11:29:35.504591Z;2021-01-15T09:27:50.155019Z +C:/Windows/SysWOW64/AcGenral.dll;file;2398720;33206;2020-11-03T12:46:03.569817Z;;;2785144255;2;0;562949954401109;4096;4688;0;0;2021-12-16T13:35:27.678014Z;2021-11-11T11:29:34.248Z;2020-11-03T12:46:03.554160Z +C:/Windows/SysWOW64/AcLayers.dll;file;381440;33206;2021-10-16T00:21:30.736399Z;;;2785144255;2;0;281474977857999;4096;752;0;0;2021-12-16T13:35:27.678565Z;2021-11-11T11:29:34.245008Z;2021-10-16T00:21:30.720811Z +C:/Windows/SysWOW64/acledit.dll;file;8704;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907628410;4096;24;0;0;2021-12-16T13:35:27.689219Z;2021-11-11T11:29:34.203158Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/aclui.dll;file;441856;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907628350;4096;864;0;0;2021-12-16T13:35:27.706535Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/acppage.dll;file;69632;33206;2021-01-15T09:27:18.786355Z;;;2785144255;2;0;6755399441674900;4096;136;0;0;2021-12-16T13:35:27.719427Z;2021-11-11T11:29:33.772176Z;2021-01-15T09:27:18.786355Z +C:/Windows/SysWOW64/AcSpecfc.dll;file;461824;33206;2020-11-03T12:46:03.585403Z;;;2785144255;2;0;562949954401110;4096;904;0;0;2021-12-16T13:35:27.735256Z;2021-11-11T11:29:34.253035Z;2020-11-03T12:46:03.585403Z +C:/Windows/SysWOW64/ActionCenter.dll;file;255488;33206;2021-01-15T09:27:19.643887Z;;;2785144255;2;0;9570149208781570;4096;504;0;0;2021-12-16T13:35:27.761193Z;2021-11-11T11:29:33.792123Z;2021-01-15T09:27:19.643887Z +C:/Windows/SysWOW64/ActionCenterCPL.dll;file;125952;33206;2020-11-03T12:45:52.822231Z;;;2785144255;2;0;562949954397852;4096;248;0;0;2021-12-16T13:35:27.775684Z;2021-11-11T11:29:33.787167Z;2020-11-03T12:45:52.822231Z +C:/Windows/SysWOW64/ActivationClient.dll;file;43008;33206;2021-01-15T09:27:13.355524Z;;;2785144255;2;0;20829148277179600;4096;88;0;0;2021-12-16T13:35:27.786688Z;2021-11-11T11:29:33.743254Z;2021-01-15T09:27:13.339902Z +C:/Windows/SysWOW64/ActivationManager.dll;file;654336;33206;2021-10-03T19:02:04.689763Z;;;2785144255;2;0;1688849861186670;4096;1280;0;0;2021-12-16T13:35:27.802206Z;2021-11-11T11:29:33.742257Z;2021-10-03T19:02:04.636593Z +C:/Windows/SysWOW64/activeds.dll;file;217600;33206;2021-01-15T09:27:18.755077Z;;;2785144255;2;0;18014398510101100;4096;432;0;0;2021-12-16T13:35:27.815899Z;2021-11-11T11:29:33.772176Z;2021-01-15T09:27:18.755077Z +C:/Windows/SysWOW64/activeds.tlb;file;112128;33206;2020-11-03T12:45:51.041390Z;;;2785144255;2;0;562949954396564;4096;224;0;0;2021-12-16T13:35:27.823890Z;2021-02-22T08:01:23.642363Z;2020-11-03T12:45:51.041390Z +C:/Windows/SysWOW64/ActiveSyncProvider.dll;file;1423360;33206;2021-01-15T09:27:50.201883Z;;;2785144255;2;0;15762598696421500;4096;2784;0;0;2021-12-16T13:35:27.842373Z;2021-11-11T11:29:35.502596Z;2021-01-15T09:27:50.170638Z +C:/Windows/SysWOW64/actxprxy.dll;file;283136;33206;2021-03-11T12:12:18.762354Z;;;2785144255;2;0;844424931103372;4096;560;0;0;2021-12-16T13:35:27.842680Z;2021-11-11T11:29:33.796165Z;2021-03-11T12:12:18.762354Z +C:/Windows/SysWOW64/AcWinRT.dll;file;68608;33206;2021-06-10T14:01:50.938190Z;;;2785144255;2;0;281474977765845;4096;136;0;0;2021-12-16T13:35:27.857753Z;2021-11-11T11:29:34.243013Z;2021-06-10T14:01:50.938190Z +C:/Windows/SysWOW64/acwow64.dll;file;37888;33206;2021-06-10T14:01:41.445002Z;;;2785144255;2;0;281474977765206;4096;80;0;0;2021-12-16T13:35:27.868726Z;2021-11-11T11:29:33.790129Z;2021-06-10T14:01:41.445002Z +C:/Windows/SysWOW64/AcXtrnal.dll;file;86528;33206;2021-10-16T00:21:30.720811Z;;;2785144255;2;0;281474977857998;4096;176;0;0;2021-12-16T13:35:27.882448Z;2021-11-11T11:29:34.252028Z;2021-10-16T00:21:30.720811Z +C:/Windows/SysWOW64/AdaptiveCards.dll;file;42496;33206;2021-01-15T09:27:12.886858Z;;;2785144255;2;0;2533274790986920;4096;88;0;0;2021-12-16T13:35:27.894324Z;2021-11-11T11:29:33.739265Z;2021-01-15T09:27:12.886858Z +C:/Windows/SysWOW64/AddressParser.dll;file;53248;33206;2019-12-07T09:09:18.005520Z;;;2785144255;2;0;1407374884348430;4096;104;0;0;2021-12-16T13:35:27.905919Z;2021-11-11T11:29:33.756219Z;2019-12-07T09:09:18.005520Z +C:/Windows/SysWOW64/AdmTmpl.dll;file;428544;33206;2020-11-03T12:46:05.928634Z;;;2785144255;2;0;562949954401761;4096;840;0;0;2021-12-16T13:35:27.923871Z;2021-11-11T11:29:32.371140Z;2020-11-03T12:46:05.928634Z +C:/Windows/SysWOW64/adprovider.dll;file;49152;33206;2021-04-17T10:35:10.079388Z;;;2785144255;2;0;844424930951803;4096;96;0;0;2021-12-16T13:35:27.934876Z;2021-11-11T11:29:34.210101Z;2021-04-17T10:35:10.070451Z +C:/Windows/SysWOW64/adrclient.dll;file;100352;33206;2021-01-15T09:27:41.210640Z;;;2785144255;2;0;12666373952602600;4096;200;0;0;2021-12-16T13:35:27.948552Z;2021-11-11T11:29:31.879830Z;2021-01-15T09:27:41.210640Z +C:/Windows/SysWOW64/adsldp.dll;file;198656;33206;2021-11-11T11:29:08.074417Z;;;2785144255;2;0;281474977879570;4096;392;0;0;2021-12-16T13:35:27.961429Z;2021-11-11T11:38:51.067006Z;2021-11-11T11:29:08.070426Z +C:/Windows/SysWOW64/adsldpc.dll;file;209920;33206;2021-06-10T14:01:40.712107Z;;;2785144255;2;0;281474977765171;4096;416;0;0;2021-12-16T13:35:27.973549Z;2021-11-11T11:29:33.761205Z;2021-06-10T14:01:40.712107Z +C:/Windows/SysWOW64/adsmsext.dll;file;84480;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907630540;4096;168;0;0;2021-12-16T13:35:27.984563Z;2021-11-11T11:29:34.211139Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/adsnt.dll;file;286208;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907630180;4096;560;0;0;2021-12-16T13:35:27.997530Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/adtschema.dll;file;863232;33206;2020-11-11T20:25:25.766349Z;;;2785144255;2;0;844424931073590;4096;1688;0;0;2021-12-16T13:35:28.008749Z;2021-11-11T11:29:33.700367Z;2020-11-11T20:25:25.750563Z +C:/Windows/SysWOW64/AdvancedInstallers;directory;0;16822;2021-01-15T09:30:17.929957Z;;;2785144255;1;0;24488322974147400;4096;0;0;0;2021-12-16T13:36:01.156170Z;2021-01-15T09:30:17.929957Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/AdvancedInstallers/cmiv2.dll;file;1909584;33206;2021-01-15T09:27:21.662693Z;;;2785144255;2;0;6755399441675480;4096;3736;0;0;2021-01-15T09:30:31.672804Z;2021-11-11T11:29:33.805088Z;2021-01-15T09:27:21.631449Z +C:/Windows/SysWOW64/advapi32.dll;file;489656;33206;2021-06-10T14:01:36.963119Z;;;2785144255;2;0;281474977764837;4096;960;0;0;2021-12-16T13:35:28.009762Z;2021-11-11T11:29:33.713333Z;2021-06-10T14:01:36.947498Z +C:/Windows/SysWOW64/advapi32res.dll;file;2560;33206;2019-12-07T09:09:13.536352Z;;;2785144255;2;0;1125899907636160;4096;8;0;0;2021-12-16T13:35:28.011743Z;2021-11-11T11:29:33.706351Z;2019-12-07T09:09:13.536352Z +C:/Windows/SysWOW64/advpack.dll;file;120832;33206;2019-12-07T09:09:27.599746Z;;;2785144255;2;0;1125899907638210;4096;240;0;0;2021-12-16T13:35:28.025351Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:27.599746Z +C:/Windows/SysWOW64/aeevts.dll;file;30720;33206;2019-12-07T09:09:21.756153Z;;;2785144255;2;0;1125899907636320;4096;64;0;0;2021-12-16T13:35:28.033292Z;2021-11-11T11:29:33.776165Z;2019-12-07T09:09:21.756153Z +C:/Windows/SysWOW64/aepic.dll;file;475448;33206;2021-10-03T19:02:16.320307Z;;;2785144255;2;0;1688849861186960;4096;936;0;0;2021-12-16T13:35:28.048869Z;2021-11-11T11:29:33.777163Z;2021-10-03T19:02:16.249863Z +C:/Windows/SysWOW64/aesm_service_ps.dll;file;47760;33206;2018-12-19T02:32:00Z;;;2785144255;1;0;1125899906993110;4096;96;0;0;2021-12-16T13:35:28.061053Z;2020-11-03T12:52:03.269473Z;2019-09-17T10:23:44.936420Z +C:/Windows/SysWOW64/agentactivationruntime.dll;file;678400;33206;2021-10-16T00:21:15.215212Z;;;2785144255;2;0;281474977857298;4096;1328;0;0;2021-12-16T13:35:28.075162Z;2021-11-11T11:29:33.702363Z;2021-10-16T00:21:15.199551Z +C:/Windows/SysWOW64/agentactivationruntimestarter.exe;file;10752;33206;2020-12-09T00:08:26.700040Z;;;2785144255;2;0;1407374883927000;4096;24;0;0;2021-12-16T13:35:28.195873Z;2021-11-15T13:07:17.573432Z;2020-12-09T00:08:26.700040Z +C:/Windows/SysWOW64/agentactivationruntimewindows.dll;file;647680;33206;2021-10-16T00:21:15.199551Z;;;2785144255;2;0;281474977857297;4096;1272;0;0;2021-12-16T13:35:28.211519Z;2021-11-11T11:29:33.707349Z;2021-10-16T00:21:15.177402Z +C:/Windows/SysWOW64/altspace.dll;file;163328;33206;2019-12-07T09:09:57.209610Z;;;2785144255;2;0;1125899907630080;4096;320;0;0;2021-12-16T13:35:28.225856Z;2021-11-11T11:29:34.245008Z;2019-12-07T09:09:57.022197Z +C:/Windows/SysWOW64/amcompat.tlb;file;18944;33206;2019-12-06T18:27:00Z;;;2785144255;2;0;1125899907619610;4096;40;0;0;2021-12-16T13:35:28.230123Z;2021-11-15T13:07:18.033808Z;2019-12-07T14:52:21.126178Z +C:/Windows/SysWOW64/amsi.dll;file;60416;33206;2021-01-15T09:27:09.822332Z;;;2785144255;2;0;3096224744401910;4096;120;0;0;2021-12-16T13:35:28.230465Z;2021-11-11T11:29:33.717322Z;2021-01-15T09:27:09.806744Z +C:/Windows/SysWOW64/amstream.dll;file;76800;33206;2021-01-15T09:27:38.270235Z;;;2785144255;2;0;18014398510104600;4096;152;0;0;2021-12-16T13:35:28.245111Z;2021-11-11T11:29:34.244011Z;2021-01-15T09:27:38.270235Z +C:/Windows/SysWOW64/AnalogCommonProxyStub.dll;file;17920;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907629190;4096;40;0;0;2021-12-16T13:35:28.255125Z;2021-11-11T11:29:31.719701Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/apds.dll;file;209920;33206;2021-01-15T09:27:34.678234Z;;;2785144255;2;0;15481123719708100;4096;416;0;0;2021-12-16T13:35:28.269277Z;2021-11-11T11:29:34.214092Z;2021-01-15T09:27:34.678234Z +C:/Windows/SysWOW64/APHostClient.dll;file;46080;33206;2021-01-15T09:27:50.217503Z;;;2785144255;2;0;18295873486817400;4096;96;0;0;2021-12-16T13:35:28.279289Z;2021-11-11T11:29:35.507582Z;2021-01-15T09:27:50.217503Z +C:/Windows/SysWOW64/ApiSetHost.AppExecutionAlias.dll;file;69632;33206;2020-11-03T12:45:47.464029Z;;;2785144255;2;0;3377699721501850;4096;136;0;0;2021-12-16T13:35:28.291620Z;2021-11-11T11:29:33.739265Z;2020-11-03T12:45:47.464029Z +C:/Windows/SysWOW64/AppContracts.dll;file;772144;33206;2021-11-11T11:28:59.206691Z;;;2785144255;2;0;281474977879181;4096;1512;0;0;2021-12-16T13:35:28.305955Z;2021-11-11T11:38:53.103685Z;2021-11-11T11:28:59.181756Z +C:/Windows/SysWOW64/AppExtension.dll;file;135680;33206;2021-01-15T09:27:12.933722Z;;;2785144255;2;0;2533274790986920;4096;272;0;0;2021-12-16T13:35:28.318164Z;2021-11-11T11:29:33.743254Z;2021-01-15T09:27:12.933722Z +C:/Windows/SysWOW64/apphelp.dll;file;639488;33206;2021-11-11T11:29:00.171150Z;;;2785144255;2;0;281474977879209;4096;1256;0;0;2021-12-16T13:35:28.319161Z;2021-11-11T11:38:52.277461Z;2021-11-11T11:29:00.158146Z +C:/Windows/SysWOW64/Apphlpdm.dll;file;29696;33206;2021-04-17T10:34:39.127770Z;;;2785144255;2;0;844424930951416;4096;64;0;0;2021-12-16T13:35:28.332133Z;2021-11-11T11:29:33.776165Z;2021-04-17T10:34:39.123130Z +C:/Windows/SysWOW64/appidapi.dll;file;54720;33206;2020-11-03T12:45:51.088262Z;;;2785144255;2;0;562949954396575;4096;112;0;0;2021-12-16T13:35:28.343941Z;2021-11-11T11:29:33.778160Z;2020-11-03T12:45:51.072641Z +C:/Windows/SysWOW64/AppIdPolicyEngineApi.dll;file;285696;33206;2021-01-15T09:27:42.376964Z;;;2785144255;2;0;15199648742998600;4096;560;0;0;2021-12-16T13:35:28.356841Z;2021-11-11T11:29:32.372138Z;2021-01-15T09:27:42.376964Z +C:/Windows/SysWOW64/appidtel.exe;file;20992;33206;2020-11-03T12:45:51.072641Z;;;2785144255;2;0;562949954396574;4096;48;0;0;2021-12-16T13:35:28.380816Z;2021-11-11T11:29:33.770182Z;2020-11-03T12:45:51.072641Z +C:/Windows/SysWOW64/AppInstallerPrompt.Desktop.dll;file;38400;33206;2021-01-15T09:27:18.677006Z;;;2785144255;2;0;6192449488253580;4096;80;0;0;2021-12-16T13:35:28.391850Z;2021-11-11T11:29:33.772176Z;2021-01-15T09:27:18.677006Z +C:/Windows/SysWOW64/AppLocker;directory;0;16822;2019-12-07T09:14:52.720933Z;;;2785144255;1;0;16888498602959700;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/AppLockerCSP.dll;file;272896;33206;2020-11-03T12:45:51.072641Z;;;2785144255;2;0;562949954396573;4096;536;0;0;2021-12-16T13:35:28.405875Z;2021-11-11T11:29:33.764197Z;2020-11-03T12:45:51.072641Z +C:/Windows/SysWOW64/AppManagementConfiguration.dll;file;124928;33206;2021-01-15T09:27:42.251994Z;;;2785144255;2;0;12947848929313400;4096;248;0;0;2021-12-16T13:35:28.417850Z;2021-11-11T11:29:32.347203Z;2021-01-15T09:27:42.251994Z +C:/Windows/SysWOW64/appmgmts.dll;file;160768;33206;2020-11-03T12:46:05.912986Z;;;2785144255;2;0;562949954401757;4096;320;0;0;2021-12-16T13:35:28.431805Z;2021-11-11T11:29:32.369144Z;2020-11-03T12:46:05.912986Z +C:/Windows/SysWOW64/appmgr.dll;file;366592;33206;2021-01-15T09:27:42.376964Z;;;2785144255;2;0;9288674232074850;4096;720;0;0;2021-12-16T13:35:28.454792Z;2021-11-11T11:29:32.372138Z;2021-01-15T09:27:42.376964Z +C:/Windows/SysWOW64/AppointmentActivation.dll;file;114688;33206;2021-01-15T09:27:15.671372Z;;;2785144255;2;0;28991922601816200;4096;224;0;0;2021-12-16T13:35:28.468795Z;2021-11-11T11:29:33.745249Z;2021-01-15T09:27:15.671372Z +C:/Windows/SysWOW64/AppointmentApis.dll;file;650752;33206;2021-01-15T09:27:15.577645Z;;;2785144255;2;0;32088147345627600;4096;1272;0;0;2021-12-16T13:35:28.481783Z;2021-11-11T11:29:33.751232Z;2021-01-15T09:27:15.562041Z +C:/Windows/SysWOW64/apprepapi.dll;file;10752;33206;2019-12-07T09:09:21.770852Z;;;2785144255;2;0;1125899907636880;4096;24;0;0;2021-12-16T13:35:28.492237Z;2021-11-11T11:29:33.760208Z;2019-12-07T09:09:21.770852Z +C:/Windows/SysWOW64/AppResolver.dll;file;452480;33206;2021-10-03T19:02:15.270456Z;;;2785144255;2;0;1688849861186940;4096;888;0;0;2021-12-16T13:35:28.492621Z;2021-11-11T11:29:33.765194Z;2021-10-03T19:02:15.233216Z +C:/Windows/SysWOW64/AppVClientPS.dll;file;26936;33206;2021-10-03T19:03:05.633466Z;;;2785144255;2;0;1688849861187760;4096;56;0;0;2021-12-16T13:35:28.503357Z;2021-11-11T11:29:32.343215Z;2021-10-03T19:03:05.628650Z +C:/Windows/SysWOW64/AppVEntSubsystems32.dll;file;1503032;33206;2021-10-03T19:03:05.761699Z;;;2785144255;2;0;1688849861187760;4096;2936;0;0;2021-12-16T13:35:28.554713Z;2021-11-11T11:29:32.345208Z;2021-10-03T19:03:05.643859Z +C:/Windows/SysWOW64/AppVSentinel.dll;file;13624;33206;2021-10-03T19:03:05.839064Z;;;2785144255;2;0;1688849861187760;4096;32;0;0;2021-12-16T13:35:28.564712Z;2021-11-11T11:29:32.345208Z;2021-10-03T19:03:05.834201Z +C:/Windows/SysWOW64/AppVTerminator.dll;file;18232;33206;2021-10-03T19:03:05.620010Z;;;2785144255;2;0;1688849861187760;4096;40;0;0;2021-12-16T13:35:28.574694Z;2021-11-11T11:29:32.342217Z;2021-10-03T19:03:05.615001Z +C:/Windows/SysWOW64/appwiz.cpl;file;469504;33206;2021-01-15T09:27:34.537641Z;;;2785144255;2;0;13792273859444200;4096;920;0;0;2021-12-16T13:35:28.591605Z;2021-11-11T11:29:34.206112Z;2021-01-15T09:27:34.537641Z +C:/Windows/SysWOW64/AppxAllUserStore.dll;file;295736;33206;2021-10-16T00:21:15.879491Z;;;2785144255;2;0;281474977857330;4096;584;0;0;2021-12-16T13:35:28.604694Z;2021-11-11T11:29:33.722309Z;2021-10-16T00:21:15.863872Z +C:/Windows/SysWOW64/AppxApplicabilityEngine.dll;file;190792;33206;2020-11-03T12:45:46.698554Z;;;2785144255;2;0;3377699721501800;4096;376;0;0;2021-12-16T13:35:28.617670Z;2021-11-11T11:29:33.739265Z;2020-11-03T12:45:46.698554Z +C:/Windows/SysWOW64/AppXDeploymentClient.dll;file;758176;33206;2021-10-16T00:21:16.586849Z;;;2785144255;2;0;281474977857345;4096;1488;0;0;2021-12-16T13:35:28.618146Z;2021-11-11T11:29:33.749237Z;2021-10-16T00:21:16.566551Z +C:/Windows/SysWOW64/AppxPackaging.dll;file;1632072;33206;2021-11-11T11:28:59.634545Z;;;2785144255;2;0;281474977879190;4096;3192;0;0;2021-12-16T13:35:28.637650Z;2021-11-11T11:38:50.815350Z;2021-11-11T11:28:59.606621Z +C:/Windows/SysWOW64/AppxProvisioning.xml;file;3232;33206;2019-12-07T09:09:15.129854Z;;;2785144255;2;0;1125899907637020;4096;8;0;0;2021-12-16T13:35:28.639378Z;2021-11-15T13:07:17.581454Z;2019-12-07T09:09:15.129854Z +C:/Windows/SysWOW64/AppxSip.dll;file;232448;33206;2021-01-15T09:27:16.015053Z;;;2785144255;2;0;7036874418385070;4096;456;0;0;2021-12-16T13:35:28.642241Z;2021-11-11T11:29:33.754225Z;2021-01-15T09:27:16.015053Z +C:/Windows/SysWOW64/ar-SA;directory;0;16822;2021-06-10T14:11:37.554825Z;;;2785144255;1;0;14073748835853100;4096;0;0;0;2021-12-16T13:36:01.156170Z;2021-06-10T14:11:37.554825Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/ar-SA/cdosys.dll.mui;file;47616;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;9288674232121300;4096;96;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.927041Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/ar-SA/comctl32.dll.mui;file;6144;33206;2021-06-10T14:01:41.716126Z;;;2785144255;2;0;281474977765223;4096;16;0;0;2021-06-10T14:01:41.716126Z;2021-06-10T14:11:37.554825Z;2021-06-10T14:01:41.716126Z +C:/Windows/SysWOW64/ar-SA/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619370;4096;8;0;0;2019-12-07T14:52:07.720196Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.720196Z +C:/Windows/SysWOW64/ar-SA/SyncRes.dll.mui;file;25600;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648570;4096;56;0;0;2019-12-07T14:53:37.828815Z;2020-11-03T12:35:52.435552Z;2019-12-07T14:53:37.828815Z +C:/Windows/SysWOW64/ar-SA/windows.ui.xaml.dll.mui;file;16896;33206;2021-06-10T14:01:34.428234Z;;;2785144255;4;0;281474977764497;4096;40;0;0;2021-06-10T14:01:41.684884Z;2021-06-10T14:11:37.554825Z;2021-06-10T14:01:34.428234Z +C:/Windows/SysWOW64/archiveint.dll;file;531968;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907628680;4096;1040;0;0;2021-12-16T13:35:28.657893Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/ARP.EXE;file;22528;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907628830;4096;48;0;0;2021-12-16T13:35:28.671853Z;2021-11-11T11:29:34.212096Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/asferror.dll;file;2560;33206;2019-12-07T09:10:14.695171Z;;;2785144255;2;0;1125899907618660;4096;8;0;0;2021-12-16T13:35:28.675843Z;2021-11-11T11:29:32.501708Z;2019-12-07T09:10:14.695171Z +C:/Windows/SysWOW64/aspnet_counters.dll;file;30216;33206;2019-12-07T09:10:47.461848Z;;;2785144255;2;0;1125899907623230;4096;64;0;0;2021-12-16T13:35:28.684859Z;2021-11-11T11:29:31.953553Z;2019-12-07T09:10:47.461848Z +C:/Windows/SysWOW64/AssignedAccessRuntime.dll;file;47104;33206;2021-11-11T11:28:59.177767Z;;;2785144255;2;0;562949954589780;4096;96;0;0;2021-12-16T13:35:28.696823Z;2021-11-11T11:38:53.231513Z;2021-11-11T11:28:59.175773Z +C:/Windows/SysWOW64/asycfilt.dll;file;74752;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907636030;4096;152;0;0;2021-12-16T13:35:28.709100Z;2021-11-11T11:29:33.805088Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/at.exe;file;25088;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907636550;4096;56;0;0;2021-12-16T13:35:28.718955Z;2021-11-11T11:29:33.723306Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/AtBroker.exe;file;68608;33206;2021-06-10T14:01:40.696482Z;;;2785144255;2;0;281474977765169;4096;136;0;0;2021-12-16T13:35:28.730924Z;2021-11-11T11:29:33.771179Z;2021-06-10T14:01:40.696482Z +C:/Windows/SysWOW64/atl.dll;file;81408;33206;2021-01-15T09:27:10.463080Z;;;2785144255;2;0;14918173766252800;4096;160;0;0;2021-12-16T13:35:28.731598Z;2021-11-11T11:29:33.722309Z;2021-01-15T09:27:10.447437Z +C:/Windows/SysWOW64/atl100.dll;file;138056;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244432;4096;272;0;0;2021-12-16T13:35:28.744362Z;2021-12-03T14:03:13.327983Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/atl110.dll;file;164424;33206;2013-06-09T18:53:16Z;;;2785144255;1;0;30399297485037400;4096;328;0;0;2021-12-16T13:35:28.757879Z;2021-11-08T13:18:43.159270Z;2013-06-09T18:53:16Z +C:/Windows/SysWOW64/atlthunk.dll;file;37376;33206;2020-11-03T12:45:46.511127Z;;;2785144255;2;0;3940649674923070;4096;80;0;0;2021-12-16T13:35:28.758846Z;2021-11-11T11:29:33.736273Z;2020-11-03T12:45:46.511127Z +C:/Windows/SysWOW64/atmlib.dll;file;39936;33206;2020-12-09T00:08:28.545701Z;;;2785144255;2;0;844424930505786;4096;80;0;0;2021-12-16T13:35:28.769856Z;2021-12-16T12:06:18.159713Z;2020-12-09T00:08:28.545701Z +C:/Windows/SysWOW64/attrib.exe;file;19456;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907629410;4096;40;0;0;2021-12-16T13:35:28.778944Z;2021-11-11T11:29:34.207109Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/audiodev.dll;file;242688;33206;2019-12-07T14:54:37.110226Z;;;2785144255;2;0;1125899907618500;4096;480;0;0;2021-12-16T13:35:28.794905Z;2021-11-11T11:29:32.505697Z;2019-12-07T09:10:14.710340Z +C:/Windows/SysWOW64/AudioEng.dll;file;1883688;33206;2021-10-16T00:21:15.346740Z;;;2785144255;2;0;281474977857306;4096;3680;0;0;2021-12-16T13:35:28.812412Z;2021-11-11T11:29:33.707349Z;2021-10-16T00:21:15.299869Z +C:/Windows/SysWOW64/AUDIOKSE.dll;file;374488;33206;2021-10-16T00:21:15.362391Z;;;2785144255;2;0;281474977857308;4096;736;0;0;2021-12-16T13:35:28.827801Z;2021-11-11T11:29:33.712335Z;2021-10-16T00:21:15.362391Z +C:/Windows/SysWOW64/AudioSes.dll;file;1258256;33206;2021-06-10T14:01:36.862885Z;;;2785144255;2;0;281474977764831;4096;2464;0;0;2021-12-16T13:35:28.828439Z;2021-11-11T11:29:33.706351Z;2021-06-10T14:01:36.847263Z +C:/Windows/SysWOW64/AuditNativeSnapIn.dll;file;219136;33206;2019-12-07T14:54:46.083488Z;;;2785144255;2;0;1125899907621520;4096;432;0;0;2021-12-16T13:35:28.844188Z;2021-11-11T11:29:32.373135Z;2019-12-07T09:10:23.866944Z +C:/Windows/SysWOW64/auditpol.exe;file;32768;33206;2020-11-03T12:46:01.257766Z;;;2785144255;2;0;562949954400429;4096;64;0;0;2021-12-16T13:35:28.854198Z;2021-11-11T11:29:34.212096Z;2020-11-03T12:46:01.257766Z +C:/Windows/SysWOW64/auditpolcore.dll;file;58880;33206;2020-11-03T12:46:01.257766Z;;;2785144255;2;0;562949954400430;4096;120;0;0;2021-12-16T13:35:28.865162Z;2021-11-11T11:29:34.203158Z;2020-11-03T12:46:01.257766Z +C:/Windows/SysWOW64/AuditPolicyGPInterop.dll;file;56832;33206;2021-01-15T09:27:42.376964Z;;;2785144255;2;0;10977524092338800;4096;112;0;0;2021-12-16T13:35:28.876347Z;2021-11-11T11:29:32.373135Z;2021-01-15T09:27:42.376964Z +C:/Windows/SysWOW64/auditpolmsg.dll;file;95744;33206;2019-12-07T14:54:46.098711Z;;;2785144255;2;0;1125899907621410;4096;192;0;0;2021-12-16T13:35:28.881300Z;2021-11-11T11:29:32.371140Z;2019-12-07T09:10:23.866944Z +C:/Windows/SysWOW64/AuthBroker.dll;file;163328;33206;2021-01-15T09:27:13.043108Z;;;2785144255;2;0;2533274790986930;4096;320;0;0;2021-12-16T13:35:28.894727Z;2021-11-11T11:29:33.737270Z;2021-01-15T09:27:13.043108Z +C:/Windows/SysWOW64/AuthBrokerUI.dll;file;86528;33206;2021-01-15T09:27:10.463080Z;;;2785144255;2;0;13792273859410200;4096;176;0;0;2021-12-16T13:35:28.907836Z;2021-11-11T11:29:33.724303Z;2021-01-15T09:27:10.463080Z +C:/Windows/SysWOW64/AuthenticateFAM_SecureFP.dll;file;365016;33206;2021-10-01T06:02:54Z;;;2785144255;1;0;26177172834198200;4096;720;0;0;2021-12-16T13:35:28.925360Z;2021-11-15T08:41:37.460953Z;2021-11-15T08:41:36.454112Z +C:/Windows/SysWOW64/AuthenticateFAM_SecureFP_UI.dll;file;3752408;33206;2021-10-01T06:02:50Z;;;2785144255;1;0;32932572275253800;4096;7336;0;0;2021-12-16T13:35:28.955676Z;2021-11-15T08:41:37.492196Z;2021-11-15T08:41:36.438491Z +C:/Windows/SysWOW64/AuthExt.dll;file;39424;33206;2021-01-15T09:27:21.740768Z;;;2785144255;2;0;10133099162203400;4096;80;0;0;2021-12-16T13:35:28.967837Z;2021-11-11T11:29:33.805088Z;2021-01-15T09:27:21.740768Z +C:/Windows/SysWOW64/authfwcfg.dll;file;373248;33206;2021-05-18T10:59:46.299979Z;;;2785144255;2;0;1125899907730900;4096;736;0;0;2021-12-16T13:35:28.981798Z;2021-12-16T12:06:18.211713Z;2021-05-18T10:59:46.291274Z +C:/Windows/SysWOW64/AuthFWGP.dll;file;27648;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;844424930927247;4096;56;0;0;2021-12-16T13:35:28.993246Z;2021-11-11T11:29:33.786186Z;2019-12-07T09:09:26.178036Z +C:/Windows/SysWOW64/AuthFWSnapin.dll;file;5107712;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;1125899907638050;4096;9976;0;0;2021-12-16T13:35:29.007735Z;2021-11-11T11:29:33.792123Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/AuthFWWizFwk.dll;file;112640;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;1125899907635710;4096;224;0;0;2021-12-16T13:35:29.016502Z;2021-11-11T11:29:33.794117Z;2019-12-07T09:09:26.178036Z +C:/Windows/SysWOW64/authui.dll;file;184832;33206;2021-04-17T10:34:29.887831Z;;;2785144255;2;0;844424930951359;4096;368;0;0;2021-12-16T13:35:29.030464Z;2021-11-11T11:29:33.723306Z;2021-04-17T10:34:29.870185Z +C:/Windows/SysWOW64/authz.dll;file;185856;33206;2020-11-03T12:45:51.916163Z;;;2785144255;2;0;562949954397209;4096;368;0;0;2021-12-16T13:35:29.042754Z;2021-11-11T11:29:33.774171Z;2020-11-03T12:45:51.916163Z +C:/Windows/SysWOW64/autochk.exe;file;863232;33206;2021-10-16T00:21:17.268060Z;;;2785144255;2;0;281474977857379;4096;1688;0;0;2021-12-16T13:35:29.058529Z;2021-11-11T11:29:33.769184Z;2021-10-16T00:21:17.268060Z +C:/Windows/SysWOW64/autoconv.exe;file;842752;33206;2021-10-16T00:21:27.830250Z;;;2785144255;2;0;281474977857759;4096;1648;0;0;2021-12-16T13:35:29.070377Z;2021-11-11T11:29:34.215132Z;2021-10-16T00:21:27.814668Z +C:/Windows/SysWOW64/autofmt.exe;file;822272;33206;2021-10-16T00:21:27.799008Z;;;2785144255;2;0;281474977857758;4096;1608;0;0;2021-12-16T13:35:29.084230Z;2021-11-11T11:29:34.210101Z;2021-10-16T00:21:27.783418Z +C:/Windows/SysWOW64/autoplay.dll;file;177664;33206;2020-11-03T12:46:01.335909Z;;;2785144255;2;0;562949954400441;4096;352;0;0;2021-12-16T13:35:29.101553Z;2021-11-11T11:29:34.212096Z;2020-11-03T12:46:01.320288Z +C:/Windows/SysWOW64/avicap32.dll;file;69632;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907628100;4096;136;0;0;2021-12-16T13:35:29.102022Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/avifil32.dll;file;95744;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907630030;4096;192;0;0;2021-12-16T13:35:29.113450Z;2021-11-11T11:29:34.245008Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/avrt.dll;file;27336;33206;2020-11-03T12:45:45.292633Z;;;2785144255;2;0;1125899907815900;4096;56;0;0;2021-12-16T13:35:29.113885Z;2021-11-11T11:29:33.700367Z;2020-11-03T12:45:45.292633Z +C:/Windows/SysWOW64/azman.msc;file;41587;33206;2019-12-07T09:10:04.069297Z;;;2785144255;2;0;1125899907629220;4096;88;0;0;2021-12-16T13:35:29.116573Z;2021-02-22T08:01:23.716501Z;2019-12-07T09:10:04.069297Z +C:/Windows/SysWOW64/azroles.dll;file;498688;33206;2021-01-15T09:27:34.428294Z;;;2785144255;2;0;9007199255363010;4096;976;0;0;2021-12-16T13:35:29.132114Z;2021-11-11T11:29:34.207109Z;2021-01-15T09:27:34.412705Z +C:/Windows/SysWOW64/azroleui.dll;file;323584;33206;2021-01-15T09:27:38.176505Z;;;2785144255;2;0;18014398510104600;4096;632;0;0;2021-12-16T13:35:29.149591Z;2021-11-11T11:29:34.236070Z;2021-01-15T09:27:38.176505Z +C:/Windows/SysWOW64/AzSqlExt.dll;file;25088;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907628810;4096;56;0;0;2021-12-16T13:35:29.160886Z;2021-11-11T11:29:34.207109Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/AzureSettingSyncProvider.dll;file;1296384;33206;2021-10-03T19:02:23.717945Z;;;2785144255;2;0;1688849861187290;4096;2536;0;0;2021-12-16T13:35:29.188928Z;2021-11-11T11:29:33.812069Z;2021-10-03T19:02:23.632515Z +C:/Windows/SysWOW64/BackgroundMediaPolicy.dll;file;54784;33206;2021-01-15T09:27:18.333304Z;;;2785144255;2;0;5348024558121590;4096;112;0;0;2021-12-16T13:35:29.200371Z;2021-11-11T11:29:33.777163Z;2021-01-15T09:27:18.333304Z +C:/Windows/SysWOW64/backgroundTaskHost.exe;file;17728;33206;2020-11-03T12:45:50.635243Z;;;2785144255;2;0;562949954396521;4096;40;0;0;2021-12-16T13:35:29.209167Z;2021-11-11T11:29:33.753227Z;2020-11-03T12:45:50.635243Z +C:/Windows/SysWOW64/BackgroundTransferHost.exe;file;34304;33206;2021-01-15T09:27:11.996480Z;;;2785144255;2;0;2533274790986860;4096;72;0;0;2021-12-16T13:35:29.218986Z;2021-11-11T11:29:33.753227Z;2021-01-15T09:27:11.996480Z +C:/Windows/SysWOW64/BamSettingsClient.dll;file;12288;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907636430;4096;24;0;0;2021-12-16T13:35:29.229455Z;2021-11-11T11:29:33.719317Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/basecsp.dll;file;180024;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;1125899907638840;4096;352;0;0;2021-12-16T13:35:29.244438Z;2021-11-11T11:29:33.816060Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/batmeter.dll;file;32768;33206;2019-12-07T09:09:13.552817Z;;;2785144255;2;0;1125899907637830;4096;64;0;0;2021-12-16T13:35:29.256433Z;2021-11-11T11:29:33.701365Z;2019-12-07T09:09:13.552817Z +C:/Windows/SysWOW64/bcastdvr.proxy.dll;file;130560;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907636200;4096;256;0;0;2021-12-16T13:35:29.267379Z;2021-11-11T11:29:33.742257Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/BcastDVRBroker.dll;file;81920;33206;2021-01-15T09:27:12.308901Z;;;2785144255;2;0;2533274790986890;4096;160;0;0;2021-12-16T13:35:29.279653Z;2021-11-11T11:29:33.734277Z;2021-01-15T09:27:12.308901Z +C:/Windows/SysWOW64/BcastDVRClient.dll;file;365056;33206;2021-01-15T09:27:12.308901Z;;;2785144255;2;0;2533274790986890;4096;720;0;0;2021-12-16T13:35:29.293837Z;2021-11-11T11:29:33.740262Z;2021-01-15T09:27:12.308901Z +C:/Windows/SysWOW64/BcastDVRCommon.dll;file;185856;33206;2021-01-15T09:27:12.324521Z;;;2785144255;2;0;2533274790986890;4096;368;0;0;2021-12-16T13:35:29.306803Z;2021-11-11T11:29:33.734277Z;2021-01-15T09:27:12.324521Z +C:/Windows/SysWOW64/bcd.dll;file;107376;33206;2020-11-03T12:45:45.417611Z;;;2785144255;2;0;1125899907815920;4096;216;0;0;2021-12-16T13:35:29.320805Z;2021-11-11T11:29:33.713333Z;2020-11-03T12:45:45.401983Z +C:/Windows/SysWOW64/BCP47Langs.dll;file;291320;33206;2021-10-16T00:21:16.596895Z;;;2785144255;2;0;281474977857346;4096;576;0;0;2021-12-16T13:35:29.320805Z;2021-11-11T11:29:33.749237Z;2021-10-16T00:21:16.596895Z +C:/Windows/SysWOW64/BCP47mrm.dll;file;128608;33206;2021-10-16T00:21:16.605021Z;;;2785144255;2;0;281474977857347;4096;256;0;0;2021-12-16T13:35:29.321763Z;2021-11-11T11:29:33.751232Z;2021-10-16T00:21:16.605021Z +C:/Windows/SysWOW64/bcrypt.dll;file;96032;33206;2021-06-10T14:01:40.843584Z;;;2785144255;2;0;281474977765178;4096;192;0;0;2021-12-16T13:35:29.321763Z;2021-11-11T11:29:33.770182Z;2021-06-10T14:01:40.843584Z +C:/Windows/SysWOW64/bcryptprimitives.dll;file;383264;33206;2021-11-11T11:28:55.064966Z;;;2785144255;2;0;281474977878885;4096;752;0;0;2021-12-16T13:35:29.322760Z;2021-11-11T11:38:51.311607Z;2021-11-11T11:28:55.057961Z +C:/Windows/SysWOW64/bdaplgin.ax;file;76288;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907629700;4096;152;0;0;2021-12-16T13:35:29.336763Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/bg-BG;directory;0;16822;2019-12-07T14:53:40.594677Z;;;2785144255;1;0;28710447624807200;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/bg-BG/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5910974511593490;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/bg-BG/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619410;4096;8;0;0;2019-12-07T14:52:07.720196Z;2020-11-03T12:35:33.470887Z;2019-12-07T14:52:07.720196Z +C:/Windows/SysWOW64/bg-BG/SyncRes.dll.mui;file;31744;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648660;4096;64;0;0;2019-12-07T14:53:37.828815Z;2020-11-03T12:35:52.482415Z;2019-12-07T14:53:37.828815Z +C:/Windows/SysWOW64/bg-BG/windows.ui.xaml.dll.mui;file;18432;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907639430;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:45.593318Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/bidispl.dll;file;53248;33206;2021-06-10T14:01:36.931877Z;;;2785144255;2;0;281474977764834;4096;104;0;0;2021-12-16T13:35:29.351208Z;2021-11-11T11:29:33.707349Z;2021-06-10T14:01:36.931877Z +C:/Windows/SysWOW64/BingMaps.dll;file;6920704;33206;2021-10-03T19:02:10.922218Z;;;2785144255;2;0;1688849861186910;4096;13520;0;0;2021-12-16T13:35:29.371542Z;2021-11-11T11:29:33.741259Z;2021-10-03T19:02:10.426825Z +C:/Windows/SysWOW64/BingOnlineServices.dll;file;577024;33206;2019-12-07T09:09:17.927329Z;;;2785144255;2;0;1125899907635480;4096;1128;0;0;2021-12-16T13:35:29.388524Z;2021-11-11T11:29:33.733279Z;2019-12-07T09:09:17.927329Z +C:/Windows/SysWOW64/BioCredProv.dll;file;303616;33206;2021-10-03T19:02:51.506829Z;;;2785144255;2;0;1688849861187660;4096;600;0;0;2021-12-16T13:35:29.409383Z;2021-11-11T11:29:34.213094Z;2021-10-03T19:02:51.480489Z +C:/Windows/SysWOW64/BitLockerCsp.dll;file;175104;33206;2021-10-03T19:02:17.924385Z;;;2785144255;2;0;1688849861186990;4096;344;0;0;2021-12-16T13:35:29.422113Z;2021-11-11T11:29:33.785173Z;2021-10-03T19:02:17.915526Z +C:/Windows/SysWOW64/bitsadmin.exe;file;186880;33206;2019-12-07T09:09:22.161729Z;;;2785144255;2;0;1125899907635210;4096;368;0;0;2021-12-16T13:35:29.432875Z;2021-11-11T11:29:33.766192Z;2019-12-07T09:09:22.161729Z +C:/Windows/SysWOW64/bitsperf.dll;file;26624;33206;2019-12-07T09:09:17.443137Z;;;2785144255;2;0;1125899907635850;4096;56;0;0;2021-12-16T13:35:29.443847Z;2021-11-11T11:29:33.762202Z;2019-12-07T09:09:17.443137Z +C:/Windows/SysWOW64/BitsProxy.dll;file;49664;33206;2019-12-07T09:09:17.443137Z;;;2785144255;2;0;1125899907635610;4096;104;0;0;2021-12-16T13:35:29.444844Z;2021-11-11T11:29:33.774171Z;2019-12-07T09:09:17.443137Z +C:/Windows/SysWOW64/biwinrt.dll;file;271168;33206;2021-10-16T00:21:16.898260Z;;;2785144255;2;0;281474977857359;4096;536;0;0;2021-12-16T13:35:29.459805Z;2021-11-11T11:29:33.754225Z;2021-10-16T00:21:16.882606Z +C:/Windows/SysWOW64/BluetoothApis.dll;file;143872;33206;2020-11-03T12:45:50.838320Z;;;2785144255;2;0;562949954396539;4096;288;0;0;2021-12-16T13:35:29.475219Z;2021-11-11T11:29:33.771179Z;2020-11-03T12:45:50.838320Z +C:/Windows/SysWOW64/boot.sdi;file;3170304;33206;2019-12-07T09:09:15.083106Z;;;2785144255;2;0;8444249301750210;4096;6192;0;0;2021-12-16T13:35:29.502146Z;2021-02-22T08:01:25.184608Z;2019-12-07T09:09:15.083106Z +C:/Windows/SysWOW64/bootcfg.exe;file;82432;33206;2019-12-07T09:09:11.911069Z;;;2785144255;2;0;1125899907635970;4096;168;0;0;2021-12-16T13:35:29.512120Z;2021-11-11T11:29:33.702363Z;2019-12-07T09:09:11.911069Z +C:/Windows/SysWOW64/BOOTVID.DLL;file;23864;33206;2019-12-07T09:09:25.333427Z;;;2785144255;2;0;1125899907638740;4096;48;0;0;2021-12-16T13:35:29.519101Z;2021-11-11T11:29:33.762202Z;2019-12-07T09:09:25.333427Z +C:/Windows/SysWOW64/bopomofo.uce;file;22984;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907628140;4096;48;0;0;2021-12-16T13:35:29.521096Z;2020-11-03T12:35:38.500956Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/browcli.dll;file;43520;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;4503599627802110;4096;88;0;0;2021-12-16T13:35:29.535057Z;2021-11-11T11:29:33.710341Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/BrowserSettingSync.dll;file;114176;33206;2021-01-15T09:27:09.541148Z;;;2785144255;2;0;3659174697821520;4096;224;0;0;2021-12-16T13:35:29.549020Z;2021-11-11T11:29:33.712335Z;2021-01-15T09:27:09.541148Z +C:/Windows/SysWOW64/browseui.dll;file;11776;33206;2019-12-07T09:09:32.418634Z;;;2785144255;2;0;1125899907636600;4096;24;0;0;2021-12-16T13:35:29.560548Z;2021-11-11T11:29:33.811072Z;2019-12-07T09:09:32.418634Z +C:/Windows/SysWOW64/BTAGService.dll;file;733696;33206;2021-01-15T09:27:09.016514Z;;;2785144255;2;0;3940649674530910;4096;1440;0;0;2021-12-16T13:35:29.576504Z;2021-11-11T11:29:33.712335Z;2021-01-15T09:27:09.014481Z +C:/Windows/SysWOW64/Bthprops;directory;0;16822;2019-12-07T09:15:00.721138Z;;;2785144255;1;0;11821949022167900;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/Bthprops/@BthpropsNotificationLogo.png;file;103;33206;2019-12-07T09:09:22.161729Z;;;2785144255;2;0;1125899907635010;4096;0;0;0;2020-12-08T23:56:39.105628Z;2020-12-08T23:56:39.105628Z;2019-12-07T09:09:22.161729Z +C:/Windows/SysWOW64/bthprops.cpl;file;221184;33206;2020-11-03T12:45:51.088262Z;;;2785144255;2;0;562949954396579;4096;432;0;0;2021-12-16T13:35:29.594456Z;2021-11-11T11:29:33.767189Z;2020-11-03T12:45:51.088262Z +C:/Windows/SysWOW64/BthTelemetry.dll;file;25088;33206;2019-12-07T09:09:21.286488Z;;;2785144255;2;0;1125899907635470;4096;56;0;0;2021-12-16T13:35:29.605429Z;2021-11-11T11:29:33.763200Z;2019-12-07T09:09:21.286488Z +C:/Windows/SysWOW64/bthudtask.exe;file;38400;33206;2019-12-07T09:09:22.161729Z;;;2785144255;2;0;1125899907636870;4096;80;0;0;2021-12-16T13:35:29.619391Z;2021-11-11T11:29:33.779158Z;2019-12-07T09:09:22.161729Z +C:/Windows/SysWOW64/btpanui.dll;file;114176;33206;2021-01-15T09:27:18.848848Z;;;2785144255;2;0;4785074604700320;4096;224;0;0;2021-12-16T13:35:29.637342Z;2021-11-11T11:29:33.780155Z;2021-01-15T09:27:18.848848Z +C:/Windows/SysWOW64/BWContextHandler.dll;file;53760;33206;2021-01-15T09:27:34.584507Z;;;2785144255;2;0;16888498603261400;4096;112;0;0;2021-12-16T13:35:29.650332Z;2021-11-11T11:29:34.213094Z;2021-01-15T09:27:34.584507Z +C:/Windows/SysWOW64/ByteCodeGenerator.exe;file;68608;33206;2021-07-07T12:58:44.608109Z;;;2785144255;2;0;281474977790749;4096;136;0;0;2021-12-16T13:35:29.664270Z;2021-11-11T11:29:33.752230Z;2021-07-07T12:58:44.592448Z +C:/Windows/SysWOW64/cabapi.dll;file;76800;33206;2019-12-07T09:09:25.333427Z;;;2785144255;2;0;1125899907637110;4096;152;0;0;2021-12-16T13:35:29.729096Z;2021-11-11T11:29:33.773174Z;2019-12-07T09:09:25.333427Z +C:/Windows/SysWOW64/cabinet.dll;file;119296;33206;2020-11-03T12:45:51.697495Z;;;2785144255;2;0;562949954397169;4096;240;0;0;2021-12-16T13:35:29.730095Z;2021-11-11T11:29:33.774171Z;2020-11-03T12:45:51.697495Z +C:/Windows/SysWOW64/cabview.dll;file;151552;33206;2019-12-07T09:09:22.239161Z;;;2785144255;2;0;1407374884348420;4096;296;0;0;2021-12-16T13:35:29.749044Z;2021-11-11T11:29:33.774171Z;2019-12-07T09:09:22.239161Z +C:/Windows/SysWOW64/cacls.exe;file;27648;33206;2019-12-07T09:10:05.459918Z;;;2785144255;2;0;1125899907630130;4096;56;0;0;2021-12-16T13:35:29.762008Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:10:05.459918Z +C:/Windows/SysWOW64/calc.exe;file;26112;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907628470;4096;56;0;0;2021-12-16T13:35:29.778965Z;2021-11-11T11:29:34.234037Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/CallButtons.dll;file;66560;33206;2021-01-15T09:27:09.141488Z;;;2785144255;2;0;3659174697820260;4096;136;0;0;2021-12-16T13:35:29.791929Z;2021-11-11T11:29:33.707349Z;2021-01-15T09:27:09.141488Z +C:/Windows/SysWOW64/CallButtons.ProxyStub.dll;file;17920;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907635610;4096;40;0;0;2021-12-16T13:35:29.804933Z;2021-11-11T11:29:33.706351Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/CallHistoryClient.dll;file;143872;33206;2021-01-15T09:27:15.499508Z;;;2785144255;2;0;16325548649829700;4096;288;0;0;2021-12-16T13:35:29.817885Z;2021-11-11T11:29:33.754225Z;2021-01-15T09:27:15.499508Z +C:/Windows/SysWOW64/CameraCaptureUI.dll;file;94208;33206;2021-01-15T09:27:13.371154Z;;;2785144255;2;0;30117822508631300;4096;184;0;0;2021-12-16T13:35:29.831823Z;2021-11-11T11:29:33.741259Z;2021-01-15T09:27:13.371154Z +C:/Windows/SysWOW64/CameraSettingsUIHost.exe;file;28344;33206;2021-01-15T09:27:48.661891Z;;;2785144255;2;0;12947848929314100;4096;56;0;0;2021-12-16T13:35:29.844787Z;2021-11-11T11:29:32.518663Z;2021-01-15T09:27:48.661891Z +C:/Windows/SysWOW64/CapabilityAccessManagerClient.dll;file;165376;33206;2021-01-15T09:27:16.764833Z;;;2785144255;2;0;14073748836151500;4096;328;0;0;2021-12-16T13:35:29.857753Z;2021-11-11T11:29:33.750234Z;2021-01-15T09:27:16.749214Z +C:/Windows/SysWOW64/capauthz.dll;file;252616;33206;2020-11-03T12:45:50.400928Z;;;2785144255;2;0;562949954396492;4096;496;0;0;2021-12-16T13:35:29.871905Z;2021-11-11T11:29:33.756219Z;2020-11-03T12:45:50.385273Z +C:/Windows/SysWOW64/capiprovider.dll;file;53248;33206;2021-04-17T10:35:10.104389Z;;;2785144255;2;0;844424930951804;4096;104;0;0;2021-12-16T13:35:29.883874Z;2021-11-11T11:29:34.201157Z;2021-04-17T10:35:10.094803Z +C:/Windows/SysWOW64/capisp.dll;file;20992;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;1125899907635500;4096;48;0;0;2021-12-16T13:35:29.894813Z;2021-11-11T11:29:33.785173Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/CastingShellExt.dll;file;87552;33206;2021-01-15T09:27:48.536920Z;;;2785144255;2;0;21955048184055100;4096;176;0;0;2021-12-16T13:35:29.910771Z;2021-11-11T11:29:32.507692Z;2021-01-15T09:27:48.536920Z +C:/Windows/SysWOW64/catroot;directory;0;16822;2019-12-07T09:31:04.461571Z;;;2785144255;1;0;22799473113883500;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/catroot/{F750E6C3-38EE-11D1-85E5-00C04FC295EE};directory;0;16822;2019-12-07T09:14:52.720933Z;;;2785144255;1;0;10696049115325300;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/catsrv.dll;file;383488;33206;2021-01-15T09:27:18.958155Z;;;2785144255;2;0;5066549581410990;4096;752;0;0;2021-12-16T13:35:29.925730Z;2021-11-11T11:29:33.766192Z;2021-01-15T09:27:18.942533Z +C:/Windows/SysWOW64/catsrvps.dll;file;23552;33206;2019-12-07T09:09:22.208345Z;;;2785144255;2;0;1407374884348600;4096;48;0;0;2021-12-16T13:35:29.937698Z;2021-11-11T11:29:33.764197Z;2019-12-07T09:09:22.208345Z +C:/Windows/SysWOW64/catsrvut.dll;file;407040;33206;2021-01-15T09:27:18.989435Z;;;2785144255;2;0;4785074604700330;4096;800;0;0;2021-12-16T13:35:29.953655Z;2021-11-11T11:29:33.779158Z;2021-01-15T09:27:18.989435Z +C:/Windows/SysWOW64/cca.dll;file;70656;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907629130;4096;144;0;0;2021-12-16T13:35:29.968138Z;2021-11-11T11:29:34.253035Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/cdosys.dll;file;832512;33206;2021-01-15T09:27:37.832838Z;;;2785144255;2;0;16607023626551300;4096;1632;0;0;2021-12-16T13:35:29.985085Z;2021-11-11T11:29:34.227087Z;2021-01-15T09:27:37.817221Z +C:/Windows/SysWOW64/cdp.dll;file;4273152;33206;2021-10-03T19:03:35.296933Z;;;2785144255;2;0;1688849861188430;4096;8352;0;0;2021-12-16T13:35:30.009022Z;2021-11-11T11:29:33.744251Z;2021-10-03T19:03:34.951250Z +C:/Windows/SysWOW64/cdprt.dll;file;1375232;33206;2021-02-11T15:05:12.798920Z;;;2785144255;2;0;562949954318886;4096;2688;0;0;2021-12-16T13:35:30.029964Z;2021-11-11T11:29:33.734277Z;2021-02-11T15:05:12.767676Z +C:/Windows/SysWOW64/cemapi.dll;file;202752;33206;2021-01-15T09:27:15.515153Z;;;2785144255;2;0;9007199255352670;4096;400;0;0;2021-12-16T13:35:30.043929Z;2021-11-11T11:29:33.756219Z;2021-01-15T09:27:15.499508Z +C:/Windows/SysWOW64/cero.rs;file;34816;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907639160;4096;72;0;0;2021-12-16T13:35:30.047918Z;2021-11-11T11:29:33.706351Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/certca.dll;file;654336;33206;2020-11-03T12:45:50.400928Z;;;2785144255;2;0;562949954396493;4096;1280;0;0;2021-12-16T13:35:30.062876Z;2021-11-11T11:29:33.768187Z;2020-11-03T12:45:50.400928Z +C:/Windows/SysWOW64/certcli.dll;file;355328;33206;2021-10-03T19:02:13.733987Z;;;2785144255;2;0;1688849861186920;4096;696;0;0;2021-12-16T13:35:30.081335Z;2021-11-11T11:29:33.770182Z;2021-10-03T19:02:13.708401Z +C:/Windows/SysWOW64/certCredProvider.dll;file;37376;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;1125899907635850;4096;80;0;0;2021-12-16T13:35:30.092305Z;2021-11-11T11:29:33.797110Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/certenc.dll;file;54272;33206;2021-01-15T09:27:38.207748Z;;;2785144255;2;0;19703248370368500;4096;112;0;0;2021-12-16T13:35:30.102278Z;2021-11-11T11:29:34.235034Z;2021-01-15T09:27:38.207748Z +C:/Windows/SysWOW64/CertEnroll.dll;file;2832384;33206;2021-01-15T09:27:16.639901Z;;;2785144255;2;0;11540474045755600;4096;5536;0;0;2021-12-16T13:35:30.124220Z;2021-11-11T11:29:33.806085Z;2021-01-15T09:27:16.592999Z +C:/Windows/SysWOW64/CertEnrollCtrl.exe;file;51200;33206;2020-11-03T12:45:50.463409Z;;;2785144255;2;0;562949954396498;4096;104;0;0;2021-12-16T13:35:30.136189Z;2021-11-11T11:29:33.818055Z;2020-11-03T12:45:50.463409Z +C:/Windows/SysWOW64/CertEnrollUI.dll;file;295936;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907630800;4096;584;0;0;2021-12-16T13:35:30.153143Z;2021-11-11T11:29:34.239061Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/certlm.msc;file;63081;33206;2019-12-07T09:10:04.089589Z;;;2785144255;2;0;1125899907628030;4096;128;0;0;2021-12-16T13:35:30.158129Z;2021-02-22T08:01:23.727032Z;2019-12-07T09:10:04.089589Z +C:/Windows/SysWOW64/certmgr.dll;file;1958400;33206;2021-01-15T09:27:38.192128Z;;;2785144255;2;0;22517998137475100;4096;3832;0;0;2021-12-16T13:35:30.188050Z;2021-11-11T11:29:34.238065Z;2021-01-15T09:27:38.176505Z +C:/Windows/SysWOW64/certmgr.msc;file;63070;33206;2019-12-07T09:10:04.089589Z;;;2785144255;2;0;1125899907628170;4096;128;0;0;2021-12-16T13:35:30.192039Z;2021-02-22T08:01:23.730661Z;2019-12-07T09:10:04.089589Z +C:/Windows/SysWOW64/CertPKICmdlet.dll;file;55296;33206;2021-02-11T15:05:25.620099Z;;;2785144255;2;0;562949954319508;4096;112;0;0;2021-12-16T13:35:30.205004Z;2021-11-11T11:29:34.235034Z;2021-02-11T15:05:25.620099Z +C:/Windows/SysWOW64/CertPolEng.dll;file;137216;33206;2020-11-11T20:25:29.809289Z;;;2785144255;2;0;844424931073656;4096;272;0;0;2021-12-16T13:35:30.219964Z;2021-11-11T11:29:33.764197Z;2020-11-11T20:25:29.803102Z +C:/Windows/SysWOW64/certreq.exe;file;439296;33206;2019-12-07T09:10:04.089589Z;;;2785144255;2;0;1125899907630490;4096;864;0;0;2021-12-16T13:35:30.270829Z;2021-11-11T11:29:34.237030Z;2019-12-07T09:10:04.089589Z +C:/Windows/SysWOW64/certutil.exe;file;1277440;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907628210;4096;2496;0;0;2021-12-16T13:35:30.309724Z;2021-11-11T11:29:34.239061Z;2019-12-07T09:10:04.089589Z +C:/Windows/SysWOW64/cewmdm.dll;file;235008;33206;2021-01-15T09:27:48.536920Z;;;2785144255;2;0;24206847997740300;4096;464;0;0;2021-12-16T13:35:30.324722Z;2021-11-11T11:29:32.504700Z;2021-01-15T09:27:48.536920Z +C:/Windows/SysWOW64/cfgbkend.dll;file;63488;33206;2021-01-15T09:27:10.228772Z;;;2785144255;2;0;27303072741521100;4096;128;0;0;2021-12-16T13:35:30.336683Z;2021-11-11T11:29:34.248997Z;2021-01-15T09:27:10.213118Z +C:/Windows/SysWOW64/cfgmgr32.dll;file;236536;33206;2021-10-03T19:02:17.194429Z;;;2785144255;2;0;1688849861186970;4096;464;0;0;2021-12-16T13:35:30.336683Z;2021-11-11T11:29:33.779158Z;2021-10-03T19:02:17.182054Z +C:/Windows/SysWOW64/cfmifs.dll;file;34616;33206;2021-01-15T09:27:34.381430Z;;;2785144255;2;0;12947848929312200;4096;72;0;0;2021-12-16T13:35:30.348648Z;2021-11-11T11:29:34.199161Z;2021-01-15T09:27:34.381430Z +C:/Windows/SysWOW64/cfmifsproxy.dll;file;11264;33206;2019-12-07T09:09:57.426957Z;;;2785144255;2;0;1125899907630470;4096;24;0;0;2021-12-16T13:35:30.359620Z;2021-11-11T11:29:34.199161Z;2019-12-07T09:09:57.426957Z +C:/Windows/SysWOW64/Chakra.dll;file;5827584;33206;2021-11-11T11:29:09.544263Z;;;2785144255;2;0;281474977879579;4096;11384;0;0;2021-12-16T13:35:30.367570Z;2021-11-11T11:38:50.543626Z;2021-11-11T11:29:09.372722Z +C:/Windows/SysWOW64/Chakradiag.dll;file;121344;33206;2021-11-11T11:29:09.585186Z;;;2785144255;2;0;281474977879581;4096;240;0;0;2021-12-16T13:35:30.379539Z;2021-11-11T11:38:50.341327Z;2021-11-11T11:29:09.583161Z +C:/Windows/SysWOW64/Chakrathunk.dll;file;105472;33206;2021-11-11T11:29:09.579211Z;;;2785144255;2;0;281474977879580;4096;208;0;0;2021-12-16T13:35:30.393500Z;2021-11-11T11:38:51.768332Z;2021-11-11T11:29:09.577219Z +C:/Windows/SysWOW64/charmap.exe;file;173056;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907628990;4096;344;0;0;2021-12-16T13:35:30.433394Z;2021-11-11T11:29:34.237030Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/chartv.dll;file;105472;33206;2019-12-07T09:09:21.756153Z;;;2785144255;2;0;1125899907637410;4096;208;0;0;2021-12-16T13:35:30.445361Z;2021-11-11T11:29:33.759211Z;2019-12-07T09:09:21.756153Z +C:/Windows/SysWOW64/ChatApis.dll;file;560640;33206;2021-01-15T09:27:15.624520Z;;;2785144255;2;0;1407374884166470;4096;1096;0;0;2021-12-16T13:35:30.459324Z;2021-11-11T11:29:33.749237Z;2021-01-15T09:27:15.624520Z +C:/Windows/SysWOW64/chcp.com;file;12800;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907627900;4096;32;0;0;2021-12-16T13:35:30.468300Z;2020-11-03T12:35:38.375987Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/CheckNetIsolation.exe;file;26112;33206;2021-05-18T10:59:46.313504Z;;;2785144255;2;0;1125899907730910;4096;56;0;0;2021-12-16T13:35:30.477276Z;2021-12-16T12:06:18.211713Z;2021-05-18T10:59:46.310818Z +C:/Windows/SysWOW64/chkdsk.exe;file;23040;33206;2019-12-07T09:09:22.177248Z;;;2785144255;2;0;1125899907629400;4096;48;0;0;2021-12-16T13:35:30.488249Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:09:22.177248Z +C:/Windows/SysWOW64/chkntfs.exe;file;19968;33206;2019-12-07T09:09:22.177248Z;;;2785144255;2;0;1125899907638800;4096;40;0;0;2021-12-16T13:35:30.500215Z;2021-11-11T11:29:33.765194Z;2019-12-07T09:09:22.177248Z +C:/Windows/SysWOW64/choice.exe;file;28160;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907629150;4096;56;0;0;2021-12-16T13:35:30.511186Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/chs_singlechar_pinyin.dat;file;167640;33206;2019-12-07T09:09:18.020777Z;;;2785144255;2;0;1125899907635120;4096;328;0;0;2021-12-16T13:35:30.514178Z;2021-10-01T05:32:27.313942Z;2019-12-07T09:09:18.020777Z +C:/Windows/SysWOW64/CHxReadingStringIME.dll;file;10752;33206;2019-12-07T09:09:13.667398Z;;;2785144255;2;0;1125899907636440;4096;24;0;0;2021-12-16T13:35:30.526146Z;2021-11-11T11:29:33.720314Z;2019-12-07T09:09:13.667398Z +C:/Windows/SysWOW64/cic.dll;file;162304;33206;2021-01-15T09:27:37.973428Z;;;2785144255;2;0;13510798882734100;4096;320;0;0;2021-12-16T13:35:30.539112Z;2021-11-11T11:29:34.221108Z;2021-01-15T09:27:37.957808Z +C:/Windows/SysWOW64/cipher.exe;file;39936;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;1125899907637720;4096;80;0;0;2021-12-16T13:35:30.553074Z;2021-11-11T11:29:33.782192Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/CIWmi.dll;file;32256;33206;2020-12-09T00:08:37.610821Z;;;2785144255;2;0;844424930506538;4096;64;0;0;2021-12-16T13:35:30.564044Z;2021-11-11T11:29:32.367150Z;2020-12-09T00:08:37.610821Z +C:/Windows/SysWOW64/clb.dll;file;14848;33206;2019-12-07T09:10:04.069297Z;;;2785144255;2;0;1125899907629050;4096;32;0;0;2021-12-16T13:35:30.575015Z;2021-11-11T11:29:34.234037Z;2019-12-07T09:10:04.069297Z +C:/Windows/SysWOW64/clbcatq.dll;file;504552;33206;2020-11-03T12:45:51.181994Z;;;2785144255;3;0;1125899907817900;4096;992;0;0;2021-12-16T13:35:30.576012Z;2021-11-11T11:29:33.760208Z;2020-11-03T12:45:51.181994Z +C:/Windows/SysWOW64/cldapi.dll;file;102912;33206;2021-10-16T00:21:17.252436Z;;;2785144255;2;0;281474977857378;4096;208;0;0;2021-12-16T13:35:30.586984Z;2021-11-11T11:29:33.766192Z;2021-10-16T00:21:17.252436Z +C:/Windows/SysWOW64/cleanmgr.exe;file;273920;33206;2021-10-16T00:21:27.783418Z;;;2785144255;2;0;281474977857757;4096;536;0;0;2021-12-16T13:35:30.605933Z;2021-11-11T11:29:34.207109Z;2021-10-16T00:21:27.783418Z +C:/Windows/SysWOW64/clfsw32.dll;file;66560;33206;2020-11-03T12:45:51.088262Z;;;2785144255;2;0;562949954396578;4096;136;0;0;2021-12-16T13:35:30.621890Z;2021-11-11T11:29:33.769184Z;2020-11-03T12:45:51.088262Z +C:/Windows/SysWOW64/cliconfg.dll;file;78336;33206;2019-12-07T09:10:02.162312Z;;;2785144255;2;0;1125899907629240;4096;160;0;0;2021-12-16T13:35:30.635706Z;2021-11-11T11:29:34.220113Z;2019-12-07T09:10:02.162312Z +C:/Windows/SysWOW64/cliconfg.exe;file;28672;33206;2019-12-07T09:10:02.162312Z;;;2785144255;2;0;1125899907628050;4096;56;0;0;2021-12-16T13:35:30.663654Z;2021-11-11T11:29:34.227087Z;2019-12-07T09:10:02.162312Z +C:/Windows/SysWOW64/cliconfg.rll;file;37376;33206;2019-12-07T09:10:02.162312Z;;;2785144255;2;0;1125899907630730;4096;80;0;0;2021-12-16T13:35:30.675600Z;2021-11-11T11:29:34.232043Z;2019-12-07T09:10:02.162312Z +C:/Windows/SysWOW64/clip.exe;file;24576;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907630590;4096;48;0;0;2021-12-16T13:35:30.685599Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/ClipboardServer.dll;file;171520;33206;2021-01-15T09:27:12.933722Z;;;2785144255;2;0;2533274790986920;4096;336;0;0;2021-12-16T13:35:30.698395Z;2021-11-11T11:29:33.732282Z;2021-01-15T09:27:12.933722Z +C:/Windows/SysWOW64/Clipc.dll;file;141008;33206;2020-11-03T12:45:50.510273Z;;;2785144255;2;0;562949954396505;4096;280;0;0;2021-12-16T13:35:30.710119Z;2021-11-11T11:29:33.756219Z;2020-11-03T12:45:50.510273Z +C:/Windows/SysWOW64/CloudExperienceHostCommon.dll;file;1055048;33206;2021-11-11T11:28:59.264536Z;;;2785144255;2;0;281474977879184;4096;2064;0;0;2021-12-16T13:35:30.725840Z;2021-11-11T11:38:52.071896Z;2021-11-11T11:28:59.241598Z +C:/Windows/SysWOW64/CloudExperienceHostUser.dll;file;203064;33206;2021-01-15T09:27:13.417982Z;;;2785144255;2;0;23362423067575500;4096;400;0;0;2021-12-16T13:35:30.741832Z;2021-11-11T11:29:33.736273Z;2021-01-15T09:27:13.402396Z +C:/Windows/SysWOW64/CloudNotifications.exe;file;49024;33206;2021-01-15T09:27:09.541148Z;;;2785144255;2;0;5629499534796850;4096;96;0;0;2021-12-16T13:35:30.754797Z;2021-11-11T11:29:33.711338Z;2021-01-15T09:27:09.541148Z +C:/Windows/SysWOW64/clrhost.dll;file;13312;33206;2019-12-07T09:10:05.616064Z;;;2785144255;2;0;1125899907626110;4096;32;0;0;2021-12-16T13:35:30.764736Z;2021-11-11T11:29:32.057501Z;2019-12-07T09:10:05.616064Z +C:/Windows/SysWOW64/clusapi.dll;file;821760;33206;2021-11-11T11:29:08.049525Z;;;2785144255;2;0;281474977879568;4096;1608;0;0;2021-12-16T13:35:30.783602Z;2021-11-11T11:38:50.553790Z;2021-11-11T11:29:08.035519Z +C:/Windows/SysWOW64/cmcfg32.dll;file;31744;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907638540;4096;64;0;0;2021-12-16T13:35:30.794677Z;2021-11-11T11:29:33.807083Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/cmd.exe;file;236544;33206;2021-01-15T09:27:18.286438Z;;;2785144255;2;0;10414574138913400;4096;464;0;0;2021-12-16T13:35:30.797091Z;2021-11-11T11:44:48.275424Z;2021-01-15T09:27:18.286438Z +C:/Windows/SysWOW64/cmdext.dll;file;20480;33206;2019-12-07T09:09:22.146381Z;;;2785144255;2;0;1125899907636650;4096;40;0;0;2021-12-16T13:35:30.807096Z;2021-11-11T11:29:33.760208Z;2019-12-07T09:09:22.146381Z +C:/Windows/SysWOW64/cmdial32.dll;file;491008;33206;2021-10-16T00:21:19.164935Z;;;2785144255;2;0;281474977857652;4096;960;0;0;2021-12-16T13:35:30.834879Z;2021-11-11T11:29:33.808081Z;2021-10-16T00:21:19.164935Z +C:/Windows/SysWOW64/cmdkey.exe;file;17408;33206;2019-12-07T09:09:32.401382Z;;;2785144255;2;0;1125899907637140;4096;40;0;0;2021-12-16T13:35:30.844775Z;2021-11-11T11:29:33.812069Z;2019-12-07T09:09:32.401382Z +C:/Windows/SysWOW64/cmdl32.exe;file;46592;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907639140;4096;96;0;0;2021-12-16T13:35:30.870708Z;2021-11-11T11:29:33.814066Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/cmgrcspps.dll;file;30208;33206;2019-12-07T09:09:26.099971Z;;;2785144255;2;0;1125899907635920;4096;64;0;0;2021-12-16T13:35:30.880215Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:26.099971Z +C:/Windows/SysWOW64/cmifw.dll;file;86344;33206;2021-05-18T10:59:06.923822Z;;;2785144255;2;0;2251799814572420;4096;176;0;0;2021-12-16T13:35:30.893101Z;2021-11-11T11:29:33.706351Z;2021-05-18T10:59:06.919338Z +C:/Windows/SysWOW64/cmintegrator.dll;file;30208;33206;2021-10-03T19:02:13.100346Z;;;2785144255;2;0;1688849861186920;4096;64;0;0;2021-12-16T13:35:30.902980Z;2021-11-11T11:29:33.752230Z;2021-10-03T19:02:13.096814Z +C:/Windows/SysWOW64/cmlua.dll;file;35328;33206;2019-12-07T09:09:32.318134Z;;;2785144255;2;0;1125899907636220;4096;72;0;0;2021-12-16T13:35:30.914065Z;2021-11-11T11:29:33.814066Z;2019-12-07T09:09:32.318134Z +C:/Windows/SysWOW64/cmmon32.exe;file;36352;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907635190;4096;72;0;0;2021-12-16T13:35:30.939465Z;2021-11-11T11:29:33.816060Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/cmpbk32.dll;file;23552;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907635080;4096;48;0;0;2021-12-16T13:35:30.949905Z;2021-11-11T11:29:33.805088Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/cmstp.exe;file;81920;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907638930;4096;160;0;0;2021-12-16T13:35:31.002482Z;2021-11-11T11:29:33.807083Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/cmstplua.dll;file;16896;33206;2019-12-07T09:09:32.318134Z;;;2785144255;2;0;1125899907637530;4096;40;0;0;2021-12-16T13:35:31.013703Z;2021-11-11T11:29:33.808081Z;2019-12-07T09:09:32.318134Z +C:/Windows/SysWOW64/cmutil.dll;file;45568;33206;2019-12-07T09:09:32.318134Z;;;2785144255;2;0;1125899907639240;4096;96;0;0;2021-12-16T13:35:31.025496Z;2021-11-11T11:29:33.814066Z;2019-12-07T09:09:32.318134Z +C:/Windows/SysWOW64/cngcredui.dll;file;104448;33206;2019-12-07T09:09:32.401382Z;;;2785144255;2;0;1125899907635790;4096;208;0;0;2021-12-16T13:35:31.036492Z;2021-11-11T11:29:33.805088Z;2019-12-07T09:09:32.401382Z +C:/Windows/SysWOW64/cngprovider.dll;file;55808;33206;2021-04-17T10:35:15.130435Z;;;2785144255;2;0;844424930952031;4096;112;0;0;2021-12-16T13:35:31.049069Z;2021-11-11T11:29:34.215132Z;2021-04-17T10:35:15.123362Z +C:/Windows/SysWOW64/cnvfat.dll;file;34304;33206;2021-06-10T14:01:48.129817Z;;;2785144255;2;0;281474977765599;4096;72;0;0;2021-12-16T13:35:31.059863Z;2021-11-15T13:07:17.583471Z;2021-06-10T14:01:48.129817Z +C:/Windows/SysWOW64/cob-au.rs;file;30720;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907637990;4096;64;0;0;2021-12-16T13:35:31.062773Z;2021-11-11T11:29:33.700367Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/colbact.dll;file;67584;33206;2020-11-03T12:45:51.197613Z;;;2785144255;2;0;1125899907817900;4096;136;0;0;2021-12-16T13:35:31.074525Z;2021-11-11T11:29:33.760208Z;2020-11-03T12:45:51.197613Z +C:/Windows/SysWOW64/coloradapterclient.dll;file;45904;33206;2020-11-03T12:45:48.479424Z;;;2785144255;2;0;562949954395868;4096;96;0;0;2021-12-16T13:35:31.074944Z;2021-11-11T11:29:33.794117Z;2020-11-03T12:45:48.479424Z +C:/Windows/SysWOW64/COLORCNV.DLL;file;176632;33206;2021-07-16T09:18:12.190163Z;;;2785144255;2;0;281474977817302;4096;352;0;0;2021-12-16T13:35:31.086940Z;2021-11-11T11:29:32.480839Z;2021-07-16T09:18:12.190163Z +C:/Windows/SysWOW64/colorcpl.exe;file;86528;33206;2019-12-07T09:09:27.583510Z;;;2785144255;2;0;1125899907637040;4096;176;0;0;2021-12-16T13:35:31.100647Z;2021-11-11T11:29:33.793120Z;2019-12-07T09:09:27.583510Z +C:/Windows/SysWOW64/colorui.dll;file;71168;33206;2021-01-15T09:27:20.631656Z;;;2785144255;2;0;9570149208781960;4096;144;0;0;2021-12-16T13:35:31.112996Z;2021-11-11T11:29:33.791164Z;2021-01-15T09:27:20.631656Z +C:/Windows/SysWOW64/Com;directory;0;16822;2021-01-15T09:30:17.929957Z;;;2785144255;1;0;9570149208482650;4096;8;0;0;2021-12-16T13:36:01.156170Z;2021-01-15T09:30:17.929957Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/Com/comadmin.dll;file;211968;33206;2021-01-15T09:27:18.942533Z;;;2785144255;2;0;5629499534832300;4096;416;0;0;2021-01-15T09:30:27.753293Z;2021-11-11T11:29:33.769184Z;2021-01-15T09:27:18.942533Z +C:/Windows/SysWOW64/Com/comempty.dat;file;61440;33206;2019-12-07T09:09:22.208345Z;;;2785144255;2;0;1125899907639300;4096;120;0;0;2019-12-07T09:09:22.208345Z;2020-11-03T12:35:45.515205Z;2019-12-07T09:09:22.208345Z +C:/Windows/SysWOW64/Com/comrepl.exe;file;14848;33206;2019-12-07T09:09:22.208345Z;;;2785144255;2;0;1125899907635340;4096;32;0;0;2020-11-03T12:35:43.046994Z;2021-11-11T11:29:33.778160Z;2019-12-07T09:09:22.208345Z +C:/Windows/SysWOW64/Com/de-DE;directory;0;16822;2019-12-07T14:51:16.610878Z;;;2785144255;1;0;18577348463223600;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.610878Z +C:/Windows/SysWOW64/Com/de-DE/comrepl.exe.mui;file;2560;33206;2019-12-07T14:50:59.361024Z;;;2785144255;4;0;1688849861029350;4096;8;0;0;2019-12-07T14:50:59.361024Z;2020-11-03T12:35:27.956411Z;2019-12-07T14:50:59.361024Z +C:/Windows/SysWOW64/Com/de-DE/MigRegDB.exe.mui;file;2560;33206;2019-12-07T14:50:59.361024Z;;;2785144255;4;0;1688849861029880;4096;8;0;0;2019-12-07T14:50:59.361024Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:50:59.361024Z +C:/Windows/SysWOW64/Com/dmp;directory;0;16822;2019-12-07T09:14:52.720933Z;;;2785144255;1;0;51509920738370400;4096;0;0;0;2021-07-12T11:01:25.141455Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/Com/en-US;directory;0;16822;2020-11-03T12:41:50.219981Z;;;2785144255;1;0;23362423067304800;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:41:50.219981Z;2019-12-07T14:51:16.610878Z +C:/Windows/SysWOW64/Com/en-US/comrepl.exe.mui;file;2560;33206;2020-11-03T12:41:39.550531Z;;;2785144255;4;0;1125899907690660;4096;8;0;0;2020-11-03T12:41:39.675502Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.550531Z +C:/Windows/SysWOW64/Com/en-US/MigRegDB.exe.mui;file;2560;33206;2020-11-03T12:41:39.550531Z;;;2785144255;4;0;1125899907690660;4096;8;0;0;2020-11-03T12:41:39.675502Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.550531Z +C:/Windows/SysWOW64/Com/MigRegDB.exe;file;11264;33206;2019-12-07T09:09:22.223955Z;;;2785144255;2;0;1125899907635360;4096;24;0;0;2020-11-03T12:35:43.062616Z;2021-11-11T11:29:33.775168Z;2019-12-07T09:09:22.223955Z +C:/Windows/SysWOW64/Com/mtsadmin.tlb;file;19456;33206;2019-12-07T09:09:22.193610Z;;;2785144255;2;0;1125899907635380;4096;40;0;0;2021-02-22T08:01:23.789067Z;2021-02-22T08:01:23.789067Z;2019-12-07T09:09:22.193610Z +C:/Windows/SysWOW64/combase.dll;file;2637712;33206;2021-11-11T11:29:00.358696Z;;;2785144255;2;0;281474977879217;4096;5152;0;0;2021-12-16T13:35:31.113503Z;2021-11-11T11:38:52.386963Z;2021-11-11T11:29:00.284715Z +C:/Windows/SysWOW64/comcat.dll;file;8192;33206;2019-12-07T09:09:22.193610Z;;;2785144255;2;0;1125899907637260;4096;16;0;0;2021-12-16T13:35:31.122163Z;2021-11-11T11:29:33.779158Z;2019-12-07T09:09:22.193610Z +C:/Windows/SysWOW64/comctl32.dll;file;568144;33206;2021-07-16T09:18:05.044857Z;;;2785144255;2;0;281474977816970;4096;1112;0;0;2021-12-16T13:35:31.123127Z;2021-11-11T11:29:33.813066Z;2021-07-16T09:18:05.029236Z +C:/Windows/SysWOW64/comdlg32.dll;file;688128;33206;2021-04-17T10:34:48.676647Z;;;2785144255;2;0;844424930951683;4096;1344;0;0;2021-12-16T13:35:31.123606Z;2021-11-11T11:29:33.813066Z;2021-04-17T10:34:48.608732Z +C:/Windows/SysWOW64/comexp.msc;file;124118;33206;2019-12-07T09:09:22.208345Z;;;2785144255;2;0;1125899907634820;4096;248;0;0;2021-12-16T13:35:31.128258Z;2020-11-03T12:35:42.718946Z;2019-12-07T09:09:22.208345Z +C:/Windows/SysWOW64/coml2.dll;file;376032;33206;2020-11-03T12:45:50.166603Z;;;2785144255;2;0;562949954396469;4096;736;0;0;2021-12-16T13:35:31.128755Z;2021-11-11T11:29:33.749237Z;2020-11-03T12:45:50.166603Z +C:/Windows/SysWOW64/comp.exe;file;23552;33206;2019-12-07T09:09:57.426957Z;;;2785144255;2;0;1125899907630270;4096;48;0;0;2021-12-16T13:35:31.137821Z;2021-11-11T11:29:34.198164Z;2019-12-07T09:09:57.426957Z +C:/Windows/SysWOW64/compact.exe;file;41472;33206;2019-12-07T09:09:22.239161Z;;;2785144255;2;0;1125899907636440;4096;88;0;0;2021-12-16T13:35:31.147654Z;2021-11-11T11:29:33.764197Z;2019-12-07T09:09:22.239161Z +C:/Windows/SysWOW64/compmgmt.msc;file;113256;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907628200;4096;224;0;0;2021-12-16T13:35:31.152243Z;2021-02-22T08:01:23.753350Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/compobj.dll;file;8960;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907635490;4096;24;0;0;2021-12-16T13:35:31.154796Z;2021-11-11T11:29:33.800102Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/ComposableShellProxyStub.dll;file;181760;33206;2019-12-07T09:09:13.707215Z;;;2785144255;2;0;1125899907636610;4096;360;0;0;2021-12-16T13:35:31.166766Z;2021-11-11T11:29:33.719317Z;2019-12-07T09:09:13.707215Z +C:/Windows/SysWOW64/CompPkgSup.dll;file;164256;33206;2021-01-15T09:27:09.172761Z;;;2785144255;2;0;3940649674530920;4096;328;0;0;2021-12-16T13:35:31.166766Z;2021-11-11T11:29:33.700367Z;2021-01-15T09:27:09.172761Z +C:/Windows/SysWOW64/compstui.dll;file;97280;33206;2021-10-03T19:02:19.873705Z;;;2785144255;2;0;1688849861187010;4096;192;0;0;2021-12-16T13:35:31.178246Z;2021-11-11T11:29:33.807083Z;2021-10-03T19:02:19.866227Z +C:/Windows/SysWOW64/ComputerDefaults.exe;file;67584;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907628310;4096;136;0;0;2021-12-16T13:35:31.193283Z;2021-11-11T11:29:34.205151Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/comrepl.dll;file;113152;33206;2021-01-15T09:27:18.926944Z;;;2785144255;2;0;14636698789573300;4096;224;0;0;2021-12-16T13:35:31.209018Z;2021-11-11T11:29:33.768187Z;2021-01-15T09:27:18.926944Z +C:/Windows/SysWOW64/comres.dll;file;2560;33206;2019-12-07T09:09:22.223955Z;;;2785144255;2;0;1125899907636140;4096;8;0;0;2021-12-16T13:35:31.212010Z;2021-11-11T11:29:33.765194Z;2019-12-07T09:09:22.223955Z +C:/Windows/SysWOW64/comsnap.dll;file;229888;33206;2021-01-15T09:27:19.005067Z;;;2785144255;2;0;12666373952598700;4096;456;0;0;2021-12-16T13:35:31.230236Z;2021-11-11T11:29:33.770182Z;2021-01-15T09:27:19.005067Z +C:/Windows/SysWOW64/comsvcs.dll;file;1352192;33206;2021-01-15T09:27:18.973776Z;;;2785144255;2;0;10133099162202800;4096;2648;0;0;2021-12-16T13:35:31.248900Z;2021-11-11T11:29:33.766192Z;2021-01-15T09:27:18.958155Z +C:/Windows/SysWOW64/comuid.dll;file;612864;33206;2021-01-15T09:27:19.020639Z;;;2785144255;2;0;5348024558121650;4096;1200;0;0;2021-12-16T13:35:31.263481Z;2021-11-11T11:29:33.773174Z;2021-01-15T09:27:19.005067Z +C:/Windows/SysWOW64/concrt140.dll;file;250136;33206;2019-09-27T18:04:14Z;;;2785144255;1;0;18577348463400500;4096;496;0;0;2021-12-16T13:35:31.277559Z;2020-11-03T12:52:03.269473Z;2019-09-27T18:04:14Z +C:/Windows/SysWOW64/config;;;;;;;;;;;;;;;;; +C:/Windows/SysWOW64/Configuration;;;;;;;;;;;;;;;;; +C:/Windows/SysWOW64/ConfigureExpandedStorage.dll;file;48640;33206;2021-01-15T09:27:21.584555Z;;;2785144255;2;0;9288674232071380;4096;96;0;0;2021-12-16T13:35:31.289217Z;2021-11-11T11:29:33.812069Z;2021-01-15T09:27:21.584555Z +C:/Windows/SysWOW64/connect.dll;file;233984;33206;2021-01-15T09:27:21.334645Z;;;2785144255;2;0;6755399441675440;4096;464;0;0;2021-12-16T13:35:31.302998Z;2021-11-11T11:29:33.802096Z;2021-01-15T09:27:21.334645Z +C:/Windows/SysWOW64/ConnectedAccountState.dll;file;49152;33206;2021-01-15T09:27:19.659508Z;;;2785144255;2;0;9570149208781570;4096;96;0;0;2021-12-16T13:35:31.314954Z;2021-11-11T11:29:33.786186Z;2021-01-15T09:27:19.659508Z +C:/Windows/SysWOW64/console.dll;file;115712;33206;2021-01-15T09:27:19.098747Z;;;2785144255;2;0;10696049115624100;4096;232;0;0;2021-12-16T13:35:31.330250Z;2021-11-11T11:29:33.759211Z;2021-01-15T09:27:19.098747Z +C:/Windows/SysWOW64/ConsoleLogon.dll;file;289792;33206;2021-10-03T19:03:35.433084Z;;;2785144255;2;0;73464968921486500;4096;568;0;0;2021-12-16T13:35:31.344576Z;2021-11-11T11:29:33.795115Z;2021-10-03T19:03:35.405346Z +C:/Windows/SysWOW64/ContactActivation.dll;file;46592;33206;2021-01-15T09:27:15.671372Z;;;2785144255;2;0;11821949022466200;4096;96;0;0;2021-12-16T13:35:31.355548Z;2021-11-11T11:29:33.745249Z;2021-01-15T09:27:15.671372Z +C:/Windows/SysWOW64/ContactApis.dll;file;891392;33206;2021-01-15T09:27:15.593278Z;;;2785144255;2;0;10414574138907200;4096;1744;0;0;2021-12-16T13:35:31.370605Z;2021-11-11T11:29:33.753227Z;2021-01-15T09:27:15.577645Z +C:/Windows/SysWOW64/container.dll;file;176128;33206;2021-05-18T10:59:11.353031Z;;;2785144255;2;0;3659174698125740;4096;344;0;0;2021-12-16T13:35:31.382429Z;2021-11-11T11:29:33.772176Z;2021-05-18T10:59:11.351037Z +C:/Windows/SysWOW64/ContentDeliveryManager.Utilities.dll;file;1329976;33206;2021-11-11T11:28:57.064158Z;;;2785144255;2;0;281474977878945;4096;2600;0;0;2021-12-16T13:35:31.402381Z;2021-11-11T11:38:51.089340Z;2021-11-11T11:28:57.035237Z +C:/Windows/SysWOW64/control.exe;file;149504;33206;2021-11-11T11:28:57.256752Z;;;2785144255;2;0;281474977878951;4096;296;0;0;2021-12-16T13:35:31.439281Z;2021-11-11T11:38:51.028345Z;2021-11-11T11:28:57.253722Z +C:/Windows/SysWOW64/convert.exe;file;19456;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907629830;4096;40;0;0;2021-12-16T13:35:31.448256Z;2021-11-15T13:07:17.583471Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/coreglobconfig.dll;file;163720;33206;2021-01-15T09:27:15.733859Z;;;2785144255;2;0;13229323906019500;4096;320;0;0;2021-12-16T13:35:31.462218Z;2021-11-11T11:29:33.757217Z;2021-01-15T09:27:15.733859Z +C:/Windows/SysWOW64/CoreMas.dll;file;240640;33206;2020-12-09T00:08:26.762520Z;;;2785144255;2;0;1407374883927000;4096;472;0;0;2021-12-16T13:35:31.474228Z;2021-11-15T13:07:17.583471Z;2020-12-09T00:08:26.762520Z +C:/Windows/SysWOW64/CoreMessaging.dll;file;630592;33206;2021-03-11T12:12:18.276747Z;;;2785144255;2;0;844424931103320;4096;1232;0;0;2021-12-16T13:35:31.474228Z;2021-11-11T11:29:33.763200Z;2021-03-11T12:12:18.261121Z +C:/Windows/SysWOW64/CoreMmRes.dll;file;19968;33206;2019-12-07T14:54:41.235245Z;;;2785144255;2;0;1125899907618710;4096;40;0;0;2021-12-16T13:35:31.477209Z;2021-11-11T11:29:34.302854Z;2019-12-07T09:10:11.945490Z +C:/Windows/SysWOW64/CoreShellAPI.dll;file;374784;33206;2021-01-15T09:27:10.400572Z;;;2785144255;2;0;9007199255328490;4096;736;0;0;2021-12-16T13:35:31.491179Z;2021-11-11T11:29:33.717322Z;2021-01-15T09:27:10.384989Z +C:/Windows/SysWOW64/CoreUIComponents.dll;file;2621720;33206;2020-11-03T12:45:48.198202Z;;;2785144255;2;0;562949954395856;4096;5128;0;0;2021-12-16T13:35:31.492321Z;2021-11-11T11:29:33.744251Z;2020-11-03T12:45:48.182581Z +C:/Windows/SysWOW64/CPFilters.dll;file;408576;33206;2021-10-03T19:02:58.284155Z;;;2785144255;2;0;1688849861187690;4096;800;0;0;2021-12-16T13:35:31.506807Z;2021-11-11T11:29:34.245008Z;2021-10-03T19:02:58.263009Z +C:/Windows/SysWOW64/CredentialUIBroker.exe;file;113120;33206;2021-01-15T09:27:19.362704Z;;;2785144255;2;0;5910974511542990;4096;224;0;0;2021-12-16T13:35:31.517819Z;2021-11-11T11:29:33.788164Z;2021-01-15T09:27:19.362704Z +C:/Windows/SysWOW64/CredProv2faHelper.dll;file;83456;33206;2021-01-15T09:27:19.393965Z;;;2785144255;2;0;1688849860883150;4096;168;0;0;2021-12-16T13:35:31.528779Z;2021-11-11T11:29:33.798140Z;2021-01-15T09:27:19.393965Z +C:/Windows/SysWOW64/CredProvDataModel.dll;file;467456;33206;2021-01-15T09:27:19.347082Z;;;2785144255;2;0;12666373952598700;4096;920;0;0;2021-12-16T13:35:31.542214Z;2021-11-11T11:29:33.797110Z;2021-01-15T09:27:19.347082Z +C:/Windows/SysWOW64/CredProvHelper.dll;file;82944;33206;2021-04-17T10:34:39.301286Z;;;2785144255;2;0;844424930951422;4096;168;0;0;2021-12-16T13:35:31.553826Z;2021-11-11T11:29:33.764197Z;2021-04-17T10:34:39.289319Z +C:/Windows/SysWOW64/credprovhost.dll;file;279040;33206;2021-01-15T09:27:19.362704Z;;;2785144255;2;0;14636698789573300;4096;552;0;0;2021-12-16T13:35:31.566679Z;2021-11-11T11:29:33.783178Z;2021-01-15T09:27:19.362704Z +C:/Windows/SysWOW64/credprovs.dll;file;274944;33206;2021-10-03T19:02:17.465013Z;;;2785144255;2;0;1688849861186980;4096;544;0;0;2021-12-16T13:35:31.581111Z;2021-11-11T11:29:33.785173Z;2021-10-03T19:02:17.444921Z +C:/Windows/SysWOW64/credprovslegacy.dll;file;158720;33206;2021-01-15T09:27:19.393965Z;;;2785144255;2;0;14073748836152000;4096;312;0;0;2021-12-16T13:35:31.594871Z;2021-11-11T11:29:33.782192Z;2021-01-15T09:27:19.393965Z +C:/Windows/SysWOW64/credssp.dll;file;19456;33206;2021-11-11T11:29:01.258857Z;;;2785144255;2;0;281474977879253;4096;40;0;0;2021-12-16T13:35:31.594871Z;2021-11-11T11:38:52.956623Z;2021-11-11T11:29:01.257857Z +C:/Windows/SysWOW64/credui.dll;file;35840;33206;2020-11-03T12:45:52.181760Z;;;2785144255;2;0;1125899907818580;4096;72;0;0;2021-12-16T13:35:31.596466Z;2021-11-11T11:29:33.785173Z;2020-11-03T12:45:52.181760Z +C:/Windows/SysWOW64/credwiz.exe;file;29696;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907630530;4096;64;0;0;2021-12-16T13:35:31.619165Z;2021-11-11T11:29:34.239061Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/crtdll.dll;file;149019;33206;2019-12-07T09:09:13.739223Z;;;2785144255;2;0;1125899907636090;4096;296;0;0;2021-12-16T13:35:31.631113Z;2021-11-11T11:29:33.714330Z;2019-12-07T09:09:13.739223Z +C:/Windows/SysWOW64/crypt32.dll;file;1013344;33206;2021-11-11T11:29:00.441444Z;;;2785144255;2;0;281474977879220;4096;1984;0;0;2021-12-16T13:35:31.631407Z;2021-11-11T11:38:51.870481Z;2021-11-11T11:29:00.417508Z +C:/Windows/SysWOW64/cryptbase.dll;file;31528;33206;2020-11-03T12:45:45.448878Z;;;2785144255;2;0;1125899907815920;4096;64;0;0;2021-12-16T13:35:31.631674Z;2021-11-11T11:29:33.701365Z;2020-11-03T12:45:45.448878Z +C:/Windows/SysWOW64/cryptdlg.dll;file;26112;33206;2019-12-07T09:10:00.678451Z;;;2785144255;2;0;1125899907628190;4096;56;0;0;2021-12-16T13:35:31.642539Z;2021-11-11T11:29:34.220113Z;2019-12-07T09:10:00.678451Z +C:/Windows/SysWOW64/cryptdll.dll;file;56312;33206;2020-11-03T12:45:51.869329Z;;;2785144255;2;0;562949954397191;4096;112;0;0;2021-12-16T13:35:31.656241Z;2021-11-11T11:29:33.767189Z;2020-11-03T12:45:51.869329Z +C:/Windows/SysWOW64/cryptext.dll;file;60416;33206;2021-01-15T09:27:19.362704Z;;;2785144255;2;0;14918173766284000;4096;120;0;0;2021-12-16T13:35:31.669207Z;2021-11-11T11:29:33.795115Z;2021-01-15T09:27:19.362704Z +C:/Windows/SysWOW64/cryptnet.dll;file;145144;33206;2021-04-17T10:34:40.544411Z;;;2785144255;2;0;844424930951434;4096;288;0;0;2021-12-16T13:35:31.669207Z;2021-11-11T11:29:33.761205Z;2021-04-17T10:34:40.529973Z +C:/Windows/SysWOW64/cryptngc.dll;file;347648;33206;2021-10-03T19:02:13.983035Z;;;2785144255;2;0;1688849861186930;4096;680;0;0;2021-12-16T13:35:31.689154Z;2021-11-11T11:29:33.745249Z;2021-10-03T19:02:13.955775Z +C:/Windows/SysWOW64/CryptoWinRT.dll;file;279040;33206;2021-01-15T09:27:16.577413Z;;;2785144255;2;0;10133099162202300;4096;552;0;0;2021-12-16T13:35:31.703117Z;2021-11-11T11:29:33.809077Z;2021-01-15T09:27:16.577413Z +C:/Windows/SysWOW64/cryptsp.dll;file;68192;33206;2020-11-03T12:45:51.869329Z;;;2785144255;2;0;562949954397193;4096;136;0;0;2021-12-16T13:35:31.703117Z;2021-11-11T11:29:33.773174Z;2020-11-03T12:45:51.869329Z +C:/Windows/SysWOW64/crypttpmeksvc.dll;file;45056;33206;2019-12-07T09:09:16.989439Z;;;2785144255;2;0;1125899907634990;4096;88;0;0;2021-12-16T13:35:31.715085Z;2021-11-11T11:29:33.782192Z;2019-12-07T09:09:16.989439Z +C:/Windows/SysWOW64/cryptui.dll;file;236032;33206;2020-11-03T12:45:52.166135Z;;;2785144255;2;0;1970324837950540;4096;464;0;0;2021-12-16T13:35:31.716081Z;2021-11-11T11:29:33.796165Z;2020-11-03T12:45:52.166135Z +C:/Windows/SysWOW64/cryptuiwizard.dll;file;104448;33206;2021-02-11T15:05:25.635720Z;;;2785144255;2;0;562949954319509;4096;208;0;0;2021-12-16T13:35:31.727085Z;2021-11-11T11:29:34.235034Z;2021-02-11T15:05:25.635720Z +C:/Windows/SysWOW64/cryptxml.dll;file;98592;33206;2019-12-07T09:09:18.060978Z;;;2785144255;2;0;1125899907636680;4096;200;0;0;2021-12-16T13:35:31.739020Z;2021-11-11T11:29:33.763200Z;2019-12-07T09:09:18.060978Z +C:/Windows/SysWOW64/cs-CZ;directory;0;16822;2019-12-07T14:53:40.594677Z;;;2785144255;1;0;14636698789274500;4096;8;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/cs-CZ/APHostRes.dll.mui;file;15872;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648590;4096;32;0;0;2019-12-07T14:53:37.735771Z;2020-11-03T12:35:52.435552Z;2019-12-07T14:53:37.735771Z +C:/Windows/SysWOW64/cs-CZ/cdosys.dll.mui;file;48128;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014760;4096;96;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/cs-CZ/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5348024558172230;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.958283Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/cs-CZ/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619360;4096;8;0;0;2019-12-07T14:52:07.720196Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.720196Z +C:/Windows/SysWOW64/cs-CZ/SyncRes.dll.mui;file;30208;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648670;4096;64;0;0;2019-12-07T14:53:37.828815Z;2020-11-03T12:35:52.482415Z;2019-12-07T14:53:37.828815Z +C:/Windows/SysWOW64/cs-CZ/windows.ui.xaml.dll.mui;file;17408;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907636740;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:43.999935Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/cscapi.dll;file;40960;33206;2020-11-03T12:45:53.650162Z;;;2785144255;2;0;562949954397960;4096;80;0;0;2021-12-16T13:35:31.740019Z;2021-11-11T11:29:33.815064Z;2020-11-03T12:45:53.650162Z +C:/Windows/SysWOW64/cscdll.dll;file;22016;33206;2020-11-03T12:45:53.650162Z;;;2785144255;2;0;562949954397961;4096;48;0;0;2021-12-16T13:35:31.749954Z;2021-11-11T11:29:33.809077Z;2020-11-03T12:45:53.650162Z +C:/Windows/SysWOW64/cscobj.dll;file;202752;33206;2021-01-15T09:27:42.392586Z;;;2785144255;2;0;10133099162206800;4096;400;0;0;2021-12-16T13:35:31.767366Z;2021-11-11T11:29:32.374131Z;2021-01-15T09:27:42.392586Z +C:/Windows/SysWOW64/cscript.exe;file;144896;33206;2021-10-03T19:02:20.187876Z;;;2785144255;2;0;1688849861187020;4096;288;0;0;2021-12-16T13:35:31.798451Z;2021-11-11T11:29:33.813066Z;2021-10-03T19:02:20.185900Z +C:/Windows/SysWOW64/csrr.rs;file;43520;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907634820;4096;88;0;0;2021-12-16T13:35:31.801418Z;2021-11-11T11:29:33.713333Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/ctfmon.exe;file;9728;33206;2019-12-07T09:09:13.667398Z;;;2785144255;2;0;1125899907635210;4096;24;0;0;2021-12-16T13:35:31.819273Z;2021-11-11T11:29:33.727295Z;2019-12-07T09:09:13.667398Z +C:/Windows/SysWOW64/ctl3d32.dll;file;27136;33206;2019-12-07T09:09:13.739223Z;;;2785144255;2;0;1125899907637390;4096;56;0;0;2021-12-16T13:35:31.830048Z;2021-11-11T11:29:33.714330Z;2019-12-07T09:09:13.739223Z +C:/Windows/SysWOW64/cttune.exe;file;72192;33206;2019-12-07T09:09:57.865923Z;;;2785144255;2;0;1125899907629050;4096;144;0;0;2021-12-16T13:35:31.850903Z;2021-11-11T11:29:34.207109Z;2019-12-07T09:09:57.865923Z +C:/Windows/SysWOW64/cttunesvr.exe;file;35328;33206;2021-01-15T09:27:34.522020Z;;;2785144255;2;0;23362423067606500;4096;72;0;0;2021-12-16T13:35:31.860997Z;2021-11-11T11:29:34.213094Z;2021-01-15T09:27:34.522020Z +C:/Windows/SysWOW64/curl.exe;file;386560;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1407374884339410;4096;760;0;0;2021-12-16T13:35:31.889200Z;2021-11-11T11:29:34.212096Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/C_G18030.DLL;file;225280;33206;2019-12-07T09:09:26.068187Z;;;2785144255;2;0;1125899907636250;4096;440;0;0;2021-12-16T13:35:29.678235Z;2021-11-11T11:29:33.796165Z;2019-12-07T09:09:26.068187Z +C:/Windows/SysWOW64/c_GSM7.DLL;file;12288;33206;2019-12-07T09:09:26.068187Z;;;2785144255;2;0;1125899907636830;4096;24;0;0;2021-12-16T13:35:29.690200Z;2021-11-11T11:29:33.788164Z;2019-12-07T09:09:26.068187Z +C:/Windows/SysWOW64/C_IS2022.DLL;file;14336;33206;2019-12-07T09:09:26.068187Z;;;2785144255;2;0;1125899907636450;4096;32;0;0;2021-12-16T13:35:29.703166Z;2021-11-11T11:29:33.799135Z;2019-12-07T09:09:26.068187Z +C:/Windows/SysWOW64/C_ISCII.DLL;file;12288;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907628630;4096;24;0;0;2021-12-16T13:35:29.716135Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/d2d1.dll;file;5371544;33206;2020-11-03T12:45:48.260723Z;;;2785144255;2;0;562949954395859;4096;10496;0;0;2021-12-16T13:35:31.890200Z;2021-11-11T11:29:33.788164Z;2020-11-03T12:45:48.229481Z +C:/Windows/SysWOW64/d3d10.dll;file;1041920;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907636960;4096;2040;0;0;2021-12-16T13:35:31.909147Z;2021-11-11T11:29:33.788164Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/d3d10core.dll;file;33792;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907638740;4096;72;0;0;2021-12-16T13:35:31.942075Z;2021-11-11T11:29:33.783178Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/d3d10level9.dll;file;325344;33206;2019-12-07T09:09:17.692059Z;;;2785144255;2;0;1125899907637060;4096;640;0;0;2021-12-16T13:35:31.958137Z;2021-11-11T11:29:33.790129Z;2019-12-07T09:09:17.692059Z +C:/Windows/SysWOW64/d3d10warp.dll;file;5998616;33206;2020-11-03T12:45:48.448178Z;;;2785144255;2;0;562949954395865;4096;11720;0;0;2021-12-16T13:35:31.958137Z;2021-11-11T11:29:33.782192Z;2020-11-03T12:45:48.401317Z +C:/Windows/SysWOW64/d3d10_1.dll;file;151040;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907636700;4096;296;0;0;2021-12-16T13:35:31.920118Z;2021-11-11T11:29:33.794117Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/d3d10_1core.dll;file;34304;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907638350;4096;72;0;0;2021-12-16T13:35:31.931318Z;2021-11-11T11:29:33.797110Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/d3d11.dll;file;1963712;33206;2021-10-03T19:02:05.076190Z;;;2785144255;2;0;1688849861186670;4096;3840;0;0;2021-12-16T13:35:31.958137Z;2021-11-11T11:29:33.794117Z;2021-10-03T19:02:04.976150Z +C:/Windows/SysWOW64/d3d11on12.dll;file;462784;33206;2021-07-07T12:58:44.674067Z;;;2785144255;2;0;281474977790753;4096;904;0;0;2021-12-16T13:35:31.972696Z;2021-11-11T11:29:33.786186Z;2021-07-07T12:58:44.670559Z +C:/Windows/SysWOW64/D3D12.dll;file;83128;33206;2021-10-16T00:21:16.835737Z;;;2785144255;2;0;281474977857356;4096;168;0;0;2021-12-16T13:35:31.973527Z;2021-11-11T11:29:33.797110Z;2021-10-16T00:21:16.813525Z +C:/Windows/SysWOW64/D3D12Core.dll;file;1463272;33206;2021-10-16T00:21:16.867025Z;;;2785144255;2;0;281474977857357;4096;2864;0;0;2021-12-16T13:35:31.973773Z;2021-11-11T11:29:33.798140Z;2021-10-16T00:21:16.835737Z +C:/Windows/SysWOW64/d3d8.dll;file;714752;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907635330;4096;1400;0;0;2021-12-16T13:35:31.989295Z;2021-11-11T11:29:33.782192Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/d3d8thk.dll;file;12800;33206;2021-04-17T10:34:41.695955Z;;;2785144255;2;0;844424930951457;4096;32;0;0;2021-12-16T13:35:32.001261Z;2021-11-11T11:29:33.784180Z;2021-04-17T10:34:41.691118Z +C:/Windows/SysWOW64/d3d9.dll;file;1618168;33206;2021-04-17T10:34:41.849692Z;;;2785144255;2;0;844424930951458;4096;3168;0;0;2021-12-16T13:35:32.002260Z;2021-11-11T11:29:33.796165Z;2021-04-17T10:34:41.706412Z +C:/Windows/SysWOW64/d3d9on12.dll;file;556544;33206;2021-07-07T12:58:44.689737Z;;;2785144255;2;0;281474977790754;4096;1088;0;0;2021-12-16T13:35:32.015223Z;2021-11-11T11:29:33.795115Z;2021-07-07T12:58:44.674067Z +C:/Windows/SysWOW64/D3DCompiler_47.dll;file;3706880;33206;2020-11-03T12:45:48.338825Z;;;2785144255;2;0;562949954395861;4096;7240;0;0;2021-12-16T13:35:32.035202Z;2021-11-11T11:29:33.787167Z;2020-11-03T12:45:48.323205Z +C:/Windows/SysWOW64/d3dim.dll;file;318976;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907637440;4096;624;0;0;2021-12-16T13:35:32.049166Z;2021-11-11T11:29:33.787167Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/d3dim700.dll;file;388096;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907638240;4096;760;0;0;2021-12-16T13:35:32.062099Z;2021-11-11T11:29:33.796165Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/d3dramp.dll;file;595456;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907637380;4096;1168;0;0;2021-12-16T13:35:32.074067Z;2021-11-11T11:29:33.786186Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/D3DSCache.dll;file;124968;33206;2021-01-15T09:27:13.511710Z;;;2785144255;2;0;2533274790986990;4096;248;0;0;2021-12-16T13:35:32.075094Z;2021-11-11T11:29:33.793120Z;2021-01-15T09:27:13.511710Z +C:/Windows/SysWOW64/d3dxof.dll;file;56832;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907635840;4096;112;0;0;2021-12-16T13:35:32.088704Z;2021-11-11T11:29:33.782192Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/da-DK;directory;0;16822;2019-12-07T14:53:40.594677Z;;;2785144255;1;0;10977524092036000;4096;8;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/da-DK/APHostRes.dll.mui;file;16384;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648820;4096;32;0;0;2019-12-07T14:53:37.735771Z;2020-11-03T12:35:52.544900Z;2019-12-07T14:53:37.735771Z +C:/Windows/SysWOW64/da-DK/cdosys.dll.mui;file;48640;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;5910974511593460;4096;96;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/da-DK/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;6192449488304180;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.958283Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/da-DK/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619440;4096;8;0;0;2019-12-07T14:52:07.720196Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.720196Z +C:/Windows/SysWOW64/da-DK/SyncRes.dll.mui;file;30720;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648630;4096;64;0;0;2019-12-07T14:53:37.828815Z;2020-11-03T12:35:52.466793Z;2019-12-07T14:53:37.828815Z +C:/Windows/SysWOW64/da-DK/windows.ui.xaml.dll.mui;file;16896;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907635560;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:43.171964Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/dabapi.dll;file;11264;33206;2021-10-03T19:02:17.257588Z;;;2785144255;2;0;1688849861186970;4096;24;0;0;2021-12-16T13:35:32.098678Z;2021-11-11T11:29:33.766192Z;2021-10-03T19:02:17.255340Z +C:/Windows/SysWOW64/DafPrintProvider.dll;file;89088;33206;2021-10-03T19:02:19.975852Z;;;2785144255;2;0;1688849861187020;4096;176;0;0;2021-12-16T13:35:32.111644Z;2021-11-11T11:29:33.807083Z;2021-10-03T19:02:19.974816Z +C:/Windows/SysWOW64/DaOtpCredentialProvider.dll;file;265216;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907636860;4096;520;0;0;2021-12-16T13:35:32.125606Z;2021-11-11T11:29:33.800102Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/dataclen.dll;file;36864;33206;2019-12-07T09:09:57.865923Z;;;2785144255;2;0;1125899907629020;4096;72;0;0;2021-12-16T13:35:32.136611Z;2021-11-11T11:29:34.214092Z;2019-12-07T09:09:57.865923Z +C:/Windows/SysWOW64/DataExchange.dll;file;184832;33206;2021-10-03T19:02:04.004213Z;;;2785144255;2;0;1688849861186650;4096;368;0;0;2021-12-16T13:35:32.137574Z;2021-11-11T11:29:33.742257Z;2021-10-03T19:02:03.986740Z +C:/Windows/SysWOW64/davclnt.dll;file;78848;33206;2020-11-03T12:46:03.663536Z;;;2785144255;2;0;562949954401118;4096;160;0;0;2021-12-16T13:35:32.149542Z;2021-11-11T11:29:31.740402Z;2020-11-03T12:46:03.663536Z +C:/Windows/SysWOW64/davhlpr.dll;file;21504;33206;2020-11-03T12:45:53.650162Z;;;2785144255;2;0;562949954397962;4096;48;0;0;2021-12-16T13:35:32.161516Z;2021-11-11T11:29:33.810075Z;2020-11-03T12:45:53.650162Z +C:/Windows/SysWOW64/DavSyncProvider.dll;file;318976;33206;2021-01-15T09:27:50.226996Z;;;2785144255;2;0;21673573207345300;4096;624;0;0;2021-12-16T13:35:32.174510Z;2021-11-11T11:29:35.504591Z;2021-01-15T09:27:50.223974Z +C:/Windows/SysWOW64/daxexec.dll;file;512000;33206;2021-11-11T11:29:00.058411Z;;;2785144255;2;0;281474977879202;4096;1000;0;0;2021-12-16T13:35:32.189429Z;2021-11-11T11:38:51.058881Z;2021-11-11T11:29:00.048437Z +C:/Windows/SysWOW64/dbgcore.dll;file;138752;33206;2020-11-03T12:45:52.088033Z;;;2785144255;2;0;562949954397241;4096;272;0;0;2021-12-16T13:35:32.189429Z;2021-11-11T11:29:34.239061Z;2020-11-03T12:45:52.088033Z +C:/Windows/SysWOW64/dbgeng.dll;file;5299200;33206;2021-10-16T00:21:18.532799Z;;;2785144255;2;0;281474977857632;4096;10352;0;0;2021-12-16T13:35:32.213371Z;2021-11-11T11:29:34.235034Z;2021-10-16T00:21:18.470278Z +C:/Windows/SysWOW64/dbghelp.dll;file;1494016;33206;2021-06-10T14:01:41.059678Z;;;2785144255;2;0;281474977765189;4096;2920;0;0;2021-12-16T13:36:00.886468Z;2021-11-11T11:29:34.234037Z;2021-06-10T14:01:41.044056Z +C:/Windows/SysWOW64/DbgModel.dll;file;519680;33206;2021-10-16T00:21:18.570559Z;;;2785144255;2;0;281474977857633;4096;1016;0;0;2021-12-16T13:35:32.227248Z;2021-11-11T11:29:34.235034Z;2021-10-16T00:21:18.570559Z +C:/Windows/SysWOW64/dbnetlib.dll;file;104960;33206;2021-03-11T12:12:31.110656Z;;;2785144255;2;0;1688849861236550;4096;208;0;0;2021-12-16T13:35:32.237874Z;2021-11-11T11:29:34.219114Z;2021-03-11T12:12:31.095029Z +C:/Windows/SysWOW64/dbnmpntw.dll;file;19456;33206;2019-12-07T09:10:02.162312Z;;;2785144255;2;0;1125899907628010;4096;40;0;0;2021-12-16T13:35:32.248899Z;2021-11-11T11:29:34.223103Z;2019-12-07T09:10:02.162312Z +C:/Windows/SysWOW64/dccw.exe;file;81408;33206;2019-12-07T09:09:27.583510Z;;;2785144255;2;0;1125899907635120;4096;160;0;0;2021-12-16T13:35:32.259537Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:27.583510Z +C:/Windows/SysWOW64/dciman32.dll;file;11776;33206;2021-11-11T11:29:00.545195Z;;;2785144255;2;0;281474977879228;4096;24;0;0;2021-12-16T13:35:32.269470Z;2021-11-11T11:38:51.605400Z;2021-11-11T11:29:00.544166Z +C:/Windows/SysWOW64/dcomcnfg.exe;file;10240;33206;2019-12-07T09:09:22.223955Z;;;2785144255;2;0;1125899907635200;4096;24;0;0;2021-12-16T13:35:32.278442Z;2021-11-11T11:29:33.761205Z;2019-12-07T09:09:22.223955Z +C:/Windows/SysWOW64/dcomp.dll;file;1452376;33206;2021-10-16T00:21:17.314931Z;;;2785144255;2;0;281474977857380;4096;2840;0;0;2021-12-16T13:35:32.278442Z;2021-11-11T11:29:33.779158Z;2021-10-16T00:21:17.283688Z +C:/Windows/SysWOW64/DDACLSys.dll;file;25616;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907629770;4096;56;0;0;2021-12-16T13:35:32.289787Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/ddisplay.dll;file;223232;33206;2021-01-15T09:27:13.464846Z;;;2785144255;2;0;25895697857971400;4096;440;0;0;2021-12-16T13:35:32.302414Z;2021-11-11T11:29:33.788164Z;2021-01-15T09:27:13.449225Z +C:/Windows/SysWOW64/ddodiag.exe;file;34304;33206;2019-12-07T09:09:26.114855Z;;;2785144255;2;0;1125899907635250;4096;72;0;0;2021-12-16T13:35:32.313718Z;2021-11-11T11:29:33.794117Z;2019-12-07T09:09:26.114855Z +C:/Windows/SysWOW64/DDOIProxy.dll;file;14336;33206;2019-12-07T09:09:26.114855Z;;;2785144255;2;0;1125899907636360;4096;32;0;0;2021-12-16T13:35:32.322555Z;2021-11-11T11:29:33.795115Z;2019-12-07T09:09:26.114855Z +C:/Windows/SysWOW64/DDORes.dll;file;41296;33206;2019-12-07T09:09:26.114855Z;;;2785144255;2;0;1125899907639260;4096;88;0;0;2021-12-16T13:35:32.334587Z;2021-11-11T11:29:33.786186Z;2019-12-07T09:09:26.114855Z +C:/Windows/SysWOW64/ddraw.dll;file;527360;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907635200;4096;1032;0;0;2021-12-16T13:35:32.347115Z;2021-11-11T11:29:33.782192Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/ddrawex.dll;file;41472;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907637180;4096;88;0;0;2021-12-16T13:35:32.358114Z;2021-11-11T11:29:33.794117Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/de;directory;0;16822;2019-12-07T14:51:16.610878Z;;;2785144255;1;0;65020719620482000;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.610878Z +C:/Windows/SysWOW64/de/AuthFWSnapIn.Resources.dll;file;3132928;33206;2019-12-07T14:51:02.298975Z;;;2785144255;2;0;1688849861008500;4096;6120;0;0;2020-11-03T12:35:26.612975Z;2021-11-11T11:29:35.479681Z;2019-12-07T14:51:02.298975Z +C:/Windows/SysWOW64/de/AuthFWWizFwk.Resources.dll;file;56832;33206;2019-12-07T14:51:02.298975Z;;;2785144255;2;0;1688849861008500;4096;112;0;0;2020-11-03T12:35:26.612975Z;2021-11-11T11:29:35.479681Z;2019-12-07T14:51:02.298975Z +C:/Windows/SysWOW64/de-DE;directory;0;16822;2021-11-11T11:38:44.511352Z;;;2785144255;1;0;12947848929010600;4096;160;0;0;2021-12-16T13:36:01.156170Z;2021-11-11T11:38:44.511352Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/de-DE/acppage.dll.mui;file;17920;33206;2019-12-07T14:50:59.314065Z;;;2785144255;4;0;1688849861029100;4096;40;0;0;2020-11-03T13:06:08.243990Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:59.314065Z +C:/Windows/SysWOW64/de-DE/ActionCenter.dll.mui;file;54784;33206;2019-12-07T14:51:00.096032Z;;;2785144255;4;0;1688849861029110;4096;112;0;0;2019-12-07T14:51:00.096032Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:51:00.096032Z +C:/Windows/SysWOW64/de-DE/ActionCenterCPL.dll.mui;file;9728;33206;2019-12-07T14:51:00.096032Z;;;2785144255;4;0;1688849861029110;4096;24;0;0;2020-11-03T16:59:10.575413Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:51:00.096032Z +C:/Windows/SysWOW64/de-DE/activeds.dll.mui;file;5120;33206;2019-12-07T14:50:59.314065Z;;;2785144255;4;0;7318349395146440;4096;16;0;0;2019-12-07T14:50:59.314065Z;2020-11-03T12:35:19.864556Z;2019-12-07T14:50:59.314065Z +C:/Windows/SysWOW64/de-DE/AdmTmpl.dll.mui;file;22528;33206;2019-12-07T14:50:54.564109Z;;;2785144255;4;0;1688849861029110;4096;48;0;0;2019-12-07T14:50:54.564109Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:54.564109Z +C:/Windows/SysWOW64/de-DE/adrclient.dll.mui;file;5120;33206;2019-12-07T14:50:55.299074Z;;;2785144255;2;0;1688849861029120;4096;16;0;0;2019-12-07T14:50:55.299074Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:55.299074Z +C:/Windows/SysWOW64/de-DE/adsldpc.dll.mui;file;3072;33206;2019-12-07T14:50:59.314065Z;;;2785144255;4;0;7318349395146440;4096;8;0;0;2019-12-07T14:50:59.314065Z;2020-11-03T12:35:19.864556Z;2019-12-07T14:50:59.314065Z +C:/Windows/SysWOW64/de-DE/adsnt.dll.mui;file;2560;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;1688849861029120;4096;8;0;0;2019-12-07T14:50:47.705049Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/de-DE/advpack.dll.mui;file;12288;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;7318349395146450;4096;24;0;0;2019-12-07T14:51:00.111037Z;2020-11-03T12:35:19.880178Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/de-DE/aeevts.dll.mui;file;22016;33206;2019-12-07T14:50:59.314065Z;;;2785144255;4;0;1970324837739780;4096;48;0;0;2019-12-07T14:50:59.314065Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:59.314065Z +C:/Windows/SysWOW64/de-DE/APHostRes.dll.mui;file;18944;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648700;4096;40;0;0;2021-12-14T11:14:02.514099Z;2020-11-03T12:35:52.482415Z;2019-12-07T14:53:37.735771Z +C:/Windows/SysWOW64/de-DE/apphelp.dll.mui;file;3584;33206;2019-12-07T14:50:59.330056Z;;;2785144255;4;0;1688849861029140;4096;8;0;0;2019-12-07T14:50:59.314065Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:59.314065Z +C:/Windows/SysWOW64/de-DE/Apphlpdm.dll.mui;file;4096;33206;2019-12-07T14:50:59.314065Z;;;2785144255;4;0;1688849861029140;4096;8;0;0;2019-12-07T14:50:59.314065Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:59.314065Z +C:/Windows/SysWOW64/de-DE/appmgmts.dll.mui;file;52736;33206;2019-12-07T14:50:55.174001Z;;;2785144255;4;0;1688849861029150;4096;104;0;0;2020-11-03T12:53:58.449959Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:55.174001Z +C:/Windows/SysWOW64/de-DE/appmgr.dll.mui;file;41984;33206;2019-12-07T14:50:54.564109Z;;;2785144255;4;0;1688849861029160;4096;88;0;0;2019-12-07T14:50:54.564109Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:54.564109Z +C:/Windows/SysWOW64/de-DE/at.exe.mui;file;9216;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861029170;4096;24;0;0;2019-12-07T14:51:01.504910Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/de-DE/audiodev.dll.mui;file;15872;33206;2019-12-07T14:50:51.658084Z;;;2785144255;2;0;1688849861029170;4096;32;0;0;2019-12-07T14:50:51.658084Z;2020-11-03T12:35:27.925167Z;2019-12-07T14:50:51.658084Z +C:/Windows/SysWOW64/de-DE/authfwgp.dll.mui;file;4608;33206;2019-12-07T14:51:00.080010Z;;;2785144255;4;0;1688849861029190;4096;16;0;0;2020-11-03T17:00:27.633716Z;2020-11-03T12:35:27.925167Z;2019-12-07T14:51:00.080010Z +C:/Windows/SysWOW64/de-DE/autoplay.dll.mui;file;4608;33206;2019-12-07T14:50:48.533190Z;;;2785144255;4;0;1688849861029190;4096;16;0;0;2019-12-07T14:50:48.533190Z;2020-11-03T12:35:27.925167Z;2019-12-07T14:50:48.533190Z +C:/Windows/SysWOW64/de-DE/avicap32.dll.mui;file;10752;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;1688849861029200;4096;24;0;0;2020-11-03T17:07:02.833588Z;2020-11-03T12:35:27.925167Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/de-DE/avifil32.dll.mui;file;4096;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;1688849861029200;4096;8;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:27.925167Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/de-DE/azman.msc;file;41589;33206;2019-12-07T14:50:49.486116Z;;;2785144255;4;0;1688849861029070;4096;88;0;0;2019-12-07T14:50:49.486116Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:50:49.486116Z +C:/Windows/SysWOW64/de-DE/azroleui.dll.mui;file;54272;33206;2019-12-07T14:50:49.486116Z;;;2785144255;4;0;1688849861029210;4096;112;0;0;2019-12-07T14:50:49.486116Z;2020-11-03T12:35:27.925167Z;2019-12-07T14:50:49.486116Z +C:/Windows/SysWOW64/de-DE/bootcfg.exe.mui;file;101376;33206;2019-12-07T14:50:56.142083Z;;;2785144255;4;0;7318349395146470;4096;200;0;0;2019-12-07T14:50:56.142083Z;2020-11-03T12:35:19.880178Z;2019-12-07T14:50:56.142083Z +C:/Windows/SysWOW64/de-DE/BWContextHandler.dll.mui;file;5120;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1970324837739910;4096;16;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:27.940789Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/de-DE/cdosys.dll.mui;file;52736;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6755399441725400;4096;104;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.927041Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/de-DE/charmap.exe.mui;file;9728;33206;2019-12-07T14:50:49.502080Z;;;2785144255;4;0;1688849861029300;4096;24;0;0;2020-11-03T17:00:24.975604Z;2020-11-03T12:35:27.940789Z;2019-12-07T14:50:49.502080Z +C:/Windows/SysWOW64/de-DE/cic.dll.mui;file;2560;33206;2019-12-07T14:50:48.658097Z;;;2785144255;4;0;1688849861029310;4096;8;0;0;2019-12-07T14:50:48.658097Z;2020-11-03T12:35:27.940789Z;2019-12-07T14:50:48.658097Z +C:/Windows/SysWOW64/de-DE/CloudNotifications.exe.mui;file;3072;33206;2019-12-07T14:50:56.939013Z;;;2785144255;4;0;1688849861029320;4096;8;0;0;2019-12-07T14:50:56.939013Z;2020-11-03T12:35:27.940789Z;2019-12-07T14:50:56.939013Z +C:/Windows/SysWOW64/de-DE/cmcfg32.dll.mui;file;3584;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1688849861029320;4096;8;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:27.940789Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/de-DE/cmdl32.exe.mui;file;3584;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1688849861029330;4096;8;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:27.940789Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/de-DE/cmlua.dll.mui;file;2560;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1688849861029330;4096;8;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:27.940789Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/de-DE/cmmon32.exe.mui;file;7680;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1688849861029330;4096;16;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:27.956411Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/de-DE/cmstp.exe.mui;file;19456;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1688849861029330;4096;40;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:27.956411Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/de-DE/cmstplua.dll.mui;file;2560;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1688849861029330;4096;8;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:27.956411Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/de-DE/cmutil.dll.mui;file;10240;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1688849861029330;4096;24;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:27.956411Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/de-DE/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5348024558172240;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.958283Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/de-DE/comexp.msc;file;124120;33206;2019-12-07T14:50:59.361024Z;;;2785144255;4;0;1688849861029080;4096;248;0;0;2019-12-07T14:50:59.361024Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:50:59.361024Z +C:/Windows/SysWOW64/de-DE/compmgmt.msc;file;113255;33206;2019-12-07T14:50:48.533190Z;;;2785144255;4;0;1688849861029080;4096;224;0;0;2019-12-07T14:50:48.533190Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:50:48.533190Z +C:/Windows/SysWOW64/de-DE/connect.dll.mui;file;18432;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861029350;4096;40;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:27.956411Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/de-DE/csrsrv.dll.mui;file;4608;33206;2019-12-07T14:51:00.017043Z;;;2785144255;4;0;5066549581462470;4096;16;0;0;2019-12-07T14:51:00.017043Z;2020-11-03T12:35:20.052013Z;2019-12-07T14:51:00.017043Z +C:/Windows/SysWOW64/de-DE/csrss.exe.mui;file;2560;33206;2019-12-07T14:51:00.017043Z;;;2785144255;4;0;4785074604751810;4096;8;0;0;2020-11-03T16:58:47.115225Z;2020-11-03T12:35:20.052013Z;2019-12-07T14:51:00.017043Z +C:/Windows/SysWOW64/de-DE/DevDispItemProvider.dll.mui;file;3072;33206;2019-12-07T14:50:58.564075Z;;;2785144255;4;0;1688849861029400;4096;8;0;0;2019-12-07T14:50:58.564075Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:50:58.564075Z +C:/Windows/SysWOW64/de-DE/DeviceCenter.dll.mui;file;8192;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861029400;4096;16;0;0;2020-11-03T17:11:32.066392Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/de-DE/DeviceDisplayStatusManager.dll.mui;file;2560;33206;2019-12-07T14:51:00.064009Z;;;2785144255;4;0;1688849861029400;4096;8;0;0;2019-12-07T14:51:00.064009Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:51:00.064009Z +C:/Windows/SysWOW64/de-DE/DevicePairing.dll.mui;file;11264;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861029400;4096;24;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/de-DE/DevicePairingFolder.dll.mui;file;6144;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861029400;4096;16;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/de-DE/DeviceSetupStatusProvider.dll.mui;file;4608;33206;2019-12-07T14:51:00.064009Z;;;2785144255;4;0;1688849861029410;4096;16;0;0;2019-12-07T14:51:00.064009Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:51:00.064009Z +C:/Windows/SysWOW64/de-DE/devmgmt.msc;file;145625;33206;2019-12-07T14:51:00.799050Z;;;2785144255;4;0;1688849861029080;4096;288;0;0;2019-12-07T14:51:00.799050Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:51:00.799050Z +C:/Windows/SysWOW64/de-DE/dfshim.dll.mui;file;8552;33206;2019-12-07T14:50:53.033068Z;;;2785144255;2;0;1688849861029420;4096;24;0;0;2019-12-07T14:50:53.033068Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:50:53.033068Z +C:/Windows/SysWOW64/de-DE/dialer.exe.mui;file;16384;33206;2019-12-07T14:50:49.548780Z;;;2785144255;4;0;1688849861029450;4096;32;0;0;2019-12-07T14:50:49.548780Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:50:49.548780Z +C:/Windows/SysWOW64/de-DE/diskmgmt.msc;file;47690;33206;2019-12-07T14:51:01.532988Z;;;2785144255;4;0;1688849861029080;4096;96;0;0;2019-12-07T14:51:01.532988Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:51:01.532988Z +C:/Windows/SysWOW64/de-DE/Dism.exe.mui;file;33792;33206;2019-12-07T14:50:55.252064Z;;;2785144255;4;0;80220368362967400;4096;72;0;0;2019-12-07T14:50:55.252064Z;2020-11-03T12:35:14.959454Z;2019-12-07T14:50:55.252064Z +C:/Windows/SysWOW64/de-DE/dot3api.dll.mui;file;3584;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1688849861029480;4096;8;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:27.987660Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/dot3cfg.dll.mui;file;40448;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;1688849861029480;4096;80;0;0;2019-12-07T14:50:56.986031Z;2020-11-03T12:35:27.987660Z;2019-12-07T14:50:56.986031Z +C:/Windows/SysWOW64/de-DE/dot3dlg.dll.mui;file;2560;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;1688849861029480;4096;8;0;0;2019-12-07T14:50:56.986031Z;2020-11-03T12:35:27.987660Z;2019-12-07T14:50:56.986031Z +C:/Windows/SysWOW64/de-DE/dot3gpclnt.dll.mui;file;4608;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1688849861029480;4096;16;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:27.987660Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/dot3gpui.dll.mui;file;16896;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;1688849861029490;4096;40;0;0;2019-12-07T14:50:56.986031Z;2020-11-03T12:35:27.987660Z;2019-12-07T14:50:56.986031Z +C:/Windows/SysWOW64/de-DE/dot3msm.dll.mui;file;3584;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1688849861029490;4096;8;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:27.987660Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/dot3svc.dll.mui;file;26112;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1688849861029490;4096;56;0;0;2020-11-03T12:53:58.481171Z;2020-11-03T12:35:27.987660Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/dot3ui.dll.mui;file;9216;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;1688849861029490;4096;24;0;0;2019-12-07T14:50:56.986031Z;2020-11-03T12:35:27.987660Z;2019-12-07T14:50:56.986031Z +C:/Windows/SysWOW64/de-DE/dsreg.dll.mui;file;62464;33206;2021-10-03T19:03:31.755479Z;;;2785144255;4;0;1688849861188380;4096;128;0;0;2021-12-16T12:04:49.155238Z;2021-10-03T19:51:39.720577Z;2021-10-03T19:03:31.748713Z +C:/Windows/SysWOW64/de-DE/dsregtask.dll.mui;file;3072;33206;2021-04-17T10:35:54.263590Z;;;2785144255;4;0;844424930952407;4096;8;0;0;2021-10-03T19:09:43.772284Z;2021-11-11T08:10:02.360741Z;2021-04-17T10:35:54.258086Z +C:/Windows/SysWOW64/de-DE/Dsui.dll.mui;file;4096;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861029530;4096;8;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:28.003273Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/de-DE/dtsh.dll.mui;file;5120;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861029530;4096;16;0;0;2019-12-07T14:51:00.111037Z;2020-11-03T12:35:28.003273Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/de-DE/eappgnui.dll.mui;file;6144;33206;2019-12-07T14:50:56.892046Z;;;2785144255;4;0;3377699721198570;4096;16;0;0;2019-12-07T14:50:56.892046Z;2020-11-03T12:35:20.067633Z;2019-12-07T14:50:56.892046Z +C:/Windows/SysWOW64/de-DE/eapphost.dll.mui;file;17920;33206;2019-12-07T14:50:56.892046Z;;;2785144255;4;0;3377699721198570;4096;40;0;0;2019-12-07T14:50:56.892046Z;2020-11-03T12:35:20.067633Z;2019-12-07T14:50:56.892046Z +C:/Windows/SysWOW64/de-DE/eapsimextdesktop.dll.mui;file;7680;33206;2019-12-07T14:51:00.080010Z;;;2785144255;4;0;1688849861029550;4096;16;0;0;2019-12-07T14:51:00.080010Z;2020-11-03T12:35:28.003273Z;2019-12-07T14:51:00.080010Z +C:/Windows/SysWOW64/de-DE/els.dll.mui;file;24576;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861029560;4096;48;0;0;2019-12-07T14:50:48.580090Z;2020-11-03T12:35:28.003273Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/eudcedit.exe.mui;file;16896;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861029570;4096;40;0;0;2019-12-07T14:50:48.580090Z;2020-11-03T12:35:28.003273Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/EventViewer_EventDetails.xsl;file;18408;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1125899907612350;4096;40;0;0;2019-12-07T14:50:48.580090Z;2020-11-03T12:35:28.690648Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/eventvwr.exe.mui;file;8192;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861029570;4096;16;0;0;2019-12-07T14:50:48.580090Z;2020-11-03T12:35:28.003273Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/eventvwr.msc;file;145134;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861029080;4096;288;0;0;2019-12-07T14:50:48.580090Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/explorer.exe.mui;file;16896;33206;2021-11-11T11:29:16.750578Z;;;2785144255;4;0;281474977879896;4096;40;0;0;2021-12-16T13:35:51.806443Z;2021-11-11T11:38:44.511352Z;2021-11-11T11:29:16.749622Z +C:/Windows/SysWOW64/de-DE/FirewallControlPanel.dll.mui;file;32256;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861029610;4096;64;0;0;2020-11-03T16:59:09.443665Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/fixmapi.exe.mui;file;2560;33206;2019-12-07T14:51:01.532988Z;;;2785144255;4;0;3377699721198590;4096;8;0;0;2019-12-07T14:51:01.532988Z;2020-11-03T12:35:20.067633Z;2019-12-07T14:51:01.532988Z +C:/Windows/SysWOW64/de-DE/Fondue.exe.mui;file;3584;33206;2019-12-07T14:50:48.658097Z;;;2785144255;4;0;1688849861029610;4096;8;0;0;2019-12-07T14:50:48.658097Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:50:48.658097Z +C:/Windows/SysWOW64/de-DE/fontext.dll.mui;file;15872;33206;2019-12-07T14:50:56.955083Z;;;2785144255;4;0;1688849861029610;4096;32;0;0;2019-12-07T14:50:56.955083Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:50:56.955083Z +C:/Windows/SysWOW64/de-DE/fwpuclnt.dll.mui;file;166912;33206;2019-12-07T14:50:58.549043Z;;;2785144255;4;0;3659174697909290;4096;328;0;0;2020-11-03T17:00:38.178180Z;2020-11-03T12:35:20.083256Z;2019-12-07T14:50:58.549043Z +C:/Windows/SysWOW64/de-DE/g711codc.ax.mui;file;3072;33206;2019-12-07T14:50:49.548780Z;;;2785144255;4;0;1688849861029630;4096;8;0;0;2019-12-07T14:50:49.548780Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:50:49.548780Z +C:/Windows/SysWOW64/de-DE/GamePanel.exe.mui;file;32768;33206;2019-12-07T14:50:47.642054Z;;;2785144255;4;0;1688849861029630;4096;64;0;0;2019-12-07T14:50:47.642054Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:50:47.642054Z +C:/Windows/SysWOW64/de-DE/gpapi.dll.mui;file;4608;33206;2019-12-07T14:51:00.096032Z;;;2785144255;4;0;3377699721198640;4096;16;0;0;2020-11-03T12:55:00.041260Z;2020-11-03T12:35:20.083256Z;2019-12-07T14:51:00.096032Z +C:/Windows/SysWOW64/de-DE/gpedit.dll.mui;file;67584;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861029640;4096;136;0;0;2019-12-07T14:50:48.580090Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/gpedit.msc;file;147465;33206;2019-12-07T14:50:54.564109Z;;;2785144255;4;0;1688849861029080;4096;296;0;0;2019-12-07T14:50:54.564109Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:50:54.564109Z +C:/Windows/SysWOW64/de-DE/gpprefcl.dll.mui;file;10752;33206;2019-12-07T14:50:55.174001Z;;;2785144255;4;0;1688849861029640;4096;24;0;0;2019-12-07T14:50:55.174001Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:50:55.174001Z +C:/Windows/SysWOW64/de-DE/gpscript.dll.mui;file;3072;33206;2019-12-07T14:50:55.174001Z;;;2785144255;4;0;1688849861029640;4096;8;0;0;2019-12-07T14:50:55.174001Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:50:55.174001Z +C:/Windows/SysWOW64/de-DE/gpsvc.dll.mui;file;64000;33206;2019-12-07T14:51:00.096032Z;;;2785144255;4;0;2814749767777330;4096;128;0;0;2020-11-03T16:58:54.026477Z;2020-11-03T12:35:20.083256Z;2019-12-07T14:51:00.096032Z +C:/Windows/SysWOW64/de-DE/gptext.dll.mui;file;3072;33206;2019-12-07T14:51:00.096032Z;;;2785144255;4;0;1688849861029650;4096;8;0;0;2019-12-07T14:51:00.096032Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:51:00.096032Z +C:/Windows/SysWOW64/de-DE/hcproviders.dll.mui;file;7680;33206;2019-12-07T14:51:00.096032Z;;;2785144255;4;0;1688849861029650;4096;16;0;0;2019-12-07T14:51:00.096032Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:51:00.096032Z +C:/Windows/SysWOW64/de-DE/hgcpl.dll.mui;file;59904;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861029660;4096;120;0;0;2019-12-07T14:51:00.096032Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:51:00.096032Z +C:/Windows/SysWOW64/de-DE/hh.exe.mui;file;2560;33206;2019-12-07T14:50:48.595119Z;;;2785144255;4;0;2814749767777330;4096;8;0;0;2019-12-07T14:50:48.595119Z;2020-11-03T12:35:20.083256Z;2019-12-07T14:50:48.595119Z +C:/Windows/SysWOW64/de-DE/hidphone.tsp.mui;file;4096;33206;2019-12-07T14:50:49.534512Z;;;2785144255;4;0;1688849861029660;4096;8;0;0;2019-12-07T14:50:49.534512Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:50:49.534512Z +C:/Windows/SysWOW64/de-DE/hlink.dll.mui;file;3072;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861029660;4096;8;0;0;2019-12-07T14:51:00.111037Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/de-DE/html.iec.mui;file;12288;33206;2019-12-07T14:50:48.627084Z;;;2785144255;4;0;1688849861029680;4096;24;0;0;2019-12-07T14:50:48.627084Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:50:48.627084Z +C:/Windows/SysWOW64/de-DE/iac25_32.ax.mui;file;4608;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861029690;4096;16;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.034518Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/iccvid.dll.mui;file;3584;33206;2019-12-07T14:50:51.596099Z;;;2785144255;2;0;1688849861029700;4096;8;0;0;2019-12-07T14:50:51.596099Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:50:51.596099Z +C:/Windows/SysWOW64/de-DE/icsigd.dll.mui;file;4608;33206;2019-12-07T14:50:48.595119Z;;;2785144255;4;0;1688849861029700;4096;16;0;0;2019-12-07T14:50:48.595119Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:50:48.595119Z +C:/Windows/SysWOW64/de-DE/IEAdvpack.dll.mui;file;12288;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;7318349395146450;4096;24;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:19.880178Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/iepeers.dll.mui;file;4608;33206;2019-12-07T14:50:48.610793Z;;;2785144255;4;0;1688849861029710;4096;16;0;0;2019-12-07T14:50:48.610793Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:50:48.610793Z +C:/Windows/SysWOW64/de-DE/iernonce.dll.mui;file;5632;33206;2019-12-07T14:50:48.610793Z;;;2785144255;4;0;1688849861029710;4096;16;0;0;2019-12-07T14:50:48.610793Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:50:48.610793Z +C:/Windows/SysWOW64/de-DE/iertutil.dll.mui;file;3584;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;2251799814356030;4096;8;0;0;2019-12-07T14:51:00.111037Z;2020-11-03T12:35:20.083256Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/de-DE/iesetup.dll.mui;file;72704;33206;2019-12-07T14:50:48.610793Z;;;2785144255;4;0;1688849861029710;4096;144;0;0;2019-12-07T14:50:48.610793Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:50:48.610793Z +C:/Windows/SysWOW64/de-DE/ieui.dll.mui;file;3584;33206;2019-12-07T14:50:48.627084Z;;;2785144255;4;0;1688849861029720;4096;8;0;0;2019-12-07T14:50:48.627084Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:50:48.627084Z +C:/Windows/SysWOW64/de-DE/ieunatt.exe.mui;file;2560;33206;2019-12-07T14:50:48.610793Z;;;2785144255;4;0;1688849861029720;4096;8;0;0;2019-12-07T14:50:48.610793Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:50:48.610793Z +C:/Windows/SysWOW64/de-DE/iexpress.exe.mui;file;26112;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029720;4096;56;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/ifmon.dll.mui;file;69120;33206;2019-12-07T14:50:47.689025Z;;;2785144255;4;0;2251799814356030;4096;136;0;0;2019-12-07T14:50:47.689025Z;2020-11-03T12:35:20.098877Z;2019-12-07T14:50:47.689025Z +C:/Windows/SysWOW64/de-DE/imapi.dll.mui;file;3584;33206;2019-12-07T14:50:48.610793Z;;;2785144255;4;0;2251799814356040;4096;8;0;0;2019-12-07T14:50:48.610793Z;2020-11-03T12:35:20.098877Z;2019-12-07T14:50:48.610793Z +C:/Windows/SysWOW64/de-DE/imapi2.dll.mui;file;20480;33206;2019-12-07T14:50:48.610793Z;;;2785144255;4;0;2251799814356040;4096;40;0;0;2020-11-03T17:00:19.074590Z;2020-11-03T12:35:20.098877Z;2019-12-07T14:50:48.610793Z +C:/Windows/SysWOW64/de-DE/imapi2fs.dll.mui;file;349184;33206;2021-06-10T14:01:56.080821Z;;;2785144255;4;0;1407374884515050;4096;688;0;0;2021-06-10T14:01:56.080821Z;2021-06-10T14:11:37.554825Z;2021-06-10T14:01:56.080821Z +C:/Windows/SysWOW64/de-DE/inetres.dll.mui;file;33280;33206;2019-12-07T14:50:48.642071Z;;;2785144255;4;0;2251799814356040;4096;72;0;0;2019-12-07T14:50:48.642071Z;2020-11-03T12:35:20.098877Z;2019-12-07T14:50:48.642071Z +C:/Windows/SysWOW64/de-DE/InkObjCore.dll.mui;file;5120;33206;2019-12-07T14:50:58.517035Z;;;2785144255;4;0;1688849861029740;4096;16;0;0;2019-12-07T14:50:58.517035Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:58.517035Z +C:/Windows/SysWOW64/de-DE/inseng.dll.mui;file;3584;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029750;4096;8;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/InstallService.dll.mui;file;5120;33206;2019-12-07T14:50:58.533049Z;;;2785144255;4;0;1688849861029750;4096;16;0;0;2020-11-03T12:53:58.496792Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:58.533049Z +C:/Windows/SysWOW64/de-DE/iologmsg.dll.mui;file;52224;33206;2019-12-07T14:51:00.127051Z;;;2785144255;4;0;1688849861029760;4096;104;0;0;2020-11-03T17:00:44.726470Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:51:00.127051Z +C:/Windows/SysWOW64/de-DE/ir32_32original.dll.mui;file;3584;33206;2019-12-07T14:50:51.596099Z;;;2785144255;2;0;1688849861029770;4096;8;0;0;2019-12-07T14:50:51.596099Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:51.596099Z +C:/Windows/SysWOW64/de-DE/ir41_32original.dll.mui;file;13312;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861029770;4096;32;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/ir50_32original.dll.mui;file;12800;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861029770;4096;32;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/isoburn.exe.mui;file;10240;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029770;4096;24;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/ivfsrc.ax.mui;file;11264;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861029770;4096;24;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/iyuv_32.dll.mui;file;3584;33206;2019-12-07T14:50:49.502080Z;;;2785144255;4;0;1688849861029780;4096;8;0;0;2019-12-07T14:50:49.502080Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:49.502080Z +C:/Windows/SysWOW64/de-DE/joy.cpl.mui;file;10752;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861029780;4096;24;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/jscript.dll.mui;file;15872;33206;2019-12-07T14:50:48.610793Z;;;2785144255;4;0;2533274791066710;4096;32;0;0;2019-12-07T14:50:48.610793Z;2020-11-03T12:35:20.098877Z;2019-12-07T14:50:48.610793Z +C:/Windows/SysWOW64/de-DE/jscript9.dll.mui;file;36352;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;5348024558173270;4096;72;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:20.098877Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/l2nacp.dll.mui;file;8192;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;2251799814356070;4096;16;0;0;2019-12-07T14:50:56.986031Z;2020-11-03T12:35:20.098877Z;2019-12-07T14:50:56.986031Z +C:/Windows/SysWOW64/de-DE/L2SecHC.dll.mui;file;72192;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;1688849861029790;4096;144;0;0;2019-12-07T14:50:56.986031Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:56.986031Z +C:/Windows/SysWOW64/de-DE/Licenses;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;30962247438492600;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/de-DE/Licenses/OEM;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;27303072741254100;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/de-DE/Licenses/OEM/Professional;directory;0;16822;2021-10-16T08:02:15.571552Z;;;2785144255;1;0;27303072741254100;4096;0;0;0;2021-12-16T13:36:01.156170Z;2021-10-16T08:02:15.571552Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/de-DE/Licenses/OEM/Professional/license.rtf;file;210623;33206;2021-10-16T00:21:35.216990Z;;;2785144255;2;0;281474977858119;4096;416;0;0;2021-10-16T00:21:35.223497Z;2021-10-16T08:02:15.571552Z;2021-10-16T00:21:35.216990Z +C:/Windows/SysWOW64/de-DE/Licenses/Volume;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;20829148276909000;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/de-DE/Licenses/Volume/Professional;directory;0;16822;2019-12-07T14:54:52.672191Z;;;2785144255;1;0;13792273859142600;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/de-DE/Licenses/Volume/Professional/license.rtf;file;639;33206;2019-12-07T14:50:47.596060Z;;;2785144255;2;0;10133099162353200;4096;8;0;0;2021-10-16T00:19:57.487520Z;2021-11-15T13:07:18.049433Z;2019-12-07T14:50:47.596060Z +C:/Windows/SysWOW64/de-DE/Licenses/_Default;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;25895697857700800;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/de-DE/Licenses/_Default/Professional;directory;0;16822;2021-10-16T08:02:15.571552Z;;;2785144255;1;0;51791395715081200;4096;0;0;0;2021-12-16T13:36:01.156170Z;2021-10-16T08:02:15.571552Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/de-DE/Licenses/_Default/Professional/license.rtf;file;210623;33206;2021-10-16T00:21:35.201356Z;;;2785144255;2;0;281474977858117;4096;416;0;0;2021-10-16T00:21:35.201356Z;2021-10-16T08:02:15.571552Z;2021-10-16T00:21:35.201356Z +C:/Windows/SysWOW64/de-DE/licmgr10.dll.mui;file;4096;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861029810;4096;8;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/lipeula.rtf;file;980;33206;2019-12-07T14:50:56.939013Z;;;2785144255;4;0;9007199255510580;4096;8;0;0;2019-12-07T14:50:56.939013Z;2020-11-03T12:35:28.674991Z;2019-12-07T14:50:56.939013Z +C:/Windows/SysWOW64/de-DE/listsvc.dll.mui;file;4096;33206;2019-12-07T14:50:50.829525Z;;;2785144255;4;0;1688849861029810;4096;8;0;0;2019-12-07T14:50:50.829525Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:50:50.829525Z +C:/Windows/SysWOW64/de-DE/localsec.dll.mui;file;34816;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;1688849861029810;4096;72;0;0;2019-12-07T14:50:47.705049Z;2020-11-03T12:35:28.081381Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/de-DE/LockAppBroker.dll.mui;file;4096;33206;2019-12-07T14:51:00.127051Z;;;2785144255;4;0;1688849861029820;4096;8;0;0;2019-12-07T14:51:00.127051Z;2020-11-03T12:35:28.081381Z;2019-12-07T14:51:00.127051Z +C:/Windows/SysWOW64/de-DE/lpeula.rtf;file;1052;33206;2019-12-07T14:50:56.955083Z;;;2785144255;4;0;9007199255510580;4096;8;0;0;2019-12-07T14:50:56.955083Z;2020-11-03T12:35:28.674991Z;2019-12-07T14:50:56.955083Z +C:/Windows/SysWOW64/de-DE/mapi32.dll.mui;file;53248;33206;2019-12-07T14:51:01.532988Z;;;2785144255;4;0;2251799814356080;4096;104;0;0;2019-12-07T14:51:01.532988Z;2020-11-03T12:35:20.098877Z;2019-12-07T14:51:01.532988Z +C:/Windows/SysWOW64/de-DE/mapistub.dll.mui;file;53248;33206;2019-12-07T14:51:01.532988Z;;;2785144255;4;0;8162774325279860;4096;104;0;0;2019-12-07T14:51:01.532988Z;2020-11-03T12:35:20.098877Z;2019-12-07T14:51:01.532988Z +C:/Windows/SysWOW64/de-DE/MbaeApi.dll.mui;file;6144;33206;2019-12-07T14:50:48.658097Z;;;2785144255;4;0;1688849861029840;4096;16;0;0;2019-12-07T14:50:48.658097Z;2020-11-03T12:35:28.081381Z;2019-12-07T14:50:48.658097Z +C:/Windows/SysWOW64/de-DE/mciavi32.dll.mui;file;8704;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;1688849861029850;4096;24;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:28.081381Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/de-DE/mdminst.dll.mui;file;20480;33206;2019-12-07T14:50:50.173459Z;;;2785144255;4;0;1688849861029850;4096;40;0;0;2019-12-07T14:50:50.173459Z;2020-11-03T12:35:28.081381Z;2019-12-07T14:50:50.173459Z +C:/Windows/SysWOW64/de-DE/MFC40.dll.mui;file;36864;33206;2019-12-07T14:51:02.361059Z;;;2785144255;2;0;1688849861029860;4096;72;0;0;2019-12-07T14:51:02.361059Z;2020-11-03T12:35:28.081381Z;2019-12-07T14:51:02.361059Z +C:/Windows/SysWOW64/de-DE/MFC40u.dll.mui;file;36864;33206;2019-12-07T14:51:02.361059Z;;;2785144255;2;0;1688849861029860;4096;72;0;0;2019-12-07T14:51:02.361059Z;2020-11-03T12:35:28.081381Z;2019-12-07T14:51:02.361059Z +C:/Windows/SysWOW64/de-DE/Microsoft.Uev.AppAgent.dll.mui;file;4608;33206;2019-12-07T14:50:56.049041Z;;;2785144255;4;0;1688849861029880;4096;16;0;0;2019-12-07T14:50:56.049041Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:50:56.049041Z +C:/Windows/SysWOW64/de-DE/miguiresource.dll.mui;file;3072;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861029880;4096;8;0;0;2020-11-03T16:58:52.880726Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/mimofcodec.dll.mui;file;10752;33206;2019-12-07T14:51:01.579981Z;;;2785144255;4;0;1688849860934870;4096;24;0;0;2019-12-07T14:51:01.579981Z;2020-11-03T12:35:20.130158Z;2019-12-07T14:51:01.579981Z +C:/Windows/SysWOW64/de-DE/miutils.dll.mui;file;18944;33206;2019-12-07T14:51:01.579981Z;;;2785144255;4;0;1688849860934880;4096;40;0;0;2019-12-07T14:51:01.579981Z;2020-11-03T12:35:20.130158Z;2019-12-07T14:51:01.579981Z +C:/Windows/SysWOW64/de-DE/mmc.exe.mui;file;68096;33206;2019-12-07T14:50:48.658097Z;;;2785144255;4;0;1688849861029890;4096;136;0;0;2019-12-07T14:50:48.658097Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:50:48.658097Z +C:/Windows/SysWOW64/de-DE/mmcbase.dll.mui;file;51712;33206;2019-12-07T14:50:48.658097Z;;;2785144255;4;0;1688849861029890;4096;104;0;0;2019-12-07T14:50:48.658097Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:50:48.658097Z +C:/Windows/SysWOW64/de-DE/mmcndmgr.dll.mui;file;59392;33206;2019-12-07T14:50:48.658097Z;;;2785144255;4;0;1688849861029890;4096;120;0;0;2019-12-07T14:50:48.658097Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:50:48.658097Z +C:/Windows/SysWOW64/de-DE/mmcshext.dll.mui;file;2560;33206;2019-12-07T14:50:48.658097Z;;;2785144255;4;0;1688849861029890;4096;8;0;0;2019-12-07T14:50:48.658097Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:50:48.658097Z +C:/Windows/SysWOW64/de-DE/modemui.dll.mui;file;44032;33206;2019-12-07T14:50:50.173459Z;;;2785144255;4;0;1688849861029900;4096;88;0;0;2019-12-07T14:50:50.173459Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:50:50.173459Z +C:/Windows/SysWOW64/de-DE/mscpxl32.dll.mui;file;4608;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029920;4096;16;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/msdrm.dll.mui;file;5632;33206;2019-12-07T14:50:56.924033Z;;;2785144255;4;0;1688849861029930;4096;16;0;0;2019-12-07T14:50:56.924033Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:50:56.924033Z +C:/Windows/SysWOW64/de-DE/msfeedsbs.dll.mui;file;2560;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029940;4096;8;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/msftedit.dll.mui;file;3072;33206;2019-12-07T14:50:58.486027Z;;;2785144255;4;0;2533274791066910;4096;8;0;0;2019-12-07T14:50:58.486027Z;2020-11-03T12:35:20.145740Z;2019-12-07T14:50:58.486027Z +C:/Windows/SysWOW64/de-DE/mshta.exe.mui;file;2560;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1125899907513630;4096;8;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:20.145740Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/mshtmler.dll.mui;file;46080;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861029940;4096;96;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/msjint40.dll.mui;file;167424;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029950;4096;328;0;0;2021-03-07T03:14:14.091659Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/msmpeg2enc.dll.mui;file;8704;33206;2019-12-07T14:50:51.658084Z;;;2785144255;2;0;1688849861029960;4096;24;0;0;2019-12-07T14:50:51.658084Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:50:51.658084Z +C:/Windows/SysWOW64/de-DE/msoert2.dll.mui;file;3584;33206;2019-12-07T14:50:48.642071Z;;;2785144255;4;0;1125899907513710;4096;8;0;0;2019-12-07T14:50:48.642071Z;2020-11-03T12:35:20.161361Z;2019-12-07T14:50:48.642071Z +C:/Windows/SysWOW64/de-DE/msorc32r.dll.mui;file;15360;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029960;4096;32;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/mspaint.exe.mui;file;62976;33206;2019-12-07T03:54:00Z;;;2785144255;4;0;12384898975971000;4096;128;0;0;2020-11-03T12:57:23.124802Z;2020-11-03T12:35:25.253918Z;2019-12-07T14:53:46.301047Z +C:/Windows/SysWOW64/de-DE/mstask.dll.mui;file;48640;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861029970;4096;96;0;0;2019-12-07T14:51:01.504910Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/de-DE/msvfw32.dll.mui;file;8192;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;1688849861029980;4096;16;0;0;2020-11-03T17:07:02.833588Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/de-DE/msvidc32.dll.mui;file;3584;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;1688849861029980;4096;8;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/de-DE/mswstr10.dll.mui;file;3584;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029980;4096;8;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/msxml3r.dll.mui;file;50688;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1125899907513740;4096;104;0;0;2020-11-03T13:08:05.433475Z;2020-11-03T12:35:20.176984Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/de-DE/msxml6r.dll.mui;file;92672;33206;2019-12-07T14:50:58.580014Z;;;2785144255;4;0;1125899907513740;4096;184;0;0;2020-11-04T08:55:11.081814Z;2020-11-03T12:35:20.176984Z;2019-12-07T14:50:58.580014Z +C:/Windows/SysWOW64/de-DE/mycomput.dll.mui;file;9216;33206;2019-12-07T14:50:48.533190Z;;;2785144255;4;0;1688849861029990;4096;24;0;0;2020-11-03T16:58:52.206759Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:50:48.533190Z +C:/Windows/SysWOW64/de-DE/NcdProp.dll.mui;file;4608;33206;2019-12-07T14:50:48.674047Z;;;2785144255;4;0;1688849861030000;4096;16;0;0;2019-12-07T14:50:48.674047Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:50:48.674047Z +C:/Windows/SysWOW64/de-DE/ncpa.cpl.mui;file;2560;33206;2019-12-07T14:51:00.767087Z;;;2785144255;4;0;1125899907513750;4096;8;0;0;2019-12-07T14:51:00.767087Z;2020-11-03T12:35:20.176984Z;2019-12-07T14:51:00.767087Z +C:/Windows/SysWOW64/de-DE/netcenter.dll.mui;file;8192;33206;2019-12-07T14:50:48.658097Z;;;2785144255;4;0;1688849861030010;4096;16;0;0;2020-11-03T17:00:33.981202Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:50:48.658097Z +C:/Windows/SysWOW64/de-DE/netdiagfx.dll.mui;file;14336;33206;2019-12-07T14:50:50.127091Z;;;2785144255;4;0;1688849861030010;4096;32;0;0;2019-12-07T14:50:50.127091Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:50:50.127091Z +C:/Windows/SysWOW64/de-DE/neth.dll.mui;file;84480;33206;2019-12-07T14:50:47.674031Z;;;2785144255;4;0;1125899907513760;4096;168;0;0;2019-12-07T14:50:47.674031Z;2020-11-03T12:35:20.176984Z;2019-12-07T14:50:47.674031Z +C:/Windows/SysWOW64/de-DE/netid.dll.mui;file;46592;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861030010;4096;96;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/de-DE/netsh.exe.mui;file;22016;33206;2019-12-07T14:50:47.689025Z;;;2785144255;4;0;1125899907513770;4096;48;0;0;2019-12-07T14:50:47.674031Z;2020-11-03T12:35:20.192605Z;2019-12-07T14:50:47.674031Z +C:/Windows/SysWOW64/de-DE/netshell.dll.mui;file;73216;33206;2019-12-07T14:51:00.767087Z;;;2785144255;4;0;1125899907513770;4096;144;0;0;2019-12-07T14:51:00.767087Z;2020-11-03T12:35:20.192605Z;2019-12-07T14:51:00.767087Z +C:/Windows/SysWOW64/de-DE/NetworkExplorer.dll.mui;file;6656;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861030030;4096;16;0;0;2020-11-03T16:59:00.420160Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/de-DE/NetworkItemFactory.dll.mui;file;2560;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861030030;4096;8;0;0;2019-12-07T14:51:00.111037Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/de-DE/nshwfp.dll.mui;file;76288;33206;2019-12-07T14:50:58.564075Z;;;2785144255;4;0;1125899907513780;4096;152;0;0;2019-12-07T14:50:58.549043Z;2020-11-03T12:35:20.192605Z;2019-12-07T14:50:58.549043Z +C:/Windows/SysWOW64/de-DE/ntdll.dll.mui;file;543232;33206;2021-06-10T14:01:56.212300Z;;;2785144255;4;0;281474977766242;4096;1064;0;0;2021-12-16T12:04:00.646855Z;2021-06-10T14:11:37.554825Z;2021-06-10T14:01:56.196678Z +C:/Windows/SysWOW64/de-DE/ntlanman.dll.mui;file;3584;33206;2019-12-07T14:50:55.267062Z;;;2785144255;4;0;1125899907513790;4096;8;0;0;2019-12-07T14:50:55.267062Z;2020-11-03T12:35:20.411302Z;2019-12-07T14:50:55.267062Z +C:/Windows/SysWOW64/de-DE/objsel.dll.mui;file;24064;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;1688849861030070;4096;48;0;0;2019-12-07T14:50:47.705049Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/de-DE/occache.dll.mui;file;11264;33206;2019-12-07T14:50:48.627084Z;;;2785144255;4;0;1688849861030070;4096;24;0;0;2019-12-07T14:50:48.627084Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:50:48.627084Z +C:/Windows/SysWOW64/de-DE/odbcconf.exe.mui;file;5632;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861030070;4096;16;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/odbcji32.dll.mui;file;43008;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861030070;4096;88;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/olecli32.dll.mui;file;3584;33206;2019-12-07T14:51:02.283025Z;;;2785144255;2;0;1688849861030080;4096;8;0;0;2019-12-07T14:51:02.283025Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:51:02.283025Z +C:/Windows/SysWOW64/de-DE/onex.dll.mui;file;21504;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1125899907513800;4096;48;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:20.411302Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/onexui.dll.mui;file;5632;33206;2019-12-07T14:51:01.626390Z;;;2785144255;2;0;1688849861030080;4096;16;0;0;2019-12-07T14:51:01.626390Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:51:01.626390Z +C:/Windows/SysWOW64/de-DE/p2p.dll.mui;file;22528;33206;2019-12-07T14:50:50.251406Z;;;2785144255;4;0;1688849861030090;4096;48;0;0;2019-12-07T14:50:50.251406Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:50:50.251406Z +C:/Windows/SysWOW64/de-DE/p2pnetsh.dll.mui;file;46592;33206;2019-12-07T14:50:51.611068Z;;;2785144255;2;0;1688849861030090;4096;96;0;0;2019-12-07T14:50:51.611068Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:50:51.611068Z +C:/Windows/SysWOW64/de-DE/packager.dll.mui;file;6656;33206;2019-12-07T14:50:48.533190Z;;;2785144255;4;0;1688849861030100;4096;16;0;0;2019-12-07T14:50:48.533190Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:50:48.533190Z +C:/Windows/SysWOW64/de-DE/pcaui.dll.mui;file;16384;33206;2019-12-07T14:50:59.314065Z;;;2785144255;4;0;1688849861030110;4096;32;0;0;2019-12-07T14:50:59.314065Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:59.314065Z +C:/Windows/SysWOW64/de-DE/PeerDist.dll.mui;file;29696;33206;2019-12-07T14:50:55.189542Z;;;2785144255;4;0;1688849861030110;4096;64;0;0;2019-12-07T14:50:55.189542Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:55.189542Z +C:/Windows/SysWOW64/de-DE/PeerDistSh.dll.mui;file;53248;33206;2019-12-07T14:50:55.189542Z;;;2785144255;4;0;1688849861030120;4096;104;0;0;2020-11-03T12:54:31.567155Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:55.189542Z +C:/Windows/SysWOW64/de-DE/perfhost.exe.mui;file;5120;33206;2019-12-07T14:51:02.298975Z;;;2785144255;2;0;1688849861030120;4096;16;0;0;2021-12-16T12:05:58.610315Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:51:02.298975Z +C:/Windows/SysWOW64/de-DE/PhoneUtilRes.dll.mui;file;4096;33206;2019-12-07T14:50:47.658042Z;;;2785144255;4;0;1688849861030130;4096;8;0;0;2019-12-07T14:50:47.658042Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:47.658042Z +C:/Windows/SysWOW64/de-DE/PhotoScreensaver.scr.mui;file;7680;33206;2019-12-07T14:50:54.471021Z;;;2785144255;2;0;1688849861030130;4096;16;0;0;2019-12-07T14:50:54.471021Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:54.471021Z +C:/Windows/SysWOW64/de-DE/PlayToStatusProvider.dll.mui;file;2560;33206;2019-12-07T14:50:48.564418Z;;;2785144255;2;0;1688849861030140;4096;8;0;0;2019-12-07T14:50:48.564418Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:48.564418Z +C:/Windows/SysWOW64/de-DE/pnrpnsp.dll.mui;file;2560;33206;2019-12-07T14:50:50.251406Z;;;2785144255;4;0;1688849861030150;4096;8;0;0;2020-11-03T12:59:14.530842Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:50.251406Z +C:/Windows/SysWOW64/de-DE/portabledevicestatus.dll.mui;file;4096;33206;2019-12-07T14:50:51.674087Z;;;2785144255;4;0;1688849861030150;4096;8;0;0;2019-12-07T14:50:51.674087Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:51.674087Z +C:/Windows/SysWOW64/de-DE/PortableDeviceSyncProvider.dll.mui;file;7680;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861030160;4096;16;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/de-DE/pots.dll.mui;file;3584;33206;2019-12-07T14:50:49.548780Z;;;2785144255;4;0;1688849861030160;4096;8;0;0;2019-12-07T14:50:49.548780Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:49.548780Z +C:/Windows/SysWOW64/de-DE/provplatformdesktop.dll.mui;file;6656;33206;2019-12-07T14:50:50.251406Z;;;2785144255;4;0;1688849861030180;4096;16;0;0;2019-12-07T14:50:50.251406Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:50.251406Z +C:/Windows/SysWOW64/de-DE/ProximityCommon.dll.mui;file;6656;33206;2019-12-07T14:50:50.251406Z;;;2785144255;4;0;1688849861030190;4096;16;0;0;2019-12-07T14:50:50.251406Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:50.251406Z +C:/Windows/SysWOW64/de-DE/pshed.dll.mui;file;9728;33206;2019-12-07T14:51:00.017043Z;;;2785144255;4;0;1125899907513830;4096;24;0;0;2019-12-07T14:51:00.017043Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:51:00.017043Z +C:/Windows/SysWOW64/de-DE/PSModuleDiscoveryProvider.dll.mui;file;9216;33206;2019-12-07T14:51:01.579981Z;;;2785144255;4;0;1125899907513830;4096;24;0;0;2019-12-07T14:51:01.579981Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:51:01.579981Z +C:/Windows/SysWOW64/de-DE/pwrshplugin.dll.mui;file;4608;33206;2019-12-07T14:50:49.377151Z;;;2785144255;4;0;1688849861030200;4096;16;0;0;2019-12-07T14:50:49.377151Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:49.377151Z +C:/Windows/SysWOW64/de-DE/qdv.dll.mui;file;4608;33206;2019-12-07T14:50:49.502080Z;;;2785144255;4;0;1688849861030210;4096;16;0;0;2019-12-07T14:50:49.502080Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:49.502080Z +C:/Windows/SysWOW64/de-DE/qdvd.dll.mui;file;10240;33206;2019-12-07T14:50:49.502080Z;;;2785144255;4;0;1688849861030210;4096;24;0;0;2019-12-07T14:50:49.502080Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:49.502080Z +C:/Windows/SysWOW64/de-DE/qedit.dll.mui;file;16384;33206;2019-12-07T14:50:50.189145Z;;;2785144255;4;0;1688849861030210;4096;32;0;0;2019-12-07T14:50:50.189145Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:50.189145Z +C:/Windows/SysWOW64/de-DE/quickassist.exe.mui;file;4096;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619350;4096;8;0;0;2021-12-16T09:35:25.086435Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/de-DE/raschap.dll.mui;file;5120;33206;2019-12-07T14:51:00.814028Z;;;2785144255;4;0;1125899907513840;4096;16;0;0;2019-12-07T14:51:00.814028Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:51:00.814028Z +C:/Windows/SysWOW64/de-DE/rasgcw.dll.mui;file;50688;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861030230;4096;104;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:28.190730Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/de-DE/rasplap.dll.mui;file;4608;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1688849861030240;4096;16;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:28.190730Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/de-DE/rastls.dll.mui;file;27648;33206;2019-12-07T14:51:00.814028Z;;;2785144255;4;0;1125899907513850;4096;56;0;0;2019-12-07T14:51:00.814028Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:51:00.814028Z +C:/Windows/SysWOW64/de-DE/rastlsext.dll.mui;file;25600;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1125899907513850;4096;56;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/de-DE/rdvgogl32.dll.mui;file;4096;33206;2021-04-17T10:35:54.177608Z;;;2785144255;2;0;844424930952400;4096;8;0;0;2021-04-17T16:46:43.342569Z;2021-04-17T16:46:43.342569Z;2021-04-17T10:35:54.176610Z +C:/Windows/SysWOW64/de-DE/reg.exe.mui;file;47616;33206;2019-12-07T14:50:47.689025Z;;;2785144255;4;0;1125899907513860;4096;96;0;0;2019-12-07T14:50:47.689025Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:50:47.689025Z +C:/Windows/SysWOW64/de-DE/regedit.exe.mui;file;52736;33206;2019-12-07T14:50:49.486116Z;;;2785144255;4;0;1125899907513860;4096;104;0;0;2021-10-15T21:37:02.827238Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:50:49.486116Z +C:/Windows/SysWOW64/de-DE/register-cimprovider.exe.mui;file;10240;33206;2019-12-07T14:51:01.579981Z;;;2785144255;4;0;1407374884224510;4096;24;0;0;2019-12-07T14:51:01.579981Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:51:01.579981Z +C:/Windows/SysWOW64/de-DE/RemoveDeviceContextHandler.dll.mui;file;3584;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861030270;4096;8;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:28.190730Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/de-DE/RpcNs4.dll.mui;file;4096;33206;2019-12-07T14:50:59.361024Z;;;2785144255;4;0;1688849861030280;4096;8;0;0;2019-12-07T14:50:59.361024Z;2020-11-03T12:35:28.206351Z;2019-12-07T14:50:59.361024Z +C:/Windows/SysWOW64/de-DE/rpcnsh.dll.mui;file;17920;33206;2019-12-07T14:50:59.361024Z;;;2785144255;4;0;1688849861030290;4096;40;0;0;2019-12-07T14:50:59.361024Z;2020-11-03T12:35:28.206351Z;2019-12-07T14:50:59.361024Z +C:/Windows/SysWOW64/de-DE/rpcping.exe.mui;file;50688;33206;2019-12-07T14:50:59.361024Z;;;2785144255;4;0;1688849861030290;4096;104;0;0;2019-12-07T14:50:59.361024Z;2020-11-03T12:35:28.206351Z;2019-12-07T14:50:59.361024Z +C:/Windows/SysWOW64/de-DE/rsop.msc;file;43569;33206;2019-12-07T14:50:54.564109Z;;;2785144255;4;0;1688849861029090;4096;88;0;0;2019-12-07T14:50:54.564109Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:50:54.564109Z +C:/Windows/SysWOW64/de-DE/rstrui.exe.mui;file;38400;33206;2019-12-07T14:50:50.829525Z;;;2785144255;4;0;1125899907513870;4096;80;0;0;2019-12-07T14:50:50.829525Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:50:50.829525Z +C:/Windows/SysWOW64/de-DE/sc.exe.mui;file;79872;33206;2019-12-07T14:50:47.689025Z;;;2785144255;4;0;1688849861030300;4096;160;0;0;2020-11-03T17:13:48.251352Z;2020-11-03T12:35:28.315701Z;2019-12-07T14:50:47.689025Z +C:/Windows/SysWOW64/de-DE/schedsvc.dll.mui;file;64512;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861030310;4096;128;0;0;2020-11-03T12:53:58.528035Z;2020-11-03T12:35:28.315701Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/de-DE/schtasks.exe.mui;file;93184;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861030310;4096;184;0;0;2020-11-03T12:58:00.070168Z;2020-11-03T12:35:28.315701Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/de-DE/scrnsave.scr.mui;file;3072;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1688849861030320;4096;8;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:28.315701Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/scrptadm.dll.mui;file;26112;33206;2019-12-07T14:50:54.564109Z;;;2785144255;4;0;1688849861030320;4096;56;0;0;2019-12-07T14:50:54.564109Z;2020-11-03T12:35:28.315701Z;2019-12-07T14:50:54.564109Z +C:/Windows/SysWOW64/de-DE/searchfolder.dll.mui;file;153088;33206;2019-12-07T14:51:00.861041Z;;;2785144255;4;0;1688849861030330;4096;304;0;0;2020-11-03T13:44:51.965023Z;2020-11-03T12:35:28.315701Z;2019-12-07T14:51:00.845397Z +C:/Windows/SysWOW64/de-DE/secinit.exe.mui;file;2560;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861030340;4096;8;0;0;2019-12-07T14:51:00.111037Z;2020-11-03T12:35:28.315701Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/de-DE/sendmail.dll.mui;file;5632;33206;2019-12-07T14:50:48.627084Z;;;2785144255;4;0;1688849861030340;4096;16;0;0;2019-12-07T14:50:48.627084Z;2020-11-03T12:35:28.331322Z;2019-12-07T14:50:48.627084Z +C:/Windows/SysWOW64/de-DE/serialui.dll.mui;file;6144;33206;2019-12-07T14:50:50.173459Z;;;2785144255;4;0;1688849861030350;4096;16;0;0;2019-12-07T14:50:50.173459Z;2020-11-03T12:35:28.331322Z;2019-12-07T14:50:50.173459Z +C:/Windows/SysWOW64/de-DE/serwvdrv.dll.mui;file;3072;33206;2019-12-07T14:50:50.173459Z;;;2785144255;4;0;1688849861030370;4096;8;0;0;2019-12-07T14:50:50.173459Z;2020-11-03T12:35:28.331322Z;2019-12-07T14:50:50.173459Z +C:/Windows/SysWOW64/de-DE/setup16.exe.mui;file;7168;33206;2019-12-07T14:51:02.392335Z;;;2785144255;2;0;1688849861030390;4096;16;0;0;2019-12-07T14:51:02.392335Z;2020-11-03T12:35:28.331322Z;2019-12-07T14:51:02.392335Z +C:/Windows/SysWOW64/de-DE/shutdown.exe.mui;file;12288;33206;2019-12-07T14:51:00.096032Z;;;2785144255;4;0;1688849861030410;4096;24;0;0;2019-12-07T14:51:00.096032Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:51:00.096032Z +C:/Windows/SysWOW64/de-DE/shwebsvc.dll.mui;file;25600;33206;2019-12-07T14:51:00.877058Z;;;2785144255;4;0;1688849861030420;4096;56;0;0;2019-12-07T14:51:00.877058Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:51:00.877058Z +C:/Windows/SysWOW64/de-DE/SimAuth.dll.mui;file;9216;33206;2019-12-07T14:50:56.892046Z;;;2785144255;4;0;1688849861030420;4096;24;0;0;2019-12-07T14:50:56.892046Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:50:56.892046Z +C:/Windows/SysWOW64/de-DE/slc.dll.mui;file;91136;33206;2019-12-07T14:51:02.346023Z;;;2785144255;2;0;1125899907513900;4096;184;0;0;2020-11-03T17:00:44.728464Z;2020-11-03T12:35:20.442546Z;2019-12-07T14:51:02.346023Z +C:/Windows/SysWOW64/de-DE/SMBHelperClass.dll.mui;file;8704;33206;2019-12-07T14:51:00.845397Z;;;2785144255;4;0;1688849861030430;4096;24;0;0;2019-12-07T14:51:00.845397Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:51:00.845397Z +C:/Windows/SysWOW64/de-DE/sndvol.exe.mui;file;5632;33206;2019-12-07T14:50:59.330056Z;;;2785144255;4;0;1688849861030430;4096;16;0;0;2019-12-07T14:50:59.330056Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:50:59.330056Z +C:/Windows/SysWOW64/de-DE/sndvolsso.dll.mui;file;7168;33206;2019-12-07T14:50:59.330056Z;;;2785144255;4;0;1688849861030430;4096;16;0;0;2019-12-07T14:50:59.330056Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:50:59.330056Z +C:/Windows/SysWOW64/de-DE/spp.dll.mui;file;7680;33206;2019-12-07T14:50:47.674031Z;;;2785144255;4;0;1125899907513910;4096;16;0;0;2019-12-07T14:50:47.674031Z;2020-11-03T12:35:20.442546Z;2019-12-07T14:50:47.674031Z +C:/Windows/SysWOW64/de-DE/sppc.dll.mui;file;92160;33206;2019-12-07T14:51:02.346023Z;;;2785144255;2;0;1125899907513910;4096;184;0;0;2020-11-03T17:00:44.729480Z;2020-11-03T12:35:20.442546Z;2019-12-07T14:51:02.346023Z +C:/Windows/SysWOW64/de-DE/srcore.dll.mui;file;14848;33206;2019-12-07T14:50:50.829525Z;;;2785144255;4;0;1125899907513910;4096;32;0;0;2019-12-07T14:50:50.829525Z;2020-11-03T12:35:20.442546Z;2019-12-07T14:50:50.829525Z +C:/Windows/SysWOW64/de-DE/srm.dll.mui;file;175104;33206;2019-12-07T14:50:55.299074Z;;;2785144255;2;0;1688849861030460;4096;344;0;0;2019-12-07T14:50:55.299074Z;2020-11-03T12:35:28.362564Z;2019-12-07T14:50:55.299074Z +C:/Windows/SysWOW64/de-DE/srmshell.dll.mui;file;8192;33206;2019-12-07T14:50:55.299074Z;;;2785144255;2;0;1688849861030460;4096;16;0;0;2019-12-07T14:50:55.299074Z;2020-11-03T12:35:28.362564Z;2019-12-07T14:50:55.299074Z +C:/Windows/SysWOW64/de-DE/Startupscan.dll.mui;file;3072;33206;2019-12-07T14:51:00.096032Z;;;2785144255;4;0;1688849861030480;4096;8;0;0;2019-12-07T14:51:00.096032Z;2020-11-03T12:35:28.362564Z;2019-12-07T14:51:00.096032Z +C:/Windows/SysWOW64/de-DE/stobject.dll.mui;file;8704;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1688849861030480;4096;24;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:28.362564Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/StorageContextHandler.dll.mui;file;3072;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861030490;4096;8;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:28.362564Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/de-DE/svchost.exe.mui;file;2560;33206;2019-12-07T14:50:59.361024Z;;;2785144255;4;0;1125899907513920;4096;8;0;0;2020-11-04T08:47:26.487709Z;2020-11-03T12:35:20.442546Z;2019-12-07T14:50:59.361024Z +C:/Windows/SysWOW64/de-DE/sxproxy.dll.mui;file;5632;33206;2019-12-07T14:50:47.658042Z;;;2785144255;4;0;1125899907513920;4096;16;0;0;2019-12-07T14:50:47.658042Z;2020-11-03T12:35:20.442546Z;2019-12-07T14:50:47.658042Z +C:/Windows/SysWOW64/de-DE/sxs.dll.mui;file;30208;33206;2019-12-07T14:51:02.346023Z;;;2785144255;2;0;1125899907513920;4096;64;0;0;2019-12-07T14:51:02.346023Z;2020-11-03T12:35:20.442546Z;2019-12-07T14:51:02.346023Z +C:/Windows/SysWOW64/de-DE/sxstrace.exe.mui;file;19456;33206;2019-12-07T14:51:02.346023Z;;;2785144255;2;0;1125899907513930;4096;40;0;0;2019-12-07T14:51:02.346023Z;2020-11-03T12:35:20.458168Z;2019-12-07T14:51:02.346023Z +C:/Windows/SysWOW64/de-DE/SyncRes.dll.mui;file;34304;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648550;4096;72;0;0;2019-12-07T14:53:37.828815Z;2020-11-03T12:35:52.419930Z;2019-12-07T14:53:37.828815Z +C:/Windows/SysWOW64/de-DE/sysdm.cpl.mui;file;38400;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;1688849861030500;4096;80;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:28.362564Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/de-DE/systeminfo.exe.mui;file;15872;33206;2019-12-07T14:50:50.173459Z;;;2785144255;4;0;1688849861030500;4096;32;0;0;2019-12-07T14:50:50.173459Z;2020-11-03T12:35:28.362564Z;2019-12-07T14:50:50.173459Z +C:/Windows/SysWOW64/de-DE/tapi3.dll.mui;file;13312;33206;2019-12-07T14:50:49.534512Z;;;2785144255;4;0;1688849861030520;4096;32;0;0;2020-11-03T17:00:44.731865Z;2020-11-03T12:35:28.378187Z;2019-12-07T14:50:49.534512Z +C:/Windows/SysWOW64/de-DE/tapi32.dll.mui;file;2560;33206;2019-12-07T14:50:49.534512Z;;;2785144255;4;0;1125899907513930;4096;8;0;0;2019-12-07T14:50:49.534512Z;2020-11-03T12:35:20.458168Z;2019-12-07T14:50:49.534512Z +C:/Windows/SysWOW64/de-DE/tapisrv.dll.mui;file;27136;33206;2019-12-07T14:50:49.548780Z;;;2785144255;4;0;1688849861030520;4096;56;0;0;2020-11-03T12:53:58.559278Z;2020-11-03T12:35:28.378187Z;2019-12-07T14:50:49.548780Z +C:/Windows/SysWOW64/de-DE/tapiui.dll.mui;file;51200;33206;2019-12-07T14:50:49.548780Z;;;2785144255;4;0;1688849861030520;4096;104;0;0;2019-12-07T14:50:49.548780Z;2020-11-03T12:35:28.378187Z;2019-12-07T14:50:49.548780Z +C:/Windows/SysWOW64/de-DE/taskcomp.dll.mui;file;15360;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861030530;4096;32;0;0;2019-12-07T14:51:01.504910Z;2020-11-03T12:35:28.378187Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/de-DE/taskkill.exe.mui;file;18432;33206;2019-12-07T14:50:50.173459Z;;;2785144255;4;0;1688849861030530;4096;40;0;0;2020-11-03T12:58:00.086850Z;2020-11-03T12:35:28.393808Z;2019-12-07T14:50:50.173459Z +C:/Windows/SysWOW64/de-DE/tasklist.exe.mui;file;17408;33206;2019-12-07T14:50:50.173459Z;;;2785144255;4;0;1688849861030530;4096;40;0;0;2019-12-07T14:50:50.173459Z;2020-11-03T12:35:28.393808Z;2019-12-07T14:50:50.173459Z +C:/Windows/SysWOW64/de-DE/taskschd.msc;file;145061;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861029090;4096;288;0;0;2019-12-07T14:51:01.504910Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/de-DE/tcmsetup.exe.mui;file;7168;33206;2019-12-07T14:50:49.534512Z;;;2785144255;4;0;1688849861030530;4096;16;0;0;2019-12-07T14:50:49.534512Z;2020-11-03T12:35:28.393808Z;2019-12-07T14:50:49.534512Z +C:/Windows/SysWOW64/de-DE/telephon.cpl.mui;file;3072;33206;2019-12-07T14:50:49.548780Z;;;2785144255;4;0;1688849861030530;4096;8;0;0;2020-11-03T16:59:09.497242Z;2020-11-03T12:35:28.393808Z;2019-12-07T14:50:49.548780Z +C:/Windows/SysWOW64/de-DE/TetheringService.dll.mui;file;4608;33206;2019-12-07T14:50:56.111019Z;;;2785144255;4;0;1688849861030540;4096;16;0;0;2020-11-03T12:53:58.481171Z;2020-11-03T12:35:28.393808Z;2019-12-07T14:50:56.111019Z +C:/Windows/SysWOW64/de-DE/themecpl.dll.mui;file;17408;33206;2019-12-07T14:50:49.548780Z;;;2785144255;4;0;1688849861030540;4096;40;0;0;2019-12-07T14:50:49.548780Z;2020-11-03T12:35:28.409429Z;2019-12-07T14:50:49.548780Z +C:/Windows/SysWOW64/de-DE/themeui.dll.mui;file;11776;33206;2019-12-07T14:51:01.517002Z;;;2785144255;4;0;1688849861030550;4096;24;0;0;2019-12-07T14:51:01.517002Z;2020-11-03T12:35:28.409429Z;2019-12-07T14:51:01.517002Z +C:/Windows/SysWOW64/de-DE/tsgqec.dll.mui;file;3072;33206;2019-12-07T14:50:50.158109Z;;;2785144255;4;0;1688849861030580;4096;8;0;0;2019-12-07T14:50:50.158109Z;2020-11-03T12:35:28.409429Z;2019-12-07T14:50:50.158109Z +C:/Windows/SysWOW64/de-DE/TtlsAuth.dll.mui;file;4608;33206;2019-12-07T14:50:56.892046Z;;;2785144255;4;0;1125899907513950;4096;16;0;0;2019-12-07T14:50:56.892046Z;2020-11-03T12:35:20.458168Z;2019-12-07T14:50:56.892046Z +C:/Windows/SysWOW64/de-DE/TtlsCfg.dll.mui;file;4608;33206;2019-12-07T14:50:56.892046Z;;;2785144255;4;0;1125899907513950;4096;16;0;0;2019-12-07T14:50:56.892046Z;2020-11-03T12:35:20.458168Z;2019-12-07T14:50:56.892046Z +C:/Windows/SysWOW64/de-DE/twext.dll.mui;file;6656;33206;2019-12-07T14:51:00.892025Z;;;2785144255;4;0;1688849861030590;4096;16;0;0;2020-11-03T17:02:01.229676Z;2020-11-03T12:35:28.409429Z;2019-12-07T14:51:00.877058Z +C:/Windows/SysWOW64/de-DE/twinapi.dll.mui;file;5120;33206;2019-12-07T14:51:01.517002Z;;;2785144255;4;0;1688849861030590;4096;16;0;0;2019-12-07T14:51:01.517002Z;2020-11-03T12:35:28.409429Z;2019-12-07T14:51:01.517002Z +C:/Windows/SysWOW64/de-DE/twinui.appcore.dll.mui;file;55296;33206;2019-12-07T14:50:58.486027Z;;;2785144255;4;0;1688849861030590;4096;112;0;0;2019-12-07T14:50:58.486027Z;2020-11-03T12:35:28.409429Z;2019-12-07T14:50:58.486027Z +C:/Windows/SysWOW64/de-DE/uicom.dll.mui;file;2560;33206;2019-12-07T14:50:50.173459Z;;;2785144255;4;0;1688849861030610;4096;8;0;0;2019-12-07T14:50:50.173459Z;2020-11-03T12:35:28.425050Z;2019-12-07T14:50:50.173459Z +C:/Windows/SysWOW64/de-DE/UIRibbon.dll.mui;file;37888;33206;2019-12-07T14:51:00.845397Z;;;2785144255;4;0;1688849861030610;4096;80;0;0;2019-12-07T14:51:00.845397Z;2020-11-03T12:35:28.425050Z;2019-12-07T14:51:00.845397Z +C:/Windows/SysWOW64/de-DE/urlmon.dll.mui;file;57856;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1125899907513960;4096;120;0;0;2019-12-07T14:51:00.111037Z;2020-11-03T12:35:20.458168Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/de-DE/user32.dll.mui;file;19968;33206;2019-12-07T14:50:58.580014Z;;;2785144255;4;0;1125899907513970;4096;40;0;0;2020-11-03T16:58:22.443432Z;2020-11-03T12:35:20.458168Z;2019-12-07T14:50:58.580014Z +C:/Windows/SysWOW64/de-DE/UserDeviceRegistration.dll.mui;file;3072;33206;2021-04-17T10:35:54.244015Z;;;2785144255;4;0;844424930952405;4096;8;0;0;2021-10-03T19:09:43.766984Z;2021-11-11T08:10:02.368694Z;2021-04-17T10:35:54.238037Z +C:/Windows/SysWOW64/de-DE/UserDeviceRegistration.Ngc.dll.mui;file;3072;33206;2021-04-17T10:35:54.226096Z;;;2785144255;4;0;844424930952404;4096;8;0;0;2021-10-03T19:09:43.761755Z;2021-11-11T08:10:02.368694Z;2021-04-17T10:35:54.222556Z +C:/Windows/SysWOW64/de-DE/VAN.dll.mui;file;7168;33206;2019-12-07T14:50:50.189145Z;;;2785144255;4;0;1688849861030650;4096;16;0;0;2019-12-07T14:50:50.189145Z;2020-11-03T12:35:28.425050Z;2019-12-07T14:50:50.189145Z +C:/Windows/SysWOW64/de-DE/vfwwdm32.dll.mui;file;10752;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;1688849861030660;4096;24;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:28.425050Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/de-DE/WABSyncProvider.dll.mui;file;8192;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861030700;4096;16;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/de-DE/wavemsp.dll.mui;file;2560;33206;2019-12-07T14:50:49.534512Z;;;2785144255;4;0;1688849861030700;4096;8;0;0;2019-12-07T14:50:49.534512Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:49.534512Z +C:/Windows/SysWOW64/de-DE/wcncsvc.dll.mui;file;5632;33206;2019-12-07T14:50:56.955083Z;;;2785144255;4;0;1125899907514000;4096;16;0;0;2020-11-03T12:53:58.574899Z;2020-11-03T12:35:20.473789Z;2019-12-07T14:50:56.955083Z +C:/Windows/SysWOW64/de-DE/wcnwiz.dll.mui;file;16384;33206;2019-12-07T14:50:56.955083Z;;;2785144255;4;0;1125899907514010;4096;32;0;0;2019-12-07T14:50:56.955083Z;2020-11-03T12:35:20.473789Z;2019-12-07T14:50:56.955083Z +C:/Windows/SysWOW64/de-DE/WebcamUi.dll.mui;file;17408;33206;2019-12-07T14:50:53.752091Z;;;2785144255;4;0;1688849861030710;4096;40;0;0;2019-12-07T14:50:53.752091Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:53.752091Z +C:/Windows/SysWOW64/de-DE/webcheck.dll.mui;file;37376;33206;2019-12-07T14:50:48.610793Z;;;2785144255;4;0;1688849861030710;4096;80;0;0;2019-12-07T14:50:48.610793Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:48.610793Z +C:/Windows/SysWOW64/de-DE/wecsvc.dll.mui;file;7680;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861030720;4096;16;0;0;2020-11-03T12:53:58.590519Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/wecutil.exe.mui;file;57344;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861030720;4096;112;0;0;2019-12-07T14:50:48.580090Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/wevtfwd.dll.mui;file;6144;33206;2019-12-07T14:50:48.580090Z;;;2785144255;4;0;1688849861030720;4096;16;0;0;2019-12-07T14:50:48.580090Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:48.580090Z +C:/Windows/SysWOW64/de-DE/wextract.exe.mui;file;13824;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861030720;4096;32;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/de-DE/WF.msc;file;115124;33206;2019-12-07T14:51:00.080010Z;;;2785144255;4;0;1688849861029100;4096;232;0;0;2019-12-07T14:51:00.080010Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:51:00.080010Z +C:/Windows/SysWOW64/de-DE/wiadss.dll.mui;file;3072;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861030740;4096;8;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/wimgapi.dll.mui;file;20480;33206;2019-12-07T14:50:59.361024Z;;;2785144255;4;0;1125899907514020;4096;40;0;0;2019-12-07T14:50:59.346065Z;2020-11-03T12:35:20.473789Z;2019-12-07T14:50:59.346065Z +C:/Windows/SysWOW64/de-DE/Windows.ApplicationModel.dll.mui;file;5120;33206;2019-12-07T14:50:58.502023Z;;;2785144255;4;0;1688849861030750;4096;16;0;0;2019-12-07T14:50:58.502023Z;2020-11-03T12:35:28.456292Z;2019-12-07T14:50:58.502023Z +C:/Windows/SysWOW64/de-DE/Windows.ApplicationModel.Store.dll.mui;file;9216;33206;2019-12-07T14:50:58.533049Z;;;2785144255;4;0;1688849861030750;4096;24;0;0;2019-12-07T14:50:58.533049Z;2020-11-03T12:35:28.456292Z;2019-12-07T14:50:58.533049Z +C:/Windows/SysWOW64/de-DE/Windows.ApplicationModel.Store.TestingFramework.dll.mui;file;3072;33206;2019-12-07T14:50:58.533049Z;;;2785144255;4;0;1688849861030750;4096;8;0;0;2019-12-07T14:50:58.533049Z;2020-11-03T12:35:28.456292Z;2019-12-07T14:50:58.533049Z +C:/Windows/SysWOW64/de-DE/Windows.Internal.SecurityMitigationsBroker.dll.mui;file;9216;33206;2019-12-07T14:50:48.627084Z;;;2785144255;4;0;1688849861030770;4096;24;0;0;2019-12-07T14:50:48.627084Z;2020-11-03T12:35:28.456292Z;2019-12-07T14:50:48.627084Z +C:/Windows/SysWOW64/de-DE/Windows.System.Profile.HardwareId.dll.mui;file;3072;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;1688849861030800;4096;8;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:28.471914Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/de-DE/windows.ui.xaml.dll.mui;file;17920;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1688849861030810;4096;40;0;0;2020-11-03T16:58:48.857166Z;2020-11-03T12:35:28.471914Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/de-DE/winmsipc.dll.mui;file;27648;33206;2019-12-07T14:50:59.266985Z;;;2785144255;4;0;1688849861030830;4096;56;0;0;2019-12-07T14:50:59.266985Z;2020-11-03T12:35:28.471914Z;2019-12-07T14:50:59.266985Z +C:/Windows/SysWOW64/de-DE/Winrs.exe.mui;file;21504;33206;2019-12-07T14:50:50.205086Z;;;2785144255;4;0;1688849861030830;4096;48;0;0;2019-12-07T14:50:50.205086Z;2020-11-03T12:35:28.471914Z;2019-12-07T14:50:50.205086Z +C:/Windows/SysWOW64/de-DE/WinSATAPI.dll.mui;file;7680;33206;2019-12-07T14:50:50.189145Z;;;2785144255;4;0;1688849861030830;4096;16;0;0;2020-11-03T17:07:51.607390Z;2020-11-03T12:35:28.471914Z;2019-12-07T14:50:50.189145Z +C:/Windows/SysWOW64/de-DE/winsrv.dll.mui;file;6144;33206;2019-12-07T14:51:00.033022Z;;;2785144255;4;0;1125899907514060;4096;16;0;0;2020-11-03T16:58:47.115225Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:51:00.033022Z +C:/Windows/SysWOW64/de-DE/winver.exe.mui;file;2560;33206;2019-12-07T14:50:49.534512Z;;;2785144255;4;0;1970324837741490;4096;8;0;0;2019-12-07T14:50:49.534512Z;2020-11-03T12:35:28.487535Z;2019-12-07T14:50:49.534512Z +C:/Windows/SysWOW64/de-DE/wlanapi.dll.mui;file;20480;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1125899907514060;4096;40;0;0;2021-10-03T18:55:51.032804Z;2021-11-11T08:10:02.370712Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/WLanConn.dll.mui;file;9728;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1125899907514060;4096;24;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/de-DE/wlandlg.dll.mui;file;4608;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;1125899907514070;4096;16;0;0;2019-12-07T14:50:56.986031Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:50:56.986031Z +C:/Windows/SysWOW64/de-DE/wlanext.exe.mui;file;2560;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1125899907514070;4096;8;0;0;2020-11-03T12:53:59.169894Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/wlangpui.dll.mui;file;59904;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1688849861030840;4096;120;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:28.487535Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/wlanmm.dll.mui;file;4608;33206;2019-12-07T14:50:48.658097Z;;;2785144255;4;0;1688849861030840;4096;16;0;0;2019-12-07T14:50:48.658097Z;2020-11-03T12:35:28.487535Z;2019-12-07T14:50:48.658097Z +C:/Windows/SysWOW64/de-DE/wlanpref.dll.mui;file;23040;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;1125899907514070;4096;48;0;0;2019-12-07T14:50:56.986031Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:50:56.986031Z +C:/Windows/SysWOW64/de-DE/wlansvc.dll.mui;file;87552;33206;2021-10-03T19:03:31.786536Z;;;2785144255;4;0;1688849861188390;4096;176;0;0;2021-12-14T11:14:02.360511Z;2021-10-03T19:51:39.720577Z;2021-10-03T19:03:31.783010Z +C:/Windows/SysWOW64/de-DE/wlanui.dll.mui;file;15360;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;1125899907514070;4096;32;0;0;2019-12-07T14:50:56.986031Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:50:56.986031Z +C:/Windows/SysWOW64/de-DE/wlanutil.dll.mui;file;2560;33206;2019-12-07T14:50:56.986031Z;;;2785144255;4;0;1125899907514070;4096;8;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/wldap32.dll.mui;file;6144;33206;2019-12-07T14:50:59.377015Z;;;2785144255;4;0;1125899907514070;4096;16;0;0;2020-11-03T12:57:50.452606Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:50:59.377015Z +C:/Windows/SysWOW64/de-DE/wlgpclnt.dll.mui;file;4608;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1688849861030840;4096;16;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:28.487535Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/de-DE/wmiprop.dll.mui;file;3584;33206;2019-12-07T14:50:50.189145Z;;;2785144255;4;0;1125899907514080;4096;8;0;0;2019-12-07T14:50:50.189145Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:50:50.189145Z +C:/Windows/SysWOW64/de-DE/wmitomi.dll.mui;file;6656;33206;2019-12-07T14:51:01.579981Z;;;2785144255;4;0;1125899907514080;4096;16;0;0;2019-12-07T14:51:01.579981Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:51:01.579981Z +C:/Windows/SysWOW64/de-DE/wshext.dll.mui;file;6144;33206;2019-12-07T14:51:00.845397Z;;;2785144255;4;0;1688849861030900;4096;16;0;0;2020-11-03T13:05:54.700976Z;2020-11-03T12:35:28.503158Z;2019-12-07T14:51:00.845397Z +C:/Windows/SysWOW64/de-DE/WsmRes.dll.mui;file;444928;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1688849861030910;4096;872;0;0;2020-11-03T17:02:28.493616Z;2020-11-03T12:35:28.503158Z;2019-12-07T14:51:01.549074Z +C:/Windows/SysWOW64/de-DE/WsmSvc.dll.mui;file;6144;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1688849861030910;4096;16;0;0;2020-11-03T12:53:58.590519Z;2020-11-03T12:35:28.503158Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/de-DE/wuapi.dll.mui;file;11264;33206;2021-10-16T00:21:36.025534Z;;;2785144255;4;0;281474977858376;4096;24;0;0;2021-10-16T00:21:36.072441Z;2021-10-16T08:02:15.571552Z;2021-10-16T00:21:36.025534Z +C:/Windows/SysWOW64/de-DE/WWAHost.exe.mui;file;23040;33206;2019-12-07T09:09:02.113984Z;;;2785144255;4;0;1688849861030920;4096;48;0;0;2019-12-07T09:09:02.113984Z;2020-11-03T12:35:28.503158Z;2019-12-07T09:09:02.113984Z +C:/Windows/SysWOW64/de-DE/XInput1_4.dll.mui;file;2560;33206;2019-12-07T14:50:48.564418Z;;;2785144255;4;0;1688849861030940;4096;8;0;0;2019-12-07T14:50:48.564418Z;2020-11-03T12:35:28.503158Z;2019-12-07T14:50:48.564418Z +C:/Windows/SysWOW64/de-DE/XInput9_1_0.dll.mui;file;2560;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861030940;4096;8;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.503158Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/de-DE/xwizard.exe.mui;file;5120;33206;2019-12-07T14:50:50.205086Z;;;2785144255;4;0;1688849861030940;4096;16;0;0;2019-12-07T14:50:50.205086Z;2020-11-03T12:35:28.503158Z;2019-12-07T14:50:50.205086Z +C:/Windows/SysWOW64/de-DE/xwizards.dll.mui;file;7168;33206;2019-12-07T14:50:50.205086Z;;;2785144255;4;0;1688849861030940;4096;16;0;0;2019-12-07T14:50:50.205086Z;2020-11-03T12:35:28.503158Z;2019-12-07T14:50:50.205086Z +C:/Windows/SysWOW64/de-DE/xwtpdui.dll.mui;file;3584;33206;2019-12-07T14:50:50.205086Z;;;2785144255;4;0;1688849861030940;4096;8;0;0;2019-12-07T14:50:50.205086Z;2020-11-03T12:35:28.518778Z;2019-12-07T14:50:50.205086Z +C:/Windows/SysWOW64/de-DE/xwtpw32.dll.mui;file;3072;33206;2019-12-07T14:50:50.205086Z;;;2785144255;4;0;1688849861030950;4096;8;0;0;2019-12-07T14:50:50.205086Z;2020-11-03T12:35:28.518778Z;2019-12-07T14:50:50.205086Z +C:/Windows/SysWOW64/DefaultAccountTile.png;file;29517;33206;2019-12-07T09:09:15.176871Z;;;2785144255;2;0;1125899907639410;4096;64;0;0;2021-12-16T13:35:32.360070Z;2021-11-11T08:10:02.330909Z;2019-12-07T09:09:15.176871Z +C:/Windows/SysWOW64/DefaultDeviceManager.dll;file;18584;33206;2019-12-07T09:09:26.114855Z;;;2785144255;2;0;1125899907637460;4096;40;0;0;2021-12-16T13:35:32.374510Z;2021-11-11T11:29:33.792123Z;2019-12-07T09:09:26.114855Z +C:/Windows/SysWOW64/DefaultPrinterProvider.dll;file;21504;33206;2021-01-15T09:27:19.472090Z;;;2785144255;2;0;12947848929309400;4096;48;0;0;2021-12-16T13:35:32.384722Z;2021-11-11T11:29:33.791164Z;2021-01-15T09:27:19.472090Z +C:/Windows/SysWOW64/delegatorprovider.dll;file;24576;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;1125899907628330;4096;48;0;0;2021-12-16T13:35:32.395733Z;2021-11-11T11:29:34.242017Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/desk.cpl;file;181760;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907629480;4096;360;0;0;2021-12-16T13:35:32.413220Z;2021-11-11T11:29:34.248997Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/DesktopShellAppStateContract.dll;file;34304;33206;2021-01-15T09:27:18.692622Z;;;2785144255;2;0;8444249301938830;4096;72;0;0;2021-12-16T13:35:32.424031Z;2021-11-11T11:29:33.777163Z;2021-01-15T09:27:18.692622Z +C:/Windows/SysWOW64/DevDispItemProvider.dll;file;101744;33206;2020-11-03T12:45:50.213439Z;;;2785144255;2;0;562949954396478;4096;200;0;0;2021-12-16T13:35:32.435929Z;2021-11-11T11:29:33.758214Z;2020-11-03T12:45:50.213439Z +C:/Windows/SysWOW64/devenum.dll;file;93960;33206;2021-01-15T09:27:38.254612Z;;;2785144255;2;0;14073748836155400;4096;184;0;0;2021-12-16T13:35:32.435929Z;2021-11-11T11:29:34.241020Z;2021-01-15T09:27:38.238991Z +C:/Windows/SysWOW64/deviceaccess.dll;file;188536;33206;2021-01-15T09:27:16.749214Z;;;2785144255;2;0;10414574138913000;4096;376;0;0;2021-12-16T13:35:32.449929Z;2021-11-11T11:29:33.749237Z;2021-01-15T09:27:16.733622Z +C:/Windows/SysWOW64/deviceassociation.dll;file;45632;33206;2019-12-07T09:09:21.505693Z;;;2785144255;2;0;1125899907635800;4096;96;0;0;2021-12-16T13:35:32.462401Z;2021-11-11T11:29:33.775168Z;2019-12-07T09:09:21.302568Z +C:/Windows/SysWOW64/DeviceCenter.dll;file;186368;33206;2021-01-15T09:27:34.584507Z;;;2785144255;2;0;19984723347078600;4096;368;0;0;2021-12-16T13:35:32.475898Z;2021-11-11T11:29:34.212096Z;2021-01-15T09:27:34.584507Z +C:/Windows/SysWOW64/DeviceCredential.dll;file;50176;33206;2019-12-07T09:09:17.958263Z;;;2785144255;2;0;1125899907636310;4096;104;0;0;2021-12-16T13:35:32.486652Z;2021-11-11T11:29:33.735274Z;2019-12-07T09:09:17.958263Z +C:/Windows/SysWOW64/DeviceDisplayStatusManager.dll;file;30208;33206;2021-01-15T09:27:19.472090Z;;;2785144255;2;0;13792273859441400;4096;64;0;0;2021-12-16T13:35:32.497581Z;2021-11-11T11:29:33.785173Z;2021-01-15T09:27:19.472090Z +C:/Windows/SysWOW64/DeviceFlows.DataModel.dll;file;1652736;33206;2021-04-17T10:34:39.045685Z;;;2785144255;2;0;844424930951415;4096;3232;0;0;2021-12-16T13:35:32.516784Z;2021-11-11T11:29:33.771179Z;2021-04-17T10:34:38.899380Z +C:/Windows/SysWOW64/devicengccredprov.dll;file;177152;33206;2021-10-03T19:02:17.500592Z;;;2785144255;2;0;1688849861186980;4096;352;0;0;2021-12-16T13:35:32.528785Z;2021-11-11T11:29:33.787167Z;2021-10-03T19:02:17.486123Z +C:/Windows/SysWOW64/DevicePairing.dll;file;250368;33206;2021-01-15T09:27:34.568884Z;;;2785144255;2;0;12666373952601600;4096;496;0;0;2021-12-16T13:35:32.543663Z;2021-11-11T11:29:34.213094Z;2021-01-15T09:27:34.553263Z +C:/Windows/SysWOW64/DevicePairingFolder.dll;file;78336;33206;2021-01-15T09:27:34.600127Z;;;2785144255;2;0;18295873486814700;4096;160;0;0;2021-12-16T13:35:32.555600Z;2021-11-11T11:29:34.215132Z;2021-01-15T09:27:34.600127Z +C:/Windows/SysWOW64/DevicePairingProxy.dll;file;23552;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907629700;4096;48;0;0;2021-12-16T13:35:32.566091Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/DevicePairingWizard.exe;file;83968;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907629350;4096;168;0;0;2021-12-16T13:35:32.595961Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/DeviceReactivation.dll;file;69456;33206;2021-01-15T09:27:09.916059Z;;;2785144255;2;0;9570149208748900;4096;136;0;0;2021-12-16T13:35:32.608926Z;2021-11-11T11:29:33.721311Z;2021-01-15T09:27:09.916059Z +C:/Windows/SysWOW64/DeviceSetupStatusProvider.dll;file;28672;33206;2021-01-15T09:27:19.472090Z;;;2785144255;2;0;23080948090893000;4096;56;0;0;2021-12-16T13:35:32.619307Z;2021-11-11T11:29:33.787167Z;2021-01-15T09:27:19.472090Z +C:/Windows/SysWOW64/DeviceUxRes.dll;file;12288;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907630180;4096;24;0;0;2021-12-16T13:35:32.629443Z;2021-11-11T11:29:34.206112Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/devmgmt.msc;file;145622;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907637050;4096;288;0;0;2021-12-16T13:35:32.634242Z;2021-07-12T14:16:02.421555Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/devmgr.dll;file;803840;33206;2021-06-10T14:01:41.769495Z;;;2785144255;2;0;281474977765226;4096;1576;0;0;2021-12-16T13:35:32.658555Z;2021-11-11T11:29:33.807083Z;2021-06-10T14:01:41.762990Z +C:/Windows/SysWOW64/devobj.dll;file;166304;33206;2021-10-03T19:02:17.239327Z;;;2785144255;2;0;1688849861186970;4096;328;0;0;2021-12-16T13:35:32.658555Z;2021-11-11T11:29:33.777163Z;2021-10-03T19:02:17.225072Z +C:/Windows/SysWOW64/devrtl.dll;file;56832;33206;2021-10-03T19:02:17.214312Z;;;2785144255;2;0;1688849861186970;4096;112;0;0;2021-12-16T13:35:32.659555Z;2021-11-11T11:29:33.762202Z;2021-10-03T19:02:17.208900Z +C:/Windows/SysWOW64/dfrgui.exe;file;97280;33206;2021-01-15T09:27:34.553263Z;;;2785144255;2;0;12947848929312200;4096;192;0;0;2021-12-16T13:35:32.681071Z;2021-11-11T11:29:34.205151Z;2021-01-15T09:27:34.553263Z +C:/Windows/SysWOW64/dfscli.dll;file;44544;33206;2019-12-07T09:09:26.056624Z;;;2785144255;2;0;1125899907635460;4096;88;0;0;2021-12-16T13:35:32.690935Z;2021-11-11T11:29:33.778160Z;2019-12-07T09:09:26.056624Z +C:/Windows/SysWOW64/dfshim.dll;file;1167872;33206;2019-12-07T09:10:05.616064Z;;;2785144255;2;0;1125899907621890;4096;2288;0;0;2021-12-16T13:35:32.711161Z;2021-11-11T11:29:32.052331Z;2019-12-07T09:10:05.600989Z +C:/Windows/SysWOW64/DfsShlEx.dll;file;61440;33206;2021-01-15T09:27:21.318992Z;;;2785144255;2;0;8725724278650030;4096;120;0;0;2021-12-16T13:35:32.723011Z;2021-11-11T11:29:33.802096Z;2021-01-15T09:27:21.318992Z +C:/Windows/SysWOW64/dhcpcmonitor.dll;file;13312;33206;2019-12-07T09:09:57.935588Z;;;2785144255;2;0;1125899907630810;4096;32;0;0;2021-12-16T13:35:32.733121Z;2021-11-11T11:29:34.216121Z;2019-12-07T09:09:57.935588Z +C:/Windows/SysWOW64/dhcpcore.dll;file;329728;33206;2020-11-03T12:45:51.744328Z;;;2785144255;2;0;562949954397174;4096;648;0;0;2021-12-16T13:35:32.745948Z;2021-11-11T11:29:33.766192Z;2020-11-03T12:45:51.744328Z +C:/Windows/SysWOW64/dhcpcore6.dll;file;259584;33206;2020-11-03T12:45:51.744328Z;;;2785144255;2;0;562949954397176;4096;512;0;0;2021-12-16T13:35:32.758661Z;2021-11-11T11:29:33.763200Z;2020-11-03T12:45:51.744328Z +C:/Windows/SysWOW64/dhcpcsvc.dll;file;73728;33206;2020-11-03T12:45:51.744328Z;;;2785144255;2;0;562949954397175;4096;144;0;0;2021-12-16T13:35:32.759168Z;2021-11-11T11:29:33.765194Z;2020-11-03T12:45:51.744328Z +C:/Windows/SysWOW64/dhcpcsvc6.dll;file;61440;33206;2020-11-03T12:45:51.744328Z;;;2785144255;2;0;562949954397177;4096;120;0;0;2021-12-16T13:35:32.759168Z;2021-11-11T11:29:33.778160Z;2020-11-03T12:45:51.744328Z +C:/Windows/SysWOW64/dhcpsapi.dll;file;141824;33206;2019-12-07T09:09:57.935588Z;;;2785144255;2;0;1125899907629740;4096;280;0;0;2021-12-16T13:35:32.769861Z;2021-11-11T11:29:34.206112Z;2019-12-07T09:09:57.935588Z +C:/Windows/SysWOW64/diagnosticdataquery.dll;file;36864;33206;2019-12-07T09:09:26.021063Z;;;2785144255;2;0;14918173766096600;4096;72;0;0;2021-12-16T13:35:32.781061Z;2021-12-16T12:06:18.195713Z;2019-12-07T09:09:26.021063Z +C:/Windows/SysWOW64/DiagnosticInvoker.dll;file;78848;33206;2021-07-07T12:58:45.137712Z;;;2785144255;2;0;281474977790765;4096;160;0;0;2021-12-16T13:35:32.792952Z;2021-11-11T11:29:33.748240Z;2021-07-07T12:58:45.137712Z +C:/Windows/SysWOW64/DiagSvcs;directory;0;16822;2021-01-15T09:30:17.929957Z;;;2785144255;1;0;15199648742695900;4096;0;0;0;2021-12-16T13:36:01.156170Z;2021-01-15T09:30:17.929957Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/DiagSvcs/de-DE;directory;0;16822;2019-12-07T14:51:16.704926Z;;;2785144255;1;0;27021597764543400;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.704926Z +C:/Windows/SysWOW64/DiagSvcs/DiagnosticsHub.StandardCollector.Proxy.dll;file;20480;33206;2019-12-07T09:09:26.056624Z;;;2785144255;2;0;1125899907637210;4096;40;0;0;2021-02-22T08:01:23.816896Z;2021-11-11T11:29:33.765194Z;2019-12-07T09:09:26.056624Z +C:/Windows/SysWOW64/DiagSvcs/en-US;directory;0;16822;2020-11-03T12:41:50.219981Z;;;2785144255;1;0;1407374884227050;4096;0;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:50.219981Z +C:/Windows/SysWOW64/DiagSvcs/KernelTraceControl.dll;file;172032;33206;2021-01-15T09:27:19.331463Z;;;2785144255;2;0;10414574138913500;4096;336;0;0;2021-01-15T09:30:27.175306Z;2021-11-11T11:29:33.773174Z;2021-01-15T09:27:19.331463Z +C:/Windows/SysWOW64/dialclient.dll;file;172032;33206;2021-01-15T09:27:34.490778Z;;;2785144255;2;0;9851624185494990;4096;336;0;0;2021-12-16T13:35:32.808910Z;2021-11-11T11:29:34.214092Z;2021-01-15T09:27:34.490778Z +C:/Windows/SysWOW64/dialer.exe;file;32256;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907630750;4096;64;0;0;2021-12-16T13:35:32.834724Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/DialogBlockerProc.dll;file;40960;33206;2021-03-11T12:12:34.355117Z;;;2785144255;2;0;1407374884526630;4096;80;0;0;2021-12-16T13:35:32.845698Z;2021-11-11T11:29:32.362163Z;2021-03-11T12:12:34.355117Z +C:/Windows/SysWOW64/DictationManager.dll;file;354304;33206;2021-01-15T09:27:18.380196Z;;;2785144255;2;0;16607023626547800;4096;696;0;0;2021-12-16T13:35:32.858593Z;2021-11-11T11:29:33.769184Z;2021-01-15T09:27:18.380196Z +C:/Windows/SysWOW64/difxapi.dll;file;348160;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;22236523160573700;4096;680;0;0;2021-12-16T13:35:32.859598Z;2021-11-11T11:29:33.811072Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/dimsjob.dll;file;35840;33206;2019-12-07T09:09:57.935588Z;;;2785144255;2;0;1125899907628040;4096;72;0;0;2021-12-16T13:35:32.869096Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:09:57.935588Z +C:/Windows/SysWOW64/dimsroam.dll;file;39424;33206;2021-04-17T10:35:10.029782Z;;;2785144255;2;0;844424930951801;4096;80;0;0;2021-12-16T13:35:32.880550Z;2021-11-11T11:29:34.203158Z;2021-04-17T10:35:10.025464Z +C:/Windows/SysWOW64/dinput.dll;file;135680;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907628780;4096;272;0;0;2021-12-16T13:35:32.891915Z;2021-11-11T11:29:34.207109Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dinput8.dll;file;171008;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907629090;4096;336;0;0;2021-12-16T13:35:32.894191Z;2021-11-11T11:29:34.211139Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/Direct2DDesktop.dll;file;20480;33206;2019-12-07T09:09:20.864619Z;;;2785144255;2;0;1125899907637050;4096;40;0;0;2021-12-16T13:35:32.903599Z;2021-11-11T11:29:33.778160Z;2019-12-07T09:09:20.864619Z +C:/Windows/SysWOW64/directmanipulation.dll;file;542864;33206;2021-10-03T19:02:04.075140Z;;;2785144255;2;0;1688849861186650;4096;1064;0;0;2021-12-16T13:35:32.904602Z;2021-11-11T11:29:33.789166Z;2021-10-03T19:02:04.031813Z +C:/Windows/SysWOW64/directml.dll;file;869376;33206;2020-11-03T12:45:50.572758Z;;;2785144255;2;0;562949954396508;4096;1704;0;0;2021-12-16T13:35:32.917024Z;2021-11-11T11:29:33.752230Z;2020-11-03T12:45:50.557141Z +C:/Windows/SysWOW64/diskmgmt.msc;file;47682;33206;2019-12-07T09:09:13.755253Z;;;2785144255;2;0;1125899907636920;4096;96;0;0;2021-12-16T13:35:32.920350Z;2020-11-03T12:35:44.093663Z;2019-12-07T09:09:13.755253Z +C:/Windows/SysWOW64/diskpart.exe;file;150528;33206;2021-05-18T10:59:07.708058Z;;;2785144255;2;0;2251799814572420;4096;296;0;0;2021-12-16T13:35:32.930817Z;2021-11-11T11:29:33.722309Z;2021-05-18T10:59:07.706551Z +C:/Windows/SysWOW64/diskperf.exe;file;21504;33206;2020-11-03T12:46:03.163659Z;;;2785144255;2;0;562949954401071;4096;48;0;0;2021-12-16T13:35:32.941404Z;2021-11-11T11:29:34.238065Z;2020-11-03T12:46:03.163659Z +C:/Windows/SysWOW64/Dism;directory;0;16822;2021-11-11T11:38:44.511352Z;;;2785144255;1;0;12666373952300000;4096;8;0;0;2021-12-16T13:36:01.156170Z;2021-11-11T11:38:44.511352Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/Dism/AppxProvider.dll;file;385872;33206;2021-01-15T09:27:20.616065Z;;;2785144255;2;0;12384898975888500;4096;760;0;0;2021-01-15T09:30:30.948181Z;2021-11-11T11:29:33.788164Z;2021-01-15T09:27:20.616065Z +C:/Windows/SysWOW64/Dism/AssocProvider.dll;file;88912;33206;2021-01-15T09:27:19.675159Z;;;2785144255;2;0;10977524092334900;4096;176;0;0;2021-01-15T09:30:30.695609Z;2021-11-11T11:29:33.782192Z;2021-01-15T09:27:19.675159Z +C:/Windows/SysWOW64/Dism/CbsProvider.dll;file;637768;33206;2021-01-15T09:27:07.648904Z;;;2785144255;2;0;3096224744398630;4096;1248;0;0;2021-10-03T18:56:37.881423Z;2021-11-11T11:29:33.687402Z;2021-01-15T09:27:07.648904Z +C:/Windows/SysWOW64/Dism/de-DE;directory;0;16822;2019-12-07T14:51:16.720886Z;;;2785144255;1;0;27303072741254100;4096;8;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.704926Z +C:/Windows/SysWOW64/Dism/de-DE/AppxProvider.dll.mui;file;25600;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861029170;4096;56;0;0;2021-12-16T12:04:00.461960Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/Dism/de-DE/AssocProvider.dll.mui;file;8704;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861029170;4096;24;0;0;2021-12-16T12:04:00.461960Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/Dism/de-DE/CbsProvider.dll.mui;file;60928;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861029280;4096;120;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:27.940789Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/DismCore.dll.mui;file;8192;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;25895697857810800;4096;16;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:14.959454Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/DismProv.dll.mui;file;2560;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;66709569480855900;4096;8;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:14.959454Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/DmiProvider.dll.mui;file;19968;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861029470;4096;40;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:27.987660Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/FfuProvider.dll.mui;file;9728;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861029590;4096;24;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/FolderProvider.dll.mui;file;2560;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;51509920738480500;4096;8;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:14.959454Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/GenericProvider.dll.mui;file;5120;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861029630;4096;16;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/ImagingProvider.dll.mui;file;20992;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;49539595901505900;4096;48;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:14.959454Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/IntlProvider.dll.mui;file;33792;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861029750;4096;72;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/LogProvider.dll.mui;file;6656;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;59109745109668200;4096;16;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:14.959454Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/MsiProvider.dll.mui;file;17408;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861029950;4096;40;0;0;2021-12-16T12:04:00.484096Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/Dism/de-DE/OfflineSetupProvider.dll.mui;file;2560;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861030080;4096;8;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/OSProvider.dll.mui;file;3072;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861030090;4096;8;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/ProvProvider.dll.mui;file;4608;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861030180;4096;16;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/SetupPlatformProvider.dll.mui;file;6656;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861030400;4096;16;0;0;2021-12-16T12:04:00.484096Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/Dism/de-DE/SmiProvider.dll.mui;file;2560;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861030430;4096;8;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/TransmogProvider.dll.mui;file;18432;33206;2019-12-07T14:50:59.346065Z;;;2785144255;4;0;1688849861030570;4096;40;0;0;2021-12-16T12:04:00.484096Z;2020-11-03T12:35:28.409429Z;2019-12-07T14:50:59.346065Z +C:/Windows/SysWOW64/Dism/de-DE/UnattendProvider.dll.mui;file;5632;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;1688849861030610;4096;16;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:28.425050Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/VhdProvider.dll.mui;file;8704;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;30962247438602700;4096;24;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:14.959454Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/de-DE/WimProvider.dll.mui;file;32768;33206;2019-12-07T14:51:00.861041Z;;;2785144255;2;0;65020719620592100;4096;64;0;0;2019-12-07T14:51:00.861041Z;2020-11-03T12:35:14.959454Z;2019-12-07T14:51:00.861041Z +C:/Windows/SysWOW64/Dism/DismCore.dll;file;333128;33206;2021-01-15T09:27:07.555176Z;;;2785144255;2;0;3377699721109270;4096;656;0;0;2021-01-15T09:30:26.354834Z;2021-11-11T11:29:33.686405Z;2021-01-15T09:27:07.555176Z +C:/Windows/SysWOW64/Dism/DismCorePS.dll;file;88888;33206;2019-12-07T09:09:09.285979Z;;;2785144255;2;0;7318349394908920;4096;176;0;0;2021-02-22T08:01:25.428432Z;2021-11-11T11:29:33.684411Z;2019-12-07T09:09:09.285979Z +C:/Windows/SysWOW64/Dism/DismHost.exe;file;114000;33206;2021-01-15T09:27:07.555176Z;;;2785144255;2;0;3659174697819930;4096;224;0;0;2021-01-15T09:30:27.269033Z;2021-11-11T11:29:33.680421Z;2021-01-15T09:27:07.555176Z +C:/Windows/SysWOW64/Dism/DismProv.dll;file;196408;33206;2021-01-15T09:27:07.570797Z;;;2785144255;2;0;3377699721109280;4096;384;0;0;2021-01-15T09:30:25.975198Z;2021-11-11T11:29:33.683413Z;2021-01-15T09:27:07.570797Z +C:/Windows/SysWOW64/Dism/DmiProvider.dll;file;316232;33206;2021-01-15T09:27:07.648904Z;;;2785144255;2;0;3096224744398630;4096;624;0;0;2021-10-03T18:56:37.875147Z;2021-11-11T11:29:33.689408Z;2021-01-15T09:27:07.633282Z +C:/Windows/SysWOW64/Dism/en-US;directory;0;16822;2020-11-03T12:41:50.219981Z;;;2785144255;1;0;45035996274025400;4096;8;0;0;2021-12-16T13:36:01.156170Z;2020-11-03T12:41:50.219981Z;2019-12-07T14:51:16.720886Z +C:/Windows/SysWOW64/Dism/en-US/AppxProvider.dll.mui;file;23040;33206;2020-11-03T12:41:39.659880Z;;;2785144255;4;0;1125899907690880;4096;48;0;0;2021-12-16T12:04:00.499727Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/Dism/en-US/AssocProvider.dll.mui;file;8192;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690870;4096;16;0;0;2021-12-16T12:04:00.499727Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/Dism/en-US/CbsProvider.dll.mui;file;54272;33206;2020-11-03T12:41:40.565948Z;;;2785144255;2;0;1125899907691560;4096;112;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/Dism/en-US/DismCore.dll.mui;file;7680;33206;2020-11-03T12:41:40.175385Z;;;2785144255;2;0;1125899907691350;4096;16;0;0;2020-11-03T12:41:40.284734Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/Dism/en-US/DismProv.dll.mui;file;2560;33206;2020-11-03T12:41:40.175385Z;;;2785144255;2;0;1125899907691350;4096;8;0;0;2020-11-03T12:41:40.284734Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/Dism/en-US/DmiProvider.dll.mui;file;17920;33206;2020-11-03T12:41:40.565948Z;;;2785144255;2;0;1125899907691550;4096;40;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/Dism/en-US/FfuProvider.dll.mui;file;9728;33206;2020-11-03T12:41:40.175385Z;;;2785144255;2;0;1125899907691360;4096;24;0;0;2020-11-03T12:41:40.284734Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/Dism/en-US/FolderProvider.dll.mui;file;2560;33206;2020-11-03T12:41:40.175385Z;;;2785144255;2;0;1125899907691360;4096;8;0;0;2020-11-03T12:41:40.284734Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/Dism/en-US/GenericProvider.dll.mui;file;5120;33206;2020-11-03T12:41:40.565948Z;;;2785144255;2;0;1125899907691560;4096;16;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/Dism/en-US/IBSProvider.dll.mui;file;2560;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861029700;4096;8;0;0;2021-12-16T12:04:00.515348Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/Dism/en-US/ImagingProvider.dll.mui;file;18432;33206;2020-11-03T12:41:40.175385Z;;;2785144255;2;0;1125899907691360;4096;40;0;0;2020-11-03T12:41:40.284734Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/Dism/en-US/IntlProvider.dll.mui;file;28160;33206;2020-11-03T12:41:40.565948Z;;;2785144255;2;0;1125899907691560;4096;56;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/Dism/en-US/LogProvider.dll.mui;file;6144;33206;2020-11-03T12:41:40.175385Z;;;2785144255;2;0;1125899907691350;4096;16;0;0;2020-11-03T12:41:40.284734Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/Dism/en-US/MsiProvider.dll.mui;file;15872;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690870;4096;32;0;0;2021-12-16T12:04:00.515348Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/Dism/en-US/OfflineSetupProvider.dll.mui;file;2560;33206;2020-11-03T12:41:40.565948Z;;;2785144255;2;0;1125899907691560;4096;8;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/Dism/en-US/OSProvider.dll.mui;file;3072;33206;2020-11-03T12:41:40.565948Z;;;2785144255;2;0;1407374884401980;4096;8;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/Dism/en-US/ProvProvider.dll.mui;file;4608;33206;2020-11-03T12:41:40.565948Z;;;2785144255;2;0;1125899907691560;4096;16;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/Dism/en-US/SetupPlatformProvider.dll.mui;file;5632;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690870;4096;16;0;0;2021-12-16T12:04:00.515348Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/Dism/en-US/SmiProvider.dll.mui;file;2560;33206;2020-11-03T12:41:40.565948Z;;;2785144255;2;0;1125899907691560;4096;8;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/Dism/en-US/SysprepProvider.dll.mui;file;3072;33206;2019-12-07T14:51:00.111037Z;;;2785144255;4;0;1688849861030500;4096;8;0;0;2021-12-16T12:04:00.515348Z;2020-11-03T12:35:28.362564Z;2019-12-07T14:51:00.111037Z +C:/Windows/SysWOW64/Dism/en-US/TransmogProvider.dll.mui;file;16384;33206;2020-11-03T12:41:39.550531Z;;;2785144255;4;0;1125899907690650;4096;32;0;0;2021-12-16T12:04:00.530970Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.550531Z +C:/Windows/SysWOW64/Dism/en-US/UnattendProvider.dll.mui;file;5120;33206;2020-11-03T12:41:40.565948Z;;;2785144255;2;0;1125899907691560;4096;16;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/Dism/en-US/VhdProvider.dll.mui;file;7168;33206;2020-11-03T12:41:40.175385Z;;;2785144255;2;0;1125899907691360;4096;16;0;0;2020-11-03T12:41:40.284734Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/Dism/en-US/WimProvider.dll.mui;file;27648;33206;2020-11-03T12:41:40.175385Z;;;2785144255;2;0;1125899907691360;4096;56;0;0;2020-11-03T12:41:40.284734Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/Dism/FfuProvider.dll;file;474624;33206;2021-01-15T09:27:07.617661Z;;;2785144255;2;0;3096224744398630;4096;928;0;0;2021-10-03T18:56:37.855698Z;2021-11-11T11:29:33.696378Z;2021-01-15T09:27:07.617661Z +C:/Windows/SysWOW64/Dism/FolderProvider.dll;file;48976;33206;2021-01-15T09:27:07.586419Z;;;2785144255;2;0;4222124651241250;4096;96;0;0;2021-01-15T09:30:31.625939Z;2021-11-11T11:29:33.684411Z;2021-01-15T09:27:07.586419Z +C:/Windows/SysWOW64/Dism/GenericProvider.dll;file;115016;33206;2021-01-15T09:27:07.680182Z;;;2785144255;2;0;3096224744398630;4096;232;0;0;2021-10-03T18:56:37.906150Z;2021-11-11T11:29:33.697375Z;2021-01-15T09:27:07.680182Z +C:/Windows/SysWOW64/Dism/IBSProvider.dll;file;48464;33206;2021-01-15T09:27:19.675159Z;;;2785144255;2;0;8444249301938950;4096;96;0;0;2021-01-15T09:30:29.254002Z;2021-11-11T11:29:33.796165Z;2021-01-15T09:27:19.675159Z +C:/Windows/SysWOW64/Dism/ImagingProvider.dll;file;166728;33206;2021-01-15T09:27:07.633282Z;;;2785144255;2;0;3096224744398630;4096;328;0;0;2021-10-03T18:56:37.861514Z;2021-11-11T11:29:33.691391Z;2021-01-15T09:27:07.617661Z +C:/Windows/SysWOW64/Dism/IntlProvider.dll;file;234824;33206;2021-01-15T09:27:07.680182Z;;;2785144255;2;0;3096224744398630;4096;464;0;0;2021-10-03T18:56:37.899989Z;2021-11-11T11:29:33.685408Z;2021-01-15T09:27:07.680182Z +C:/Windows/SysWOW64/Dism/LogProvider.dll;file;63304;33206;2021-01-15T09:27:07.570797Z;;;2785144255;2;0;3377699721109280;4096;128;0;0;2021-01-15T09:30:31.010667Z;2021-11-11T11:29:33.672442Z;2021-01-15T09:27:07.570797Z +C:/Windows/SysWOW64/Dism/MsiProvider.dll;file;161616;33206;2021-01-15T09:27:19.690751Z;;;2785144255;2;0;7036874418385670;4096;320;0;0;2021-01-15T09:30:27.284655Z;2021-11-11T11:29:33.783178Z;2021-01-15T09:27:19.675159Z +C:/Windows/SysWOW64/Dism/OfflineSetupProvider.dll;file;133456;33206;2021-01-15T09:27:07.711425Z;;;2785144255;2;0;26458647811383100;4096;264;0;0;2021-10-03T18:56:37.920941Z;2021-11-11T11:29:33.686405Z;2021-01-15T09:27:07.695767Z +C:/Windows/SysWOW64/Dism/OSProvider.dll;file;116552;33206;2021-01-15T09:27:07.633282Z;;;2785144255;2;0;3096224744398630;4096;232;0;0;2021-10-03T18:56:37.868232Z;2021-11-11T11:29:33.677429Z;2021-01-15T09:27:07.633282Z +C:/Windows/SysWOW64/Dism/ProvProvider.dll;file;603984;33206;2021-05-18T10:59:06.166625Z;;;2785144255;2;0;2251799814572400;4096;1184;0;0;2021-10-03T18:56:37.913594Z;2021-11-11T11:29:33.690394Z;2021-05-18T10:59:06.147119Z +C:/Windows/SysWOW64/Dism/SetupPlatformProvider.dll;file;123704;33206;2021-01-15T09:27:19.690751Z;;;2785144255;2;0;9570149208781580;4096;248;0;0;2021-01-15T09:30:25.522212Z;2021-11-11T11:29:33.788164Z;2021-01-15T09:27:19.690751Z +C:/Windows/SysWOW64/Dism/SmiProvider.dll;file;197456;33206;2021-01-15T09:27:07.664563Z;;;2785144255;2;0;3096224744398630;4096;392;0;0;2021-10-03T18:56:37.893528Z;2021-11-11T11:29:33.690394Z;2021-01-15T09:27:07.664563Z +C:/Windows/SysWOW64/Dism/SysprepProvider.dll;file;576848;33206;2021-01-15T09:27:19.706395Z;;;2785144255;2;0;10133099162202900;4096;1128;0;0;2021-01-15T09:30:26.542289Z;2021-11-11T11:29:33.795115Z;2021-01-15T09:27:19.690751Z +C:/Windows/SysWOW64/Dism/TransmogProvider.dll;file;1171280;33206;2021-11-11T11:29:00.246760Z;;;2785144255;2;0;281474977879214;4096;2288;0;0;2021-11-11T11:38:51.440627Z;2021-11-11T11:38:51.440627Z;2021-11-11T11:29:00.229804Z +C:/Windows/SysWOW64/Dism/UnattendProvider.dll;file;180040;33206;2021-01-15T09:27:07.664563Z;;;2785144255;2;0;3096224744398630;4096;352;0;0;2021-10-03T18:56:37.888594Z;2021-11-11T11:29:33.694383Z;2021-01-15T09:27:07.664563Z +C:/Windows/SysWOW64/Dism/VhdProvider.dll;file;437584;33206;2021-10-03T19:01:58.135173Z;;;2785144255;2;0;1688849861186580;4096;856;0;0;2021-10-03T19:51:51.332356Z;2021-11-11T11:29:33.667455Z;2021-10-03T19:01:58.109801Z +C:/Windows/SysWOW64/Dism/WimProvider.dll;file;456520;33206;2021-01-15T09:27:07.586419Z;;;2785144255;2;0;11821949022429000;4096;896;0;0;2021-10-03T18:56:37.842514Z;2021-11-11T11:29:33.696378Z;2021-01-15T09:27:07.586419Z +C:/Windows/SysWOW64/Dism.exe;file;225104;33206;2021-01-15T09:27:20.584795Z;;;2785144255;2;0;8725724278649990;4096;440;0;0;2021-12-16T13:35:32.963561Z;2021-11-11T11:29:33.796165Z;2021-01-15T09:27:20.584795Z +C:/Windows/SysWOW64/DismApi.dll;file;761168;33206;2021-01-15T09:27:20.600413Z;;;2785144255;2;0;19140298416944300;4096;1488;0;0;2021-12-16T13:35:32.979492Z;2021-11-11T11:29:33.798140Z;2021-01-15T09:27:20.600413Z +C:/Windows/SysWOW64/DispBroker.dll;file;275456;33206;2021-10-03T19:02:05.137747Z;;;2785144255;2;0;1688849861186670;4096;544;0;0;2021-12-16T13:35:32.992218Z;2021-11-11T11:29:33.785173Z;2021-10-03T19:02:05.119716Z +C:/Windows/SysWOW64/dispex.dll;file;16896;33206;2021-10-03T19:02:20.242060Z;;;2785144255;2;0;1688849861187030;4096;40;0;0;2021-12-16T13:35:33.002228Z;2021-11-11T11:29:33.815064Z;2021-10-03T19:02:20.240351Z +C:/Windows/SysWOW64/Display.dll;file;137216;33206;2021-01-15T09:27:34.631369Z;;;2785144255;2;0;9007199255363050;4096;272;0;0;2021-12-16T13:35:33.019159Z;2021-11-11T11:29:34.214092Z;2021-01-15T09:27:34.631369Z +C:/Windows/SysWOW64/DisplayManager.dll;file;124928;33206;2021-01-15T09:27:12.621339Z;;;2785144255;2;0;2533274790986900;4096;248;0;0;2021-12-16T13:35:33.032149Z;2021-11-11T11:29:33.734277Z;2021-01-15T09:27:12.621339Z +C:/Windows/SysWOW64/djctq.rs;file;15360;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907637030;4096;32;0;0;2021-12-16T13:35:33.035789Z;2021-11-11T11:29:33.704357Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/dllhost.exe;file;19256;33206;2020-11-03T12:45:51.853709Z;;;2785144255;2;0;562949954397189;4096;40;0;0;2021-12-16T13:35:33.045732Z;2021-11-11T11:29:33.769184Z;2020-11-03T12:45:51.853709Z +C:/Windows/SysWOW64/dllhst3g.exe;file;10752;33206;2019-12-07T09:09:22.193610Z;;;2785144255;2;0;1125899907635970;4096;24;0;0;2021-12-16T13:35:33.053741Z;2021-11-11T11:29:33.760208Z;2019-12-07T09:09:22.193610Z +C:/Windows/SysWOW64/dlnashext.dll;file;257536;33206;2021-10-16T00:21:34.629595Z;;;2785144255;2;0;281474977858069;4096;504;0;0;2021-12-16T13:35:33.055969Z;2021-11-11T11:29:32.506695Z;2021-10-16T00:21:34.619586Z +C:/Windows/SysWOW64/DMAlertListener.ProxyStub.dll;file;7680;33206;2021-10-03T19:02:17.785390Z;;;2785144255;2;0;1688849861186990;4096;16;0;0;2021-12-16T13:35:33.064990Z;2021-11-11T11:29:33.785173Z;2021-10-03T19:02:17.780546Z +C:/Windows/SysWOW64/DMAppsRes.dll;file;2560;33206;2021-05-18T10:59:11.711459Z;;;2785144255;2;0;3096224744704450;4096;8;0;0;2021-12-16T13:35:33.068447Z;2021-11-11T11:29:33.788164Z;2021-05-18T10:59:11.709465Z +C:/Windows/SysWOW64/dmband.dll;file;33792;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907630310;4096;72;0;0;2021-12-16T13:35:33.078422Z;2021-11-11T11:29:34.213094Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dmcfgutils.dll;file;97792;33206;2020-11-03T12:45:52.181760Z;;;2785144255;2;0;1407374884529240;4096;192;0;0;2021-12-16T13:35:33.089590Z;2021-11-11T11:29:33.797110Z;2020-11-03T12:45:52.181760Z +C:/Windows/SysWOW64/dmcmnutils.dll;file;164736;33206;2021-10-16T00:21:18.601848Z;;;2785144255;2;0;281474977857635;4096;328;0;0;2021-12-16T13:35:33.091191Z;2021-11-11T11:29:33.781152Z;2021-10-16T00:21:18.601848Z +C:/Windows/SysWOW64/dmcommandlineutils.dll;file;11776;33206;2019-12-07T09:09:26.099971Z;;;2785144255;2;0;1125899907639110;4096;24;0;0;2021-12-16T13:35:33.100671Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:26.099971Z +C:/Windows/SysWOW64/dmcompos.dll;file;74240;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907628740;4096;152;0;0;2021-12-16T13:35:33.111521Z;2021-11-11T11:29:34.205151Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dmdlgs.dll;file;402432;33206;2019-12-07T09:09:13.755253Z;;;2785144255;2;0;1125899907638690;4096;792;0;0;2021-12-16T13:35:33.125131Z;2021-11-11T11:29:33.715328Z;2019-12-07T09:09:13.755253Z +C:/Windows/SysWOW64/dmdskmgr.dll;file;211456;33206;2019-12-07T09:09:14.958027Z;;;2785144255;2;0;1125899907638790;4096;416;0;0;2021-12-16T13:35:33.138502Z;2021-11-11T11:29:33.722309Z;2019-12-07T09:09:14.958027Z +C:/Windows/SysWOW64/dmdskres.dll;file;2560;33206;2019-12-07T09:09:14.958027Z;;;2785144255;2;0;1125899907638570;4096;8;0;0;2021-12-16T13:35:33.141805Z;2021-11-11T11:29:33.725301Z;2019-12-07T09:09:14.958027Z +C:/Windows/SysWOW64/dmdskres2.dll;file;2560;33206;2019-12-07T09:09:14.958027Z;;;2785144255;2;0;1125899907636920;4096;8;0;0;2021-12-16T13:35:33.144596Z;2021-11-11T11:29:33.723306Z;2019-12-07T09:09:14.958027Z +C:/Windows/SysWOW64/dmenrollengine.dll;file;586752;33206;2021-10-16T00:21:18.648711Z;;;2785144255;2;0;281474977857637;4096;1152;0;0;2021-12-16T13:35:33.158588Z;2021-11-11T11:29:33.791164Z;2021-10-16T00:21:18.633093Z +C:/Windows/SysWOW64/dmime.dll;file;198656;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907629700;4096;392;0;0;2021-12-16T13:35:33.172040Z;2021-11-11T11:29:34.205151Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dmintf.dll;file;24064;33206;2019-12-07T09:09:14.958027Z;;;2785144255;2;0;1407374884348620;4096;48;0;0;2021-12-16T13:35:33.181998Z;2021-11-11T11:29:33.721311Z;2019-12-07T09:09:14.958027Z +C:/Windows/SysWOW64/dmiso8601utils.dll;file;11776;33206;2020-11-03T12:45:52.181760Z;;;2785144255;2;0;7036874418742360;4096;24;0;0;2021-12-16T13:35:33.192216Z;2021-11-11T11:29:33.794117Z;2020-11-03T12:45:52.181760Z +C:/Windows/SysWOW64/dmloader.dll;file;41472;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907630600;4096;88;0;0;2021-12-16T13:35:33.203031Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dmocx.dll;file;44544;33206;2021-06-10T14:01:41.769495Z;;;2785144255;2;0;281474977765227;4096;88;0;0;2021-12-16T13:35:33.213965Z;2021-11-11T11:29:33.813066Z;2021-06-10T14:01:41.769495Z +C:/Windows/SysWOW64/dmoleaututils.dll;file;25088;33206;2019-12-07T09:09:26.099971Z;;;2785144255;2;0;1125899907638760;4096;56;0;0;2021-12-16T13:35:33.224650Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:26.099971Z +C:/Windows/SysWOW64/dmprocessxmlfiltered.dll;file;26112;33206;2019-12-07T09:09:26.099971Z;;;2785144255;2;0;1125899907637290;4096;56;0;0;2021-12-16T13:35:33.234626Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:26.099971Z +C:/Windows/SysWOW64/dmpushproxy.dll;file;20480;33206;2021-06-10T14:01:41.144291Z;;;2785144255;2;0;281474977765196;4096;40;0;0;2021-12-16T13:35:33.245638Z;2021-11-11T11:29:33.797110Z;2021-06-10T14:01:41.144291Z +C:/Windows/SysWOW64/DMRCDecoder.dll;file;2111488;33206;2021-10-03T19:02:11.371865Z;;;2785144255;2;0;1688849861186910;4096;4128;0;0;2021-12-16T13:35:33.261929Z;2021-11-11T11:29:33.733279Z;2021-10-03T19:02:11.296923Z +C:/Windows/SysWOW64/dmscript.dll;file;97280;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907630200;4096;192;0;0;2021-12-16T13:35:33.273871Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dmstyle.dll;file;117760;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907630090;4096;232;0;0;2021-12-16T13:35:33.284842Z;2021-11-11T11:29:34.211139Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dmsynth.dll;file;112640;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907630040;4096;224;0;0;2021-12-16T13:35:33.297846Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dmusic.dll;file;109056;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907629160;4096;216;0;0;2021-12-16T13:35:33.310096Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dmutil.dll;file;20992;33206;2019-12-07T09:09:14.958027Z;;;2785144255;2;0;1125899907634970;4096;48;0;0;2021-12-16T13:35:33.320010Z;2021-11-11T11:29:33.730288Z;2019-12-07T09:09:14.958027Z +C:/Windows/SysWOW64/dmvdsitf.dll;file;150528;33206;2019-12-07T09:09:14.958027Z;;;2785144255;2;0;1125899907635120;4096;296;0;0;2021-12-16T13:35:33.333188Z;2021-11-11T11:29:33.720314Z;2019-12-07T09:09:14.958027Z +C:/Windows/SysWOW64/dmview.ocx;file;110592;33206;2019-12-07T09:09:14.958027Z;;;2785144255;2;0;1125899907638280;4096;216;0;0;2021-12-16T13:35:33.345098Z;2021-11-11T11:29:33.724303Z;2019-12-07T09:09:14.958027Z +C:/Windows/SysWOW64/dmxmlhelputils.dll;file;81920;33206;2021-04-17T10:34:37.065330Z;;;2785144255;2;0;844424930951399;4096;160;0;0;2021-12-16T13:35:33.356034Z;2021-11-11T11:29:33.755222Z;2021-04-17T10:34:37.060339Z +C:/Windows/SysWOW64/dnsapi.dll;file;587744;33206;2021-11-11T11:29:00.270184Z;;;2785144255;2;0;281474977879215;4096;1152;0;0;2021-12-16T13:35:33.357065Z;2021-11-11T11:38:52.000633Z;2021-11-11T11:29:00.257215Z +C:/Windows/SysWOW64/dnscmmc.dll;file;124416;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907629730;4096;248;0;0;2021-12-16T13:35:33.366798Z;2021-11-11T11:29:34.213094Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/docprop.dll;file;35328;33206;2019-12-07T09:09:32.418634Z;;;2785144255;2;0;1125899907636580;4096;72;0;0;2021-12-16T13:35:33.379478Z;2021-11-11T11:29:33.808081Z;2019-12-07T09:09:32.418634Z +C:/Windows/SysWOW64/DolbyDecMFT.dll;file;978248;33206;2021-11-11T11:29:15.018687Z;;;2785144255;2;0;281474977879834;4096;1912;0;0;2021-12-16T13:35:33.393234Z;2021-11-11T11:38:50.846022Z;2021-11-11T11:29:15.000736Z +C:/Windows/SysWOW64/doskey.exe;file;16896;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907628590;4096;40;0;0;2021-12-16T13:35:33.402864Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/dot3api.dll;file;87552;33206;2021-01-15T09:27:09.744225Z;;;2785144255;2;0;14355223812827400;4096;176;0;0;2021-12-16T13:35:33.413902Z;2021-11-11T11:29:33.705354Z;2021-01-15T09:27:09.744225Z +C:/Windows/SysWOW64/dot3cfg.dll;file;60928;33206;2021-10-16T00:21:15.678929Z;;;2785144255;2;0;281474977857319;4096;120;0;0;2021-12-16T13:35:33.424700Z;2021-11-11T11:29:33.699370Z;2021-10-16T00:21:15.678929Z +C:/Windows/SysWOW64/dot3dlg.dll;file;47616;33206;2021-01-15T09:27:09.775468Z;;;2785144255;2;0;21955048184015200;4096;96;0;0;2021-12-16T13:35:33.434705Z;2021-11-11T11:29:33.704357Z;2021-01-15T09:27:09.775468Z +C:/Windows/SysWOW64/dot3gpclnt.dll;file;47616;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907636700;4096;96;0;0;2021-12-16T13:35:33.445676Z;2021-11-11T11:29:33.707349Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/dot3gpui.dll;file;238592;33206;2021-01-15T09:27:09.775468Z;;;2785144255;2;0;25051272927832400;4096;472;0;0;2021-12-16T13:35:33.460736Z;2021-11-11T11:29:33.707349Z;2021-01-15T09:27:09.775468Z +C:/Windows/SysWOW64/dot3hc.dll;file;57856;33206;2021-01-15T09:27:38.473310Z;;;2785144255;2;0;9007199255363630;4096;120;0;0;2021-12-16T13:35:33.472948Z;2021-11-11T11:29:34.244011Z;2021-01-15T09:27:38.473310Z +C:/Windows/SysWOW64/dot3msm.dll;file;87552;33206;2020-11-03T12:45:45.636332Z;;;2785144255;2;0;1125899907815950;4096;176;0;0;2021-12-16T13:35:33.483949Z;2021-11-11T11:29:33.712335Z;2020-11-03T12:45:45.636332Z +C:/Windows/SysWOW64/dot3ui.dll;file;289280;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907638840;4096;568;0;0;2021-12-16T13:35:33.501628Z;2021-11-11T11:29:33.705354Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/downlevel;directory;0;16822;2019-12-07T09:15:00.799465Z;;;2785144255;1;0;48976645947974600;4096;80;0;0;2021-12-16T13:36:01.166325Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/downlevel/api-ms-win-base-util-l1-1-0.dll;file;10760;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;13510798882542500;4096;24;0;0;2020-11-03T12:35:15.474959Z;2021-11-11T11:29:33.678426Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-com-l1-1-0.dll;file;15160;33206;2019-12-07T09:09:09.285979Z;;;2785144255;2;0;20266198323598200;4096;32;0;0;2020-11-03T12:35:15.474959Z;2021-11-11T11:29:33.677429Z;2019-12-07T09:09:09.285979Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-comm-l1-1-0.dll;file;11576;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;13510798882542500;4096;24;0;0;2020-11-03T12:35:15.474959Z;2021-11-11T11:29:33.670447Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-console-l1-1-0.dll;file;11576;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;20266198323598200;4096;24;0;0;2020-11-03T12:35:15.474959Z;2021-11-11T11:29:33.681418Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-datetime-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;18295873486623600;4096;24;0;0;2020-11-03T12:35:15.474959Z;2021-11-11T11:29:33.691391Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-datetime-l1-1-1.dll;file;10552;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;14355223812674500;4096;24;0;0;2020-11-03T12:35:15.474959Z;2021-11-11T11:29:33.687402Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-debug-l1-1-0.dll;file;11272;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;62768919806907300;4096;24;0;0;2020-11-03T12:35:15.474959Z;2021-11-11T11:29:33.691391Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-debug-l1-1-1.dll;file;11064;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;23362423067415500;4096;24;0;0;2020-11-03T12:35:15.474959Z;2021-11-11T11:29:33.689408Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-delayload-l1-1-0.dll;file;10552;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;20547673300308900;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.692389Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-errorhandling-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;14073748835963800;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.689408Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-errorhandling-l1-1-1.dll;file;11064;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;14636698789385100;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.694383Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-fibers-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;12947848929121200;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.670447Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-fibers-l1-1-1.dll;file;10552;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;13229323905831900;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.692389Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-file-l1-1-0.dll;file;14648;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;14355223812674500;4096;32;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.672442Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-file-l1-2-0.dll;file;11064;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;15199648742806500;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.697375Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-file-l1-2-1.dll;file;11064;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;14355223812674500;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.679423Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-core-file-l2-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;15481123719517100;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.672442Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-core-file-l2-1-1.dll;file;10768;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;14355223812674500;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.695381Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-handle-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;13510798882542500;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.680421Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-heap-l1-1-0.dll;file;11792;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;14355223812674500;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.686405Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-Core-Heap-Obsolete-L1-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;16888498603070400;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.696378Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-interlocked-l1-1-0.dll;file;11784;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;17732923533202400;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.682415Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-io-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.239476Z;;;2785144255;2;0;11258999068857300;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.683413Z;2019-12-07T09:09:09.239476Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-io-l1-1-1.dll;file;11064;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;3940649674380230;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.687402Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-kernel32-legacy-l1-1-0.dll;file;13624;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;10977524092146600;4096;32;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.682415Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-kernel32-legacy-l1-1-1.dll;file;11576;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;10133099162014700;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.675434Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll;file;11576;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;3659174697669580;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.689408Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll;file;10552;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;3659174697669580;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.688410Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-libraryloader-l1-1-0.dll;file;12088;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;3659174697669590;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.676431Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-libraryloader-l1-1-1.dll;file;11280;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;14918173766095800;4096;24;0;0;2020-11-03T12:35:15.490580Z;2021-11-11T11:29:33.672442Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-localization-l1-2-0.dll;file;13624;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;20547673300308900;4096;32;0;0;2020-11-03T12:35:15.506202Z;2021-11-11T11:29:33.686405Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-localization-l1-2-1.dll;file;10552;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;21110623253730300;4096;24;0;0;2020-11-03T12:35:15.506202Z;2021-11-11T11:29:33.693387Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-core-localization-obsolete-l1-2-0.dll;file;11280;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;18014398509913000;4096;24;0;0;2020-11-03T12:35:15.506202Z;2021-11-11T11:29:33.668453Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-memory-l1-1-0.dll;file;11576;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;19421773393466300;4096;24;0;0;2020-11-03T12:35:15.506202Z;2021-11-11T11:29:33.675434Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-memory-l1-1-1.dll;file;11576;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;17732923533202400;4096;24;0;0;2020-11-03T12:35:15.506202Z;2021-11-11T11:29:33.686405Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-memory-l1-1-2.dll;file;11576;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;20547673300309000;4096;24;0;0;2020-11-03T12:35:15.506202Z;2021-11-11T11:29:33.697375Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-namedpipe-l1-1-0.dll;file;11280;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;25051272927679500;4096;24;0;0;2020-11-03T12:35:15.506202Z;2021-11-11T11:29:33.688410Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-privateprofile-l1-1-0.dll;file;11784;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;48695170971374600;4096;24;0;0;2020-11-03T12:35:15.506202Z;2021-11-11T11:29:33.688410Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-privateprofile-l1-1-1.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;28147497671496700;4096;24;0;0;2020-11-03T12:35:15.553066Z;2021-11-11T11:29:33.687402Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-processenvironment-l1-1-0.dll;file;12088;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;3940649674380270;4096;24;0;0;2020-11-03T12:35:15.553066Z;2021-11-11T11:29:33.677429Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-processenvironment-l1-2-0.dll;file;11280;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;3940649674380270;4096;24;0;0;2020-11-03T12:35:15.553066Z;2021-11-11T11:29:33.694383Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-processthreads-l1-1-0.dll;file;13624;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;3940649674380270;4096;32;0;0;2020-11-03T12:35:15.553066Z;2021-11-11T11:29:33.695381Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-processthreads-l1-1-1.dll;file;11576;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;3940649674380270;4096;24;0;0;2020-11-03T12:35:15.553066Z;2021-11-11T11:29:33.673439Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-processthreads-l1-1-2.dll;file;11064;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;12947848929121300;4096;24;0;0;2020-11-03T12:35:15.553066Z;2021-11-11T11:29:33.669450Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-processtopology-obsolete-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;17732923533202400;4096;24;0;0;2020-11-03T12:35:15.553066Z;2021-11-11T11:29:33.693387Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-profile-l1-1-0.dll;file;10552;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;26458647811232800;4096;24;0;0;2020-11-03T12:35:15.553066Z;2021-11-11T11:29:33.672442Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-realtime-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;16888498603070500;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.669450Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-registry-l1-1-0.dll;file;12600;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;15199648742806500;4096;32;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.695381Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-registry-l2-1-0.dll;file;12600;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;16607023626359800;4096;32;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.685408Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-rtlsupport-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;30117822508471300;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.668453Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-shlwapi-legacy-l1-1-0.dll;file;15376;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;19421773393466400;4096;32;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.674437Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll;file;13112;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;10133099162014700;4096;32;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.676431Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-shutdown-l1-1-0.dll;file;10768;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;16044073672938500;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.669450Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-string-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;10977524092146700;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.697375Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-core-string-l2-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;12666373952410700;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.695381Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-core-string-obsolete-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;10977524092146700;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.686405Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-stringansi-l1-1-0.dll;file;11280;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;10414574138725400;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.680421Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-stringloader-l1-1-1.dll;file;10552;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;9288674231882790;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.673439Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-synch-l1-1-0.dll;file;13328;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;12384898975700200;4096;32;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.681418Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-synch-l1-2-0.dll;file;11576;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;3940649674380560;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.686405Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-sysinfo-l1-1-0.dll;file;12088;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;12384898975700200;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.689408Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-sysinfo-l1-2-0.dll;file;11064;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;12666373952410900;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.675434Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-sysinfo-l1-2-1.dll;file;11064;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;14918173766096200;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.684411Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-threadpool-l1-2-0.dll;file;13328;33206;2019-12-07T09:09:09.255513Z;;;2785144255;2;0;16607023626360100;4096;32;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.676431Z;2019-12-07T09:09:09.255513Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-threadpool-legacy-l1-1-0.dll;file;11280;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;12666373952410900;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.681418Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-threadpool-private-l1-1-0.dll;file;10552;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;14918173766096200;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.691391Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-timezone-l1-1-0.dll;file;11792;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;11540474045568300;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.691391Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-url-l1-1-0.dll;file;12600;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;13229323905832200;4096;32;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.667455Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-util-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;12947848929121600;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.685408Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-version-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;13510798882542900;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.677429Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-wow64-l1-1-0.dll;file;11280;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;13229323905832200;4096;24;0;0;2020-11-03T12:35:15.568687Z;2021-11-11T11:29:33.696378Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-core-xstate-l1-1-0.dll;file;11280;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;18295873486624000;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.674437Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-core-xstate-l2-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;5910974511355180;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.668453Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-conio-l1-1-0.dll;file;12088;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;13792273859253600;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.698373Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-convert-l1-1-0.dll;file;15160;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;18014398509913400;4096;32;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.680421Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-environment-l1-1-0.dll;file;11792;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;7036874418197810;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.682415Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-filesystem-l1-1-0.dll;file;13112;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;9007199255172410;4096;32;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.677429Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-heap-l1-1-0.dll;file;12088;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;18295873486624100;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.698373Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-locale-l1-1-0.dll;file;11784;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;30399297485182300;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.692389Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-math-l1-1-0.dll;file;21816;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;19140298416756000;4096;48;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.674437Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-multibyte-l1-1-0.dll;file;19256;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;18295873486624100;4096;40;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.693387Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-private-l1-1-0.dll;file;65848;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;17732923533202800;4096;136;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.685408Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-process-l1-1-0.dll;file;12088;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;14073748835964200;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.694383Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-runtime-l1-1-0.dll;file;15672;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;11821949022279000;4096;32;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.682415Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-stdio-l1-1-0.dll;file;17208;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;20829148277020000;4096;40;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.672442Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-string-l1-1-0.dll;file;17936;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;14355223812674900;4096;40;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.693387Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-time-l1-1-0.dll;file;13624;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;10414574138725700;4096;32;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.684411Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-crt-utility-l1-1-0.dll;file;11792;33206;2019-12-07T09:09:09.285979Z;;;2785144255;2;0;22517998137283900;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.689408Z;2019-12-07T09:09:09.285979Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-devices-config-L1-1-0.dll;file;13112;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;12384898975700300;4096;32;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.687402Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-devices-config-L1-1-1.dll;file;13112;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;21673573207152000;4096;32;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.691391Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll;file;11280;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;10977524092147000;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.686405Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/api-ms-win-eventing-consumer-l1-1-0.dll;file;10768;33206;2019-12-07T09:09:09.285979Z;;;2785144255;2;0;14073748835964300;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.685408Z;2019-12-07T09:09:09.285979Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-Eventing-Controller-L1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.285979Z;;;2785144255;2;0;10977524092147000;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.685408Z;2019-12-07T09:09:09.285979Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-Eventing-Legacy-L1-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;9851624185304430;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.673439Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-Eventing-Provider-L1-1-0.dll;file;11064;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;28428972648207700;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.678426Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-EventLog-Legacy-L1-1-0.dll;file;11064;33206;2019-12-07T09:09:10.253816Z;;;2785144255;2;0;23362423067415900;4096;24;0;0;2020-11-03T12:35:15.584308Z;2021-11-11T11:29:33.695381Z;2019-12-07T09:09:10.253816Z +C:/Windows/SysWOW64/downlevel/api-ms-win-security-base-l1-1-0.dll;file;16696;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;27584547718075800;4096;40;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.680421Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-security-cryptoapi-l1-1-0.dll;file;12808;33206;2019-12-07T09:09:09.285979Z;;;2785144255;2;0;21673573207152000;4096;32;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.678426Z;2019-12-07T09:09:09.285979Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-Security-Lsalookup-L2-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;41376821576897900;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.672442Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-Security-Lsalookup-L2-1-1.dll;file;10552;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;14073748835964300;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.673439Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-security-lsapolicy-l1-1-0.dll;file;12088;33206;2019-12-07T09:09:09.285979Z;;;2785144255;2;0;27021597764654500;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.678426Z;2019-12-07T09:09:09.285979Z +C:/Windows/SysWOW64/downlevel/API-MS-Win-security-provider-L1-1-0.dll;file;11064;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;14636698789385600;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.670447Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/api-ms-win-security-sddl-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.285979Z;;;2785144255;2;0;23080948090705300;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.679423Z;2019-12-07T09:09:09.285979Z +C:/Windows/SysWOW64/downlevel/api-ms-win-service-core-l1-1-0.dll;file;11064;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;30117822508471700;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.696378Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-service-core-l1-1-1.dll;file;11064;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;18858823440045400;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.688410Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-service-management-l1-1-0.dll;file;11280;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;19984723346888100;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.698373Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-service-management-l2-1-0.dll;file;11064;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;21110623253730700;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.671444Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-service-private-l1-1-0.dll;file;11784;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;18295873486624200;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.696378Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-service-private-l1-1-1.dll;file;12088;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;19421773393466800;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.689408Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-service-winsvc-l1-1-0.dll;file;12088;33206;2019-12-07T09:09:09.270357Z;;;2785144255;2;0;3377699720959390;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.679423Z;2019-12-07T09:09:09.270357Z +C:/Windows/SysWOW64/downlevel/api-ms-win-shcore-stream-l1-1-0.dll;file;11576;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;43065671437161900;4096;24;0;0;2020-11-03T12:35:15.599930Z;2021-11-11T11:29:33.692389Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/downlevel/ucrtbase.dll;file;1181200;33206;2019-12-07T09:09:09.285979Z;;;2785144255;2;0;39125021763218600;4096;2312;0;0;2020-11-03T12:35:17.911890Z;2021-11-11T11:29:33.690394Z;2019-12-07T09:09:09.285979Z +C:/Windows/SysWOW64/dpapi.dll;file;13312;33206;2020-11-03T12:45:51.884920Z;;;2785144255;2;0;562949954397198;4096;32;0;0;2021-12-16T13:35:33.501628Z;2021-11-11T11:29:33.771179Z;2020-11-03T12:45:51.884920Z +C:/Windows/SysWOW64/dpapimig.exe;file;73216;33206;2019-12-07T09:09:32.401382Z;;;2785144255;2;0;1125899907635440;4096;144;0;0;2021-12-16T13:35:33.528585Z;2021-11-11T11:29:33.808081Z;2019-12-07T09:09:32.380631Z +C:/Windows/SysWOW64/dpapiprovider.dll;file;48640;33206;2021-04-17T10:35:15.152229Z;;;2785144255;2;0;844424930952032;4096;96;0;0;2021-12-16T13:35:33.540564Z;2021-11-11T11:29:34.205151Z;2021-04-17T10:35:15.144299Z +C:/Windows/SysWOW64/DpiScaling.exe;file;77312;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907630340;4096;152;0;0;2021-12-16T13:35:33.553492Z;2021-11-11T11:29:34.214092Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/dplaysvr.exe;file;8192;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907629720;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dplayx.dll;file;8192;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907629720;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dpmodemx.dll;file;8192;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907629720;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dpnaddr.dll;file;8192;33206;2019-12-07T09:09:57.959303Z;;;2785144255;2;0;1125899907629710;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dpnathlp.dll;file;8192;33206;2019-12-07T09:09:57.959303Z;;;2785144255;2;0;1125899907629710;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.959303Z +C:/Windows/SysWOW64/dpnet.dll;file;8192;33206;2019-12-07T09:09:57.959303Z;;;2785144255;2;0;1125899907629710;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.959303Z +C:/Windows/SysWOW64/dpnhpast.dll;file;8192;33206;2019-12-07T09:09:57.959303Z;;;2785144255;2;0;1125899907629710;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.959303Z +C:/Windows/SysWOW64/dpnhupnp.dll;file;8192;33206;2019-12-07T09:09:57.959303Z;;;2785144255;2;0;1125899907629710;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.959303Z +C:/Windows/SysWOW64/dpnlobby.dll;file;8192;33206;2019-12-07T09:09:57.959303Z;;;2785144255;2;0;1125899907629710;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.959303Z +C:/Windows/SysWOW64/dpnsvr.exe;file;8192;33206;2019-12-07T09:10:00.395879Z;;;2785144255;2;0;1125899907629710;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:10:00.395879Z +C:/Windows/SysWOW64/dpwsockx.dll;file;8192;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907629720;4096;16;0;0;2020-11-03T12:35:39.203919Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dpx.dll;file;555016;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;16044073672939300;4096;1088;0;0;2021-12-16T13:35:33.568883Z;2021-11-11T11:29:33.785173Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/DragDropExperienceCommon.dll;file;36352;33206;2021-01-15T09:27:48.677511Z;;;2785144255;2;0;20266198323791200;4096;72;0;0;2021-12-16T13:35:33.579895Z;2021-11-11T11:29:32.521655Z;2021-01-15T09:27:48.677511Z +C:/Windows/SysWOW64/DragDropExperienceDataExchangeDelegated.dll;file;36352;33206;2021-01-15T09:27:34.381430Z;;;2785144255;2;0;7318349395099070;4096;72;0;0;2021-12-16T13:35:33.589829Z;2021-11-11T11:29:34.216121Z;2021-01-15T09:27:34.381430Z +C:/Windows/SysWOW64/driverquery.exe;file;66560;33206;2019-12-07T09:09:30.880472Z;;;2785144255;2;0;22799473114002300;4096;136;0;0;2021-12-16T13:35:33.609814Z;2021-11-11T11:29:33.804091Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/drivers;directory;0;16822;2021-07-16T09:20:01.895948Z;;;2785144255;1;0;21110623253619700;4096;8;0;0;2021-12-16T13:36:01.166325Z;2021-07-16T09:20:01.895948Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/drivers/17AA_LENOVO_ThinkPad_X390_20Q0003VGE.MRK;file;18;33206;2019-09-17T00:13:08.157443Z;;;2785144255;1;0;562949953472192;4096;0;0;0;2021-11-11T11:21:35.726853Z;2020-11-03T12:52:03.285130Z;2019-09-17T00:13:08.157443Z +C:/Windows/SysWOW64/drivers/afunix.sys;file;29696;33206;2021-07-16T09:18:05.029236Z;;;2785144255;2;0;281474977816968;4096;64;0;0;2021-11-11T11:21:36.398274Z;2021-11-11T11:29:33.802096Z;2021-07-16T09:18:05.029236Z +C:/Windows/SysWOW64/drivers/de-DE;directory;0;16822;2019-12-07T14:51:16.720886Z;;;2785144255;1;0;58546795156136900;4096;0;0;0;2021-12-16T13:36:01.166325Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.720886Z +C:/Windows/SysWOW64/drivers/de-DE/ndiscap.sys.mui;file;7168;33206;2019-12-07T14:50:49.564097Z;;;2785144255;4;0;1688849861030000;4096;16;0;0;2020-11-03T13:17:51.820302Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:50:49.564097Z +C:/Windows/SysWOW64/drivers/de-DE/NdisImPlatform.sys.mui;file;14336;33206;2019-12-07T14:51:00.767087Z;;;2785144255;4;0;1688849861030000;4096;32;0;0;2019-12-07T14:51:00.767087Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:51:00.767087Z +C:/Windows/SysWOW64/drivers/de-DE/wfplwfs.sys.mui;file;3584;33206;2019-12-07T14:50:58.564075Z;;;2785144255;4;0;1125899907514020;4096;8;0;0;2020-11-03T13:17:51.896350Z;2020-11-03T12:35:20.473789Z;2019-12-07T14:50:58.564075Z +C:/Windows/SysWOW64/drivers/en-US;directory;0;16822;2020-11-03T12:41:50.219981Z;;;2785144255;1;0;41658296553497600;4096;0;0;0;2021-12-16T13:36:01.166325Z;2020-11-03T12:41:50.219981Z;2019-12-07T14:51:16.720886Z +C:/Windows/SysWOW64/drivers/en-US/ndiscap.sys.mui;file;6656;33206;2020-11-03T12:41:34.598073Z;;;2785144255;4;0;1407374884397220;4096;16;0;0;2020-11-05T07:34:13.061906Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:34.598073Z +C:/Windows/SysWOW64/drivers/en-US/NdisImPlatform.sys.mui;file;11776;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691190;4096;24;0;0;2020-11-05T07:34:13.093150Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/drivers/en-US/wfplwfs.sys.mui;file;3584;33206;2020-11-03T12:41:39.035015Z;;;2785144255;4;0;1125899907690150;4096;8;0;0;2021-11-15T08:44:25.376721Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.035015Z +C:/Windows/SysWOW64/drivers/gm.dls;file;3440660;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1407374884346950;4096;6728;0;0;2021-11-11T11:21:37.360641Z;2020-11-03T12:35:43.718753Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/drivers/gmreadme.txt;file;646;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907635440;4096;8;0;0;2021-11-11T11:21:37.365731Z;2020-11-03T12:35:43.109479Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/drivers/UMDF;directory;0;16822;2019-12-07T14:51:16.720886Z;;;2785144255;1;0;15762598696117200;4096;0;0;0;2021-12-16T13:36:01.167816Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.720886Z +C:/Windows/SysWOW64/drivers/UMDF/en-US;directory;0;16822;2019-12-07T14:51:16.720886Z;;;2785144255;1;0;15481123719406600;4096;0;0;0;2021-12-16T13:36:01.167816Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.720886Z +C:/Windows/SysWOW64/DriverStore;directory;0;16822;2019-12-07T14:51:16.720886Z;;;2785144255;1;0;19703248370066400;4096;0;0;0;2021-12-16T13:36:01.167816Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/DriverStore/de-DE;directory;0;16822;2019-12-07T14:51:16.720886Z;;;2785144255;1;0;34902897112441900;4096;0;0;0;2021-12-16T13:36:01.167816Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.720886Z +C:/Windows/SysWOW64/DriverStore/de-DE/ntprint.inf_loc;file;154;33206;2019-12-07T14:51:01.610991Z;;;2785144255;2;0;2251799814430810;4096;0;0;0;2019-12-07T14:51:01.610991Z;2020-11-03T12:35:26.909780Z;2019-12-07T14:51:01.610991Z +C:/Windows/SysWOW64/DriverStore/en-US;directory;0;16822;2020-11-03T12:41:50.219981Z;;;2785144255;1;0;34902897112441900;4096;0;0;0;2021-12-16T13:36:01.167816Z;2020-11-03T12:41:50.219981Z;2019-12-07T14:51:16.720886Z +C:/Windows/SysWOW64/DriverStore/en-US/ntprint.inf_loc;file;140;33206;2020-11-03T12:41:41.065866Z;;;2785144255;2;0;1125899907691980;4096;0;0;0;2020-11-03T12:41:41.159589Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:41.065866Z +C:/Windows/SysWOW64/DriverStore/en-US/prnms003.inf_loc;file;176;33206;2019-12-07T14:51:01.610991Z;;;2785144255;2;0;1688849861009500;4096;0;0;0;2019-12-07T14:51:01.610991Z;2020-11-03T12:35:26.909780Z;2019-12-07T14:51:01.610991Z +C:/Windows/SysWOW64/DriverStore/FileRepository;directory;0;16822;2019-12-07T09:14:52.720933Z;;;2785144255;1;0;54887620458898400;4096;0;0;0;2021-12-16T13:36:01.167816Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/drprov.dll;file;20480;33206;2020-11-03T12:46:03.491675Z;;;2785144255;2;0;562949954401100;4096;40;0;0;2021-12-16T13:35:33.621226Z;2021-11-11T11:29:34.251028Z;2020-11-03T12:46:03.491675Z +C:/Windows/SysWOW64/drt.dll;file;221696;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907630080;4096;440;0;0;2021-12-16T13:35:33.632222Z;2021-11-11T11:29:31.745360Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/drtprov.dll;file;57856;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907629240;4096;120;0;0;2021-12-16T13:35:33.643861Z;2021-11-11T11:29:31.740402Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/drttransport.dll;file;43520;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907628130;4096;88;0;0;2021-12-16T13:35:33.654739Z;2021-11-11T11:29:31.744362Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/drvsetup.dll;file;143872;33206;2021-10-03T19:02:19.756187Z;;;2785144255;2;0;1970324837897600;4096;288;0;0;2021-12-16T13:35:33.666678Z;2021-11-11T11:29:33.812069Z;2021-10-03T19:02:19.744366Z +C:/Windows/SysWOW64/drvstore.dll;file;1043280;33206;2021-11-11T11:29:01.124483Z;;;2785144255;2;0;281474977879242;4096;2040;0;0;2021-12-16T13:35:33.667675Z;2021-11-11T11:38:52.609003Z;2021-11-11T11:29:01.104498Z +C:/Windows/SysWOW64/dsauth.dll;file;39936;33206;2019-12-07T09:09:57.935588Z;;;2785144255;2;0;1125899907628990;4096;80;0;0;2021-12-16T13:35:33.678711Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:09:57.935588Z +C:/Windows/SysWOW64/DscCoreConfProv.dll;file;139264;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907628770;4096;272;0;0;2021-12-16T13:35:33.691534Z;2021-11-11T11:29:34.238065Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/dsclient.dll;file;39208;33206;2019-12-07T09:09:16.989439Z;;;2785144255;2;0;1125899907636110;4096;80;0;0;2021-12-16T13:35:33.702505Z;2021-11-11T11:29:33.731285Z;2019-12-07T09:09:16.989439Z +C:/Windows/SysWOW64/dsdmo.dll;file;183808;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907635550;4096;360;0;0;2021-12-16T13:35:33.715470Z;2021-11-11T11:29:33.704357Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/dskquota.dll;file;102912;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907629870;4096;208;0;0;2021-12-16T13:35:33.727557Z;2021-11-11T11:29:34.206112Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/dskquoui.dll;file;189440;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907629980;4096;376;0;0;2021-12-16T13:35:33.744192Z;2021-11-11T11:29:34.212096Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/dsound.dll;file;493056;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907635500;4096;968;0;0;2021-12-16T13:35:33.745157Z;2021-11-11T11:29:33.705354Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/dsparse.dll;file;23040;33206;2020-11-03T12:45:51.884920Z;;;2785144255;2;0;1688849861239820;4096;48;0;0;2021-12-16T13:35:33.756512Z;2021-11-11T11:29:33.764197Z;2020-11-03T12:45:51.884920Z +C:/Windows/SysWOW64/dsprop.dll;file;150528;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907638530;4096;296;0;0;2021-12-16T13:35:33.771260Z;2021-11-11T11:29:33.784180Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/dsquery.dll;file;145920;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907638890;4096;288;0;0;2021-12-16T13:35:33.784493Z;2021-11-11T11:29:33.784180Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/dsreg.dll;file;1066056;33206;2021-10-16T00:21:16.102157Z;;;2785144255;2;0;281474977857335;4096;2088;0;0;2021-12-16T13:35:33.787724Z;2021-11-11T11:29:33.736273Z;2021-10-16T00:21:16.064326Z +C:/Windows/SysWOW64/dsregtask.dll;file;18944;33206;2021-10-03T19:02:04.626557Z;;;2785144255;2;0;1688849861186670;4096;40;0;0;2021-12-16T13:35:33.798016Z;2021-11-15T13:07:18.049433Z;2021-10-03T19:02:04.621872Z +C:/Windows/SysWOW64/dsrole.dll;file;24288;33206;2020-11-03T12:45:51.884920Z;;;2785144255;2;0;562949954397199;4096;48;0;0;2021-12-16T13:35:33.799011Z;2021-11-11T11:29:33.778160Z;2020-11-03T12:45:51.884920Z +C:/Windows/SysWOW64/dssec.dat;file;215943;33206;2019-12-07T09:12:44.981760Z;;;2785144255;1;0;1125899907630010;4096;424;0;0;2021-12-16T13:35:33.802979Z;2020-11-03T12:35:39.547587Z;2019-12-07T09:14:59.909127Z +C:/Windows/SysWOW64/dssec.dll;file;48128;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907628400;4096;96;0;0;2021-12-16T13:35:33.814515Z;2021-11-11T11:29:34.201157Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/dssenh.dll;file;134280;33206;2021-06-10T14:01:40.975064Z;;;2785144255;2;0;281474977765182;4096;264;0;0;2021-12-16T13:35:33.814922Z;2021-11-11T11:29:33.761205Z;2021-06-10T14:01:40.959443Z +C:/Windows/SysWOW64/Dsui.dll;file;148992;33206;2021-01-15T09:27:34.600127Z;;;2785144255;2;0;13792273859444200;4096;296;0;0;2021-12-16T13:35:33.832114Z;2021-11-11T11:29:34.213094Z;2021-01-15T09:27:34.600127Z +C:/Windows/SysWOW64/dsuiext.dll;file;70656;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907639380;4096;144;0;0;2021-12-16T13:35:33.844015Z;2021-11-11T11:29:33.798140Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/dswave.dll;file;23040;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907630630;4096;48;0;0;2021-12-16T13:35:33.853976Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/dtdump.exe;file;91648;33206;2021-11-11T11:29:00.541218Z;;;2785144255;2;0;281474977879227;4096;184;0;0;2021-12-16T13:35:33.865906Z;2021-11-11T11:38:51.758115Z;2021-11-11T11:29:00.539176Z +C:/Windows/SysWOW64/dtsh.dll;file;31232;33206;2021-01-15T09:27:20.631656Z;;;2785144255;2;0;8162774325228680;4096;64;0;0;2021-12-16T13:35:33.875907Z;2021-11-11T11:29:33.791164Z;2021-01-15T09:27:20.631656Z +C:/Windows/SysWOW64/dui70.dll;file;1418752;33206;2021-01-15T09:27:19.503295Z;;;2785144255;2;0;14073748836152100;4096;2776;0;0;2021-12-16T13:35:33.877375Z;2021-11-11T11:29:33.784180Z;2021-01-15T09:27:19.487689Z +C:/Windows/SysWOW64/duser.dll;file;470528;33206;2020-11-03T12:45:52.275484Z;;;2785144255;2;0;2251799814661230;4096;920;0;0;2021-12-16T13:35:33.877375Z;2021-11-11T11:29:33.781152Z;2020-11-03T12:45:52.275484Z +C:/Windows/SysWOW64/dusmapi.dll;file;36864;33206;2020-11-03T12:46:01.210938Z;;;2785144255;2;0;562949954400420;4096;72;0;0;2021-12-16T13:35:33.887935Z;2021-11-11T11:29:34.200158Z;2020-11-03T12:46:01.210938Z +C:/Windows/SysWOW64/dvdplay.exe;file;10240;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907628890;4096;24;0;0;2021-12-16T13:35:33.910892Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/dwmapi.dll;file;138936;33206;2021-01-15T09:27:19.020639Z;;;2785144255;2;0;12947848929309400;4096;272;0;0;2021-12-16T13:35:33.911185Z;2021-11-11T11:29:33.767189Z;2021-01-15T09:27:19.020639Z +C:/Windows/SysWOW64/DWrite.dll;file;2117632;33206;2021-10-03T19:02:04.925709Z;;;2785144255;2;0;1688849861186670;4096;4136;0;0;2021-12-16T13:35:33.911185Z;2021-11-11T11:29:33.783178Z;2021-10-03T19:02:04.812151Z +C:/Windows/SysWOW64/DWWIN.EXE;file;189952;33206;2021-07-07T12:58:51.880498Z;;;2785144255;2;0;281474977791107;4096;376;0;0;2021-12-16T13:35:33.923805Z;2021-11-11T11:29:34.201157Z;2021-07-07T12:58:51.864872Z +C:/Windows/SysWOW64/DXCore.dll;file;163216;33206;2020-11-03T12:45:50.604001Z;;;2785144255;2;0;562949954396514;4096;320;0;0;2021-12-16T13:35:33.923805Z;2021-11-11T11:29:33.786186Z;2020-11-03T12:45:50.604001Z +C:/Windows/SysWOW64/dxdiag.exe;file;222720;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907630010;4096;440;0;0;2021-12-16T13:35:33.944671Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/dxdiagn.dll;file;457728;33206;2021-04-17T10:35:15.207411Z;;;2785144255;2;0;844424930952033;4096;896;0;0;2021-12-16T13:35:33.960001Z;2021-11-11T11:29:34.206112Z;2021-04-17T10:35:15.167234Z +C:/Windows/SysWOW64/dxgi.dll;file;787120;33206;2021-10-16T00:21:16.164686Z;;;2785144255;2;0;281474977857338;4096;1544;0;0;2021-12-16T13:35:33.960001Z;2021-11-11T11:29:33.788164Z;2021-10-16T00:21:16.149025Z +C:/Windows/SysWOW64/dxilconv.dll;file;866152;33206;2019-12-07T09:09:20.833296Z;;;2785144255;2;0;1125899907637990;4096;1696;0;0;2021-12-16T13:35:33.961994Z;2021-11-11T11:29:33.791164Z;2019-12-07T09:09:20.833296Z +C:/Windows/SysWOW64/dxmasf.dll;file;5632;33206;2021-10-16T00:21:37.948115Z;;;2785144255;2;0;281474977858425;4096;16;0;0;2021-12-16T13:35:33.971010Z;2021-11-11T11:29:35.571412Z;2021-10-16T00:21:37.948115Z +C:/Windows/SysWOW64/DxpTaskSync.dll;file;265728;33206;2020-11-03T12:46:01.335909Z;;;2785144255;2;0;562949954400444;4096;520;0;0;2021-12-16T13:35:33.985683Z;2021-11-11T11:29:34.211139Z;2020-11-03T12:46:01.335909Z +C:/Windows/SysWOW64/dxtmsft.dll;file;396800;33206;2021-01-15T09:27:35.053145Z;;;2785144255;2;0;17451448556682800;4096;776;0;0;2021-12-16T13:35:34.000030Z;2021-11-11T11:29:34.223103Z;2021-01-15T09:27:35.053145Z +C:/Windows/SysWOW64/dxtrans.dll;file;267776;33206;2021-01-15T09:27:35.068767Z;;;2785144255;2;0;10977524092337700;4096;528;0;0;2021-12-16T13:35:34.014751Z;2021-11-11T11:29:34.230049Z;2021-01-15T09:27:35.053145Z +C:/Windows/SysWOW64/dxva2.dll;file;106384;33206;2019-12-07T09:09:17.708275Z;;;2785144255;2;0;1125899907634680;4096;208;0;0;2021-12-16T13:35:34.014751Z;2021-11-11T11:29:33.793120Z;2019-12-07T09:09:17.708275Z +C:/Windows/SysWOW64/eapp3hst.dll;file;265216;33206;2021-10-16T00:21:15.415833Z;;;2785144255;2;0;281474977857310;4096;520;0;0;2021-12-16T13:35:34.029068Z;2021-11-11T11:29:33.711338Z;2021-10-16T00:21:15.415833Z +C:/Windows/SysWOW64/eappcfg.dll;file;224256;33206;2021-10-16T00:21:15.431422Z;;;2785144255;2;0;281474977857311;4096;440;0;0;2021-12-16T13:35:34.041637Z;2021-11-11T11:29:33.702363Z;2021-10-16T00:21:15.415833Z +C:/Windows/SysWOW64/eappgnui.dll;file;89600;33206;2021-10-16T00:21:15.447073Z;;;2785144255;2;0;281474977857313;4096;176;0;0;2021-12-16T13:35:34.053604Z;2021-11-11T11:29:33.711338Z;2021-10-16T00:21:15.447073Z +C:/Windows/SysWOW64/eapphost.dll;file;258560;33206;2021-10-16T00:21:15.431422Z;;;2785144255;2;0;281474977857312;4096;512;0;0;2021-12-16T13:35:34.067107Z;2021-11-11T11:29:33.703360Z;2021-10-16T00:21:15.431422Z +C:/Windows/SysWOW64/eappprxy.dll;file;55808;33206;2020-11-03T12:45:45.401983Z;;;2785144255;2;0;1125899907815920;4096;112;0;0;2021-12-16T13:35:34.079702Z;2021-11-15T13:07:17.583471Z;2020-11-03T12:45:45.401983Z +C:/Windows/SysWOW64/eapprovp.dll;file;42496;33206;2020-11-03T12:45:53.572026Z;;;2785144255;2;0;2533274791372540;4096;88;0;0;2021-12-16T13:35:34.091474Z;2021-11-11T11:29:33.817058Z;2020-11-03T12:45:53.572026Z +C:/Windows/SysWOW64/eapputil.dll;file;111104;33206;2021-01-15T09:27:09.353727Z;;;2785144255;2;0;3659174697820280;4096;224;0;0;2021-12-16T13:35:34.103442Z;2021-11-11T11:29:33.703360Z;2021-01-15T09:27:09.353727Z +C:/Windows/SysWOW64/eapsimextdesktop.dll;file;116736;33206;2021-01-15T09:27:19.518942Z;;;2785144255;2;0;17451448556679900;4096;232;0;0;2021-12-16T13:35:34.116408Z;2021-11-11T11:29:33.793120Z;2021-01-15T09:27:19.518942Z +C:/Windows/SysWOW64/EapTeapConfig.dll;file;136192;33206;2021-07-07T12:58:43.649878Z;;;2785144255;2;0;281474977790712;4096;272;0;0;2021-12-16T13:35:34.128376Z;2021-11-11T11:29:33.709343Z;2021-07-07T12:58:43.634237Z +C:/Windows/SysWOW64/EapTeapExt.dll;file;77824;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907636050;4096;152;0;0;2021-12-16T13:35:34.139521Z;2021-11-11T11:29:33.793120Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/EaseOfAccessDialog.exe;file;96256;33206;2021-01-15T09:27:18.739481Z;;;2785144255;2;0;5910974511542930;4096;192;0;0;2021-12-16T13:35:34.151279Z;2021-11-11T11:29:33.779158Z;2021-01-15T09:27:18.739481Z +C:/Windows/SysWOW64/easwrt.dll;file;143360;33206;2021-01-15T09:27:34.646991Z;;;2785144255;2;0;10696049115627000;4096;280;0;0;2021-12-16T13:35:34.165242Z;2021-11-11T11:29:34.216121Z;2021-01-15T09:27:34.646991Z +C:/Windows/SysWOW64/EasyResume.exe;file;2351320;33206;2021-07-11T21:47:18Z;;;2785144255;1;0;2533274790493110;4096;4600;0;0;2021-12-16T13:35:34.230052Z;2021-10-14T07:03:54.463273Z;2021-01-12T18:03:19.314924Z +C:/Windows/SysWOW64/edgehtml.dll;file;19866112;33206;2021-11-11T11:29:08.650838Z;;;2785144255;2;0;281474977879574;4096;38808;0;0;2021-12-16T13:35:34.234924Z;2021-11-11T11:38:52.925340Z;2021-11-11T11:29:08.122319Z +C:/Windows/SysWOW64/edgeIso.dll;file;403456;33206;2021-10-16T00:21:18.802447Z;;;2785144255;2;0;281474977857642;4096;792;0;0;2021-12-16T13:35:34.248889Z;2021-11-11T11:29:33.787167Z;2021-10-16T00:21:18.802447Z +C:/Windows/SysWOW64/EdgeManager.dll;file;805888;33206;2021-10-03T19:02:53.914766Z;;;2785144255;2;0;1688849861187670;4096;1576;0;0;2021-12-16T13:35:34.264703Z;2021-12-16T12:06:18.167712Z;2021-10-03T19:02:53.849165Z +C:/Windows/SysWOW64/EditBufferTestHook.dll;file;67072;33206;2021-11-11T11:28:59.276505Z;;;2785144255;2;0;281474977879185;4096;136;0;0;2021-12-16T13:35:34.276697Z;2021-11-11T11:38:50.843822Z;2021-11-11T11:28:59.275507Z +C:/Windows/SysWOW64/EditionUpgradeHelper.dll;file;165376;33206;2021-01-15T09:27:09.900439Z;;;2785144255;2;0;3377699721113450;4096;328;0;0;2021-12-16T13:35:34.288641Z;2021-11-11T11:29:33.729290Z;2021-01-15T09:27:09.900439Z +C:/Windows/SysWOW64/EditionUpgradeManagerObj.dll;file;213280;33206;2021-01-15T09:27:09.916059Z;;;2785144255;2;0;5066549581378200;4096;424;0;0;2021-12-16T13:35:34.308050Z;2021-11-11T11:29:33.715328Z;2021-01-15T09:27:09.900439Z +C:/Windows/SysWOW64/edpauditapi.dll;file;104960;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;1125899907638730;4096;208;0;0;2021-12-16T13:35:34.320608Z;2021-11-11T11:29:33.783178Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/edpnotify.exe;file;49152;33206;2021-10-03T19:02:17.905570Z;;;2785144255;2;0;1688849861186990;4096;96;0;0;2021-12-16T13:35:34.337596Z;2021-11-11T11:29:33.784180Z;2021-10-03T19:02:17.897394Z +C:/Windows/SysWOW64/edputil.dll;file;93696;33206;2020-11-03T12:45:52.759716Z;;;2785144255;2;0;562949954397845;4096;184;0;0;2021-12-16T13:35:34.337596Z;2021-11-11T11:29:33.786186Z;2020-11-03T12:45:52.759716Z +C:/Windows/SysWOW64/efsadu.dll;file;109056;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;1125899907637300;4096;216;0;0;2021-12-16T13:35:34.353553Z;2021-11-11T11:29:33.796165Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/efsext.dll;file;55808;33206;2021-06-10T14:01:41.159913Z;;;2785144255;2;0;281474977765198;4096;112;0;0;2021-12-16T13:35:34.366521Z;2021-11-11T11:29:33.812069Z;2021-06-10T14:01:41.159913Z +C:/Windows/SysWOW64/efsui.exe;file;12288;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;1125899907637250;4096;24;0;0;2021-12-16T13:35:34.386498Z;2021-11-11T11:29:33.782192Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/efsutil.dll;file;35840;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;1125899907638140;4096;72;0;0;2021-12-16T13:35:34.398433Z;2021-11-11T11:29:33.787167Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/efswrt.dll;file;618496;33206;2021-01-15T09:27:21.631449Z;;;2785144255;2;0;14073748836152500;4096;1208;0;0;2021-12-16T13:35:34.398433Z;2021-11-11T11:29:33.806085Z;2021-01-15T09:27:21.615828Z +C:/Windows/SysWOW64/EhStorAPI.dll;file;116224;33206;2021-01-15T09:27:34.646991Z;;;2785144255;2;0;14073748836154900;4096;232;0;0;2021-12-16T13:35:34.411095Z;2021-11-11T11:29:34.210101Z;2021-01-15T09:27:34.646991Z +C:/Windows/SysWOW64/EhStorAuthn.exe;file;119808;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907628450;4096;240;0;0;2021-12-16T13:35:34.444688Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/EhStorPwdMgr.dll;file;105984;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907629510;4096;208;0;0;2021-12-16T13:35:34.459544Z;2021-11-11T11:29:34.201157Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/el-GR;directory;0;16822;2019-12-07T14:53:40.594677Z;;;2785144255;1;0;95701492081943600;4096;8;0;0;2021-12-16T13:36:01.167816Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/el-GR/APHostRes.dll.mui;file;17920;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648790;4096;40;0;0;2019-12-07T14:53:37.735771Z;2020-11-03T12:35:52.529279Z;2019-12-07T14:53:37.735771Z +C:/Windows/SysWOW64/el-GR/cdosys.dll.mui;file;52224;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014730;4096;104;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.927041Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/el-GR/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5348024558172420;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.989527Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/el-GR/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619380;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.470887Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/el-GR/SyncRes.dll.mui;file;34816;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648640;4096;72;0;0;2019-12-07T14:53:37.828815Z;2020-11-03T12:35:52.466793Z;2019-12-07T14:53:37.828815Z +C:/Windows/SysWOW64/el-GR/windows.ui.xaml.dll.mui;file;19456;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907636030;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:43.500052Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/els.dll;file;180736;33206;2019-12-07T09:10:00.444993Z;;;2785144255;2;0;1125899907628730;4096;360;0;0;2021-12-16T13:35:34.477854Z;2021-11-11T11:29:34.206112Z;2019-12-07T09:10:00.444993Z +C:/Windows/SysWOW64/ELSCore.dll;file;60416;33206;2021-01-15T09:27:21.115915Z;;;2785144255;2;0;10696049115624600;4096;120;0;0;2021-12-16T13:35:34.488662Z;2021-11-11T11:29:30.995469Z;2021-01-15T09:27:21.100295Z +C:/Windows/SysWOW64/elshyph.dll;file;118272;33206;2019-12-07T09:10:00.584760Z;;;2785144255;2;0;1125899907630680;4096;232;0;0;2021-12-16T13:35:34.499671Z;2021-11-11T11:29:34.223103Z;2019-12-07T09:10:00.584760Z +C:/Windows/SysWOW64/elslad.dll;file;590848;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907639390;4096;1160;0;0;2021-12-16T13:35:34.512224Z;2021-11-11T11:29:30.967561Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/elsTrans.dll;file;24576;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907634710;4096;48;0;0;2021-12-16T13:35:34.523874Z;2021-11-11T11:29:30.970526Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/EmailApis.dll;file;809472;33206;2021-01-15T09:27:15.608870Z;;;2785144255;2;0;16888498603252300;4096;1584;0;0;2021-12-16T13:35:34.537393Z;2021-11-11T11:29:33.754225Z;2021-01-15T09:27:15.593278Z +C:/Windows/SysWOW64/embeddedmodesvcapi.dll;file;36352;33206;2021-01-15T09:27:12.387006Z;;;2785144255;2;0;2533274790986890;4096;72;0;0;2021-12-16T13:35:34.548761Z;2021-11-11T11:29:33.736273Z;2021-01-15T09:27:12.387006Z +C:/Windows/SysWOW64/en;directory;0;16822;2020-11-03T12:41:50.219981Z;;;2785144255;1;0;42502721483629600;4096;0;0;0;2021-12-16T13:36:01.167816Z;2020-11-03T12:41:50.219981Z;2019-12-07T14:51:16.720886Z +C:/Windows/SysWOW64/en/AuthFWSnapIn.Resources.dll;file;3136512;33206;2020-11-03T12:41:41.097106Z;;;2785144255;2;0;1125899907692070;4096;6128;0;0;2020-11-03T12:41:41.206453Z;2021-11-11T11:29:35.458630Z;2020-11-03T12:41:41.097106Z +C:/Windows/SysWOW64/en/AuthFWWizFwk.Resources.dll;file;56320;33206;2020-11-03T12:41:41.112734Z;;;2785144255;2;0;1125899907692070;4096;112;0;0;2020-11-03T12:41:41.222078Z;2021-11-11T11:29:35.458630Z;2020-11-03T12:41:41.112734Z +C:/Windows/SysWOW64/en-GB;directory;0;16822;2019-12-07T14:53:40.594677Z;;;2785144255;1;0;45598946227446800;4096;0;0;0;2021-12-16T13:36:01.167816Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/en-GB/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5348024558172410;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.989527Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/en-GB/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619450;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/en-GB/SyncRes.dll.mui;file;28672;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648800;4096;56;0;0;2019-12-07T14:53:37.828815Z;2020-11-03T12:35:52.529279Z;2019-12-07T14:53:37.828815Z +C:/Windows/SysWOW64/en-GB/windows.ui.xaml.dll.mui;file;15872;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907637140;4096;32;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:44.203013Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/en-US;directory;0;16822;2021-11-11T11:38:44.511352Z;;;2785144255;1;0;35747322042573900;4096;192;0;0;2021-12-16T13:36:01.168838Z;2021-11-11T11:38:44.511352Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/en-US/AccountAccessor.dll.mui;file;3584;33206;2019-12-06T16:59:00Z;;;2785144255;4;0;1125899907648730;4096;8;0;0;2019-12-07T14:53:37.782785Z;2020-11-03T12:35:52.498036Z;2019-12-07T14:53:37.782785Z +C:/Windows/SysWOW64/en-US/AccountsRT.dll.mui;file;3072;33206;2019-12-06T16:59:00Z;;;2785144255;4;0;1125899907648770;4096;8;0;0;2019-12-07T14:53:37.766934Z;2020-11-03T12:35:52.513659Z;2019-12-07T14:53:37.766934Z +C:/Windows/SysWOW64/en-US/acppage.dll.mui;file;15360;33206;2020-11-03T12:41:39.113118Z;;;2785144255;4;0;1125899907690380;4096;32;0;0;2020-11-03T12:41:39.222482Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.113118Z +C:/Windows/SysWOW64/en-US/ActionCenter.dll.mui;file;41472;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690860;4096;88;0;0;2020-11-03T12:41:39.769230Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/ActionCenterCPL.dll.mui;file;8704;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690870;4096;24;0;0;2020-11-03T12:41:39.769230Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/activeds.dll.mui;file;4608;33206;2020-11-03T12:41:39.113118Z;;;2785144255;4;0;1125899907690370;4096;16;0;0;2020-11-03T12:41:39.206861Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.113118Z +C:/Windows/SysWOW64/en-US/ActiveSyncProvider.dll.mui;file;35840;33206;2019-12-06T16:59:00Z;;;2785144255;4;0;1125899907648750;4096;72;0;0;2019-12-07T14:53:37.766934Z;2020-11-03T12:35:52.513659Z;2019-12-07T14:53:37.766934Z +C:/Windows/SysWOW64/en-US/AdmTmpl.dll.mui;file;19456;33206;2020-11-03T12:41:36.504042Z;;;2785144255;4;0;1125899907688070;4096;40;0;0;2020-11-03T12:41:36.597805Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:36.504042Z +C:/Windows/SysWOW64/en-US/adrclient.dll.mui;file;4608;33206;2020-11-03T12:41:36.988304Z;;;2785144255;2;0;1125899907688510;4096;16;0;0;2020-11-03T12:41:37.144554Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:36.988304Z +C:/Windows/SysWOW64/en-US/adsldpc.dll.mui;file;3072;33206;2020-11-03T12:41:39.113118Z;;;2785144255;4;0;1125899907690370;4096;8;0;0;2020-11-03T12:41:39.206861Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:39.113118Z +C:/Windows/SysWOW64/en-US/adsmsext.dll.mui;file;2560;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;1688849861029120;4096;8;0;0;2019-12-07T14:50:47.705049Z;2020-11-03T12:35:27.909545Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/en-US/adsnt.dll.mui;file;2560;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396290;4096;8;0;0;2020-11-03T12:41:33.707663Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/en-US/advpack.dll.mui;file;10240;33206;2020-11-03T12:41:40.066058Z;;;2785144255;4;0;1125899907691110;4096;24;0;0;2020-11-03T12:41:40.191007Z;2020-11-03T12:41:50.219981Z;2020-11-03T12:41:40.066058Z +C:/Windows/SysWOW64/en-US/aeevts.dll.mui;file;18432;33206;2020-11-03T12:41:39.113118Z;;;2785144255;4;0;1125899907690380;4096;40;0;0;2020-11-03T12:41:39.222482Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.113118Z +C:/Windows/SysWOW64/en-US/APHostRes.dll.mui;file;14848;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648730;4096;32;0;0;2019-12-07T14:53:37.735771Z;2020-11-03T12:35:52.498036Z;2019-12-07T14:53:37.735771Z +C:/Windows/SysWOW64/en-US/apphelp.dll.mui;file;3584;33206;2020-11-03T12:41:39.113118Z;;;2785144255;4;0;1125899907690380;4096;8;0;0;2020-11-03T12:41:46.923880Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.113118Z +C:/Windows/SysWOW64/en-US/Apphlpdm.dll.mui;file;4096;33206;2020-11-03T12:41:39.113118Z;;;2785144255;4;0;1125899907690370;4096;8;0;0;2020-11-03T12:41:39.222482Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.113118Z +C:/Windows/SysWOW64/en-US/appmgmts.dll.mui;file;44544;33206;2020-11-03T12:41:36.894575Z;;;2785144255;4;0;1407374884398770;4096;88;0;0;2020-11-03T12:41:37.019578Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:36.894575Z +C:/Windows/SysWOW64/en-US/appmgr.dll.mui;file;37376;33206;2020-11-03T12:41:36.504042Z;;;2785144255;4;0;1125899907688070;4096;80;0;0;2020-11-03T12:41:36.597805Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:36.504042Z +C:/Windows/SysWOW64/en-US/at.exe.mui;file;8704;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691650;4096;24;0;0;2020-11-03T12:41:40.706575Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/en-US/audiodev.dll.mui;file;14336;33206;2020-11-03T12:41:35.957135Z;;;2785144255;2;0;1688849861108590;4096;32;0;0;2020-11-03T12:41:36.050871Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:35.957135Z +C:/Windows/SysWOW64/en-US/authfwgp.dll.mui;file;4096;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690840;4096;8;0;0;2020-11-03T12:41:39.753608Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/autoplay.dll.mui;file;4096;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396340;4096;8;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/avicap32.dll.mui;file;8704;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397140;4096;24;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/avifil32.dll.mui;file;4096;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397140;4096;8;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/azman.msc;file;41587;33206;2020-11-03T12:41:34.551179Z;;;2785144255;4;0;1407374884397100;4096;88;0;0;2020-11-03T12:41:34.660528Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.551179Z +C:/Windows/SysWOW64/en-US/azroleui.dll.mui;file;46592;33206;2020-11-03T12:41:34.551179Z;;;2785144255;4;0;1407374884397100;4096;96;0;0;2020-11-03T12:41:34.660528Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.551179Z +C:/Windows/SysWOW64/en-US/AzureSettingSyncProvider.dll.mui;file;5632;33206;2019-12-07T14:51:00.892025Z;;;2785144255;4;0;1970324837739870;4096;16;0;0;2019-12-07T14:51:00.892025Z;2020-11-03T12:35:27.925167Z;2019-12-07T14:51:00.892025Z +C:/Windows/SysWOW64/en-US/bootcfg.exe.mui;file;88576;33206;2020-11-03T12:41:37.488257Z;;;2785144255;4;0;1125899907688870;4096;176;0;0;2020-11-03T12:41:37.581990Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:37.488257Z +C:/Windows/SysWOW64/en-US/BWContextHandler.dll.mui;file;4608;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396360;4096;16;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/cdosys.dll.mui;file;48640;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014750;4096;96;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.927041Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/en-US/charmap.exe.mui;file;9216;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397120;4096;24;0;0;2020-11-03T12:41:34.660528Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/cic.dll.mui;file;2560;33206;2020-11-03T12:41:34.098160Z;;;2785144255;4;0;1407374884396740;4096;8;0;0;2020-11-03T12:41:34.223161Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.098160Z +C:/Windows/SysWOW64/en-US/CloudNotifications.exe.mui;file;3072;33206;2020-11-03T12:41:37.535091Z;;;2785144255;4;0;1125899907688980;4096;8;0;0;2020-11-03T12:41:37.613233Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:37.535091Z +C:/Windows/SysWOW64/en-US/cmcfg32.dll.mui;file;3584;33206;2020-11-03T12:41:40.144144Z;;;2785144255;4;0;1125899907691290;4096;8;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.144144Z +C:/Windows/SysWOW64/en-US/cmdl32.exe.mui;file;3072;33206;2020-11-03T12:41:40.144144Z;;;2785144255;4;0;1125899907691290;4096;8;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.144144Z +C:/Windows/SysWOW64/en-US/cmlua.dll.mui;file;2560;33206;2020-11-03T12:41:40.144144Z;;;2785144255;4;0;1125899907691290;4096;8;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.144144Z +C:/Windows/SysWOW64/en-US/cmmon32.exe.mui;file;6656;33206;2020-11-03T12:41:40.144144Z;;;2785144255;4;0;1125899907691290;4096;16;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.144144Z +C:/Windows/SysWOW64/en-US/cmstp.exe.mui;file;17408;33206;2020-11-03T12:41:40.144144Z;;;2785144255;4;0;1125899907691290;4096;40;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.144144Z +C:/Windows/SysWOW64/en-US/cmstplua.dll.mui;file;2560;33206;2020-11-03T12:41:40.144144Z;;;2785144255;4;0;1125899907691290;4096;8;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.144144Z +C:/Windows/SysWOW64/en-US/cmutil.dll.mui;file;8704;33206;2020-11-03T12:41:40.144144Z;;;2785144255;4;0;1125899907691280;4096;24;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.144144Z +C:/Windows/SysWOW64/en-US/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5629499534883050;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.989527Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/en-US/comexp.msc;file;124118;33206;2020-11-03T12:41:39.550531Z;;;2785144255;4;0;1125899907690660;4096;248;0;0;2020-11-03T12:41:39.675502Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.550531Z +C:/Windows/SysWOW64/en-US/compmgmt.msc;file;113256;33206;2020-11-03T12:41:33.582611Z;;;2785144255;4;0;1407374884396330;4096;224;0;0;2020-11-03T12:41:33.707663Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:33.582611Z +C:/Windows/SysWOW64/en-US/connect.dll.mui;file;16384;33206;2020-11-03T12:41:40.081657Z;;;2785144255;4;0;1125899907691160;4096;32;0;0;2020-11-03T12:41:40.206627Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.081657Z +C:/Windows/SysWOW64/en-US/csrsrv.dll.mui;file;4608;33206;2020-11-03T12:41:39.597396Z;;;2785144255;4;0;1125899907690740;4096;16;0;0;2020-11-03T12:41:39.706744Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.597396Z +C:/Windows/SysWOW64/en-US/csrss.exe.mui;file;2560;33206;2020-11-03T12:41:39.581774Z;;;2785144255;4;0;1125899907690730;4096;8;0;0;2020-11-03T12:41:39.691123Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.581774Z +C:/Windows/SysWOW64/en-US/dabapi.dll.mui;file;2560;33206;2019-12-07T14:51:00.017043Z;;;2785144255;4;0;3659174697909190;4096;8;0;0;2019-12-07T14:51:00.017043Z;2020-11-03T12:35:20.052013Z;2019-12-07T14:51:00.017043Z +C:/Windows/SysWOW64/en-US/DavSyncProvider.dll.mui;file;11776;33206;2019-12-06T16:59:00Z;;;2785144255;4;0;1125899907648540;4096;24;0;0;2019-12-07T14:53:37.766934Z;2020-11-03T12:35:52.419930Z;2019-12-07T14:53:37.766934Z +C:/Windows/SysWOW64/en-US/DevDispItemProvider.dll.mui;file;3072;33206;2020-11-03T12:41:39.035015Z;;;2785144255;4;0;1125899907690160;4096;8;0;0;2020-11-03T12:41:39.144376Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.035015Z +C:/Windows/SysWOW64/en-US/DeviceCenter.dll.mui;file;7680;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396360;4096;16;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/DeviceDisplayStatusManager.dll.mui;file;2560;33206;2020-11-03T12:41:39.613017Z;;;2785144255;4;0;1125899907690790;4096;8;0;0;2020-11-03T12:41:39.737987Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.613017Z +C:/Windows/SysWOW64/en-US/DevicePairing.dll.mui;file;9728;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396350;4096;24;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/DevicePairingFolder.dll.mui;file;5632;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396360;4096;16;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/DevicePairingProxy.dll.mui;file;2560;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861029410;4096;8;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/en-US/DeviceSetupStatusProvider.dll.mui;file;4096;33206;2020-11-03T12:41:39.613017Z;;;2785144255;4;0;1125899907690790;4096;8;0;0;2020-11-03T12:41:39.737987Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.613017Z +C:/Windows/SysWOW64/en-US/DeviceUxRes.dll.mui;file;6656;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861029410;4096;16;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:27.972031Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/en-US/devmgmt.msc;file;145622;33206;2020-11-03T12:41:40.128521Z;;;2785144255;4;0;1125899907691250;4096;288;0;0;2020-11-03T12:41:40.237870Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.128521Z +C:/Windows/SysWOW64/en-US/dfshim.dll.mui;file;19224;33206;2020-11-03T12:41:35.972756Z;;;2785144255;2;0;1688849861108680;4096;40;0;0;2020-11-03T12:41:36.066495Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:35.972756Z +C:/Windows/SysWOW64/en-US/dialer.exe.mui;file;14848;33206;2020-11-03T12:41:34.598073Z;;;2785144255;4;0;1407374884397180;4096;32;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.598073Z +C:/Windows/SysWOW64/en-US/diskmgmt.msc;file;47682;33206;2020-11-03T12:41:40.628465Z;;;2785144255;4;0;1125899907691710;4096;96;0;0;2020-11-03T12:41:40.737821Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.628465Z +C:/Windows/SysWOW64/en-US/Dism.exe.mui;file;30208;33206;2020-11-03T12:41:36.957096Z;;;2785144255;4;0;1125899907688430;4096;64;0;0;2020-11-03T12:41:37.113305Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:36.957096Z +C:/Windows/SysWOW64/en-US/DismApi.dll.mui;file;4608;33206;2019-12-07T14:50:55.252064Z;;;2785144255;4;0;3377699721198550;4096;16;0;0;2021-12-16T12:04:00.684575Z;2020-11-03T12:35:20.067633Z;2019-12-07T14:50:55.252064Z +C:/Windows/SysWOW64/en-US/dot3api.dll.mui;file;3072;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689220;4096;8;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/dot3cfg.dll.mui;file;32768;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689240;4096;64;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/dot3dlg.dll.mui;file;2560;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689240;4096;8;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/dot3gpclnt.dll.mui;file;4096;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689220;4096;8;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/dot3gpui.dll.mui;file;14848;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689240;4096;32;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/dot3msm.dll.mui;file;3072;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689220;4096;8;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/dot3svc.dll.mui;file;21504;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689220;4096;48;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/dot3ui.dll.mui;file;7680;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689240;4096;16;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/dsreg.dll.mui;file;52736;33206;2021-10-03T19:03:27.723210Z;;;2785144255;4;0;1688849861188130;4096;104;0;0;2021-10-03T19:09:43.786344Z;2021-10-03T19:51:39.720577Z;2021-10-03T19:03:27.718329Z +C:/Windows/SysWOW64/en-US/dsregtask.dll.mui;file;3072;33206;2021-04-17T10:35:53.586159Z;;;2785144255;4;0;844424930952381;4096;8;0;0;2021-10-03T19:09:43.809502Z;2021-11-11T08:10:02.368694Z;2021-04-17T10:35:53.582645Z +C:/Windows/SysWOW64/en-US/Dsui.dll.mui;file;3584;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396370;4096;8;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/dtsh.dll.mui;file;4608;33206;2020-11-03T12:41:40.066058Z;;;2785144255;4;0;1125899907691100;4096;16;0;0;2020-11-03T12:41:40.191007Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.066058Z +C:/Windows/SysWOW64/en-US/eappgnui.dll.mui;file;5120;33206;2020-11-03T12:41:37.519502Z;;;2785144255;4;0;1125899907688930;4096;16;0;0;2020-11-03T12:41:37.597611Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:37.519502Z +C:/Windows/SysWOW64/en-US/eapphost.dll.mui;file;15360;33206;2020-11-03T12:41:37.519502Z;;;2785144255;4;0;1125899907688930;4096;32;0;0;2020-11-03T12:41:37.597611Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:37.519502Z +C:/Windows/SysWOW64/en-US/eapsimextdesktop.dll.mui;file;6656;33206;2020-11-03T12:41:39.628639Z;;;2785144255;4;0;1125899907690830;4096;16;0;0;2020-11-03T12:41:39.753608Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.628639Z +C:/Windows/SysWOW64/en-US/els.dll.mui;file;20992;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396620;4096;48;0;0;2020-11-03T12:41:34.160676Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/ETWCoreUIComponentsResources.dll.mui;file;108032;33206;2019-12-07T14:50:58.502023Z;;;2785144255;4;0;1688849861029570;4096;216;0;0;2019-12-07T14:50:58.502023Z;2020-11-03T12:35:28.003273Z;2019-12-07T14:50:58.502023Z +C:/Windows/SysWOW64/en-US/eudcedit.exe.mui;file;14336;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396610;4096;32;0;0;2020-11-03T12:41:34.145053Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/EventViewer_EventDetails.xsl;file;18403;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396620;4096;40;0;0;2020-11-03T12:41:34.160676Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/eventvwr.exe.mui;file;7680;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396620;4096;16;0;0;2020-11-03T12:41:34.160676Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/eventvwr.msc;file;145127;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396620;4096;288;0;0;2020-11-03T12:41:34.160676Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/explorer.exe.mui;file;14848;33206;2021-11-11T11:29:16.595681Z;;;2785144255;4;0;281474977879874;4096;32;0;0;2021-11-11T11:29:16.683757Z;2021-11-11T11:38:44.511352Z;2021-11-11T11:29:16.594683Z +C:/Windows/SysWOW64/en-US/FirewallControlPanel.dll.mui;file;27136;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396620;4096;56;0;0;2020-11-03T12:41:34.160676Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/fixmapi.exe.mui;file;2560;33206;2020-11-03T12:41:40.628465Z;;;2785144255;4;0;1125899907691700;4096;8;0;0;2020-11-03T12:41:40.737821Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:40.628465Z +C:/Windows/SysWOW64/en-US/Fondue.exe.mui;file;3584;33206;2020-11-03T12:41:34.098160Z;;;2785144255;4;0;1407374884396760;4096;8;0;0;2020-11-03T12:41:34.238783Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.098160Z +C:/Windows/SysWOW64/en-US/fontext.dll.mui;file;13312;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689210;4096;32;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/fwpuclnt.dll.mui;file;148480;33206;2020-11-03T12:41:39.019359Z;;;2785144255;4;0;1125899907690150;4096;296;0;0;2021-12-16T12:05:53.883356Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.019359Z +C:/Windows/SysWOW64/en-US/g711codc.ax.mui;file;3072;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397180;4096;8;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/GamePanel.exe.mui;file;26112;33206;2020-11-03T12:41:33.535747Z;;;2785144255;4;0;1407374884396180;4096;56;0;0;2020-11-03T12:41:33.645180Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:33.535747Z +C:/Windows/SysWOW64/en-US/gpapi.dll.mui;file;4096;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690860;4096;8;0;0;2020-11-03T12:41:46.923880Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/gpedit.dll.mui;file;57856;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396620;4096;120;0;0;2020-11-03T12:41:34.160676Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/gpedit.msc;file;147439;33206;2020-11-03T12:41:36.504042Z;;;2785144255;4;0;1125899907688080;4096;288;0;0;2020-11-03T12:41:36.597805Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:36.504042Z +C:/Windows/SysWOW64/en-US/gpprefcl.dll.mui;file;9216;33206;2020-11-03T12:41:36.894575Z;;;2785144255;4;0;1407374884398770;4096;24;0;0;2020-11-03T12:41:37.019578Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:36.894575Z +C:/Windows/SysWOW64/en-US/gpscript.dll.mui;file;3072;33206;2020-11-03T12:41:36.894575Z;;;2785144255;4;0;1125899907688320;4096;8;0;0;2020-11-03T12:41:37.019578Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:36.894575Z +C:/Windows/SysWOW64/en-US/gpsvc.dll.mui;file;50176;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690860;4096;104;0;0;2020-11-03T12:41:46.923880Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/gptext.dll.mui;file;3072;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690860;4096;8;0;0;2020-11-03T12:41:39.769230Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/hcproviders.dll.mui;file;6656;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690870;4096;16;0;0;2020-11-03T12:41:39.769230Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/hgcpl.dll.mui;file;48128;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690870;4096;96;0;0;2020-11-03T12:41:39.769230Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/hh.exe.mui;file;2560;33206;2020-11-03T12:41:34.051326Z;;;2785144255;4;0;1407374884396630;4096;8;0;0;2020-11-03T12:41:34.160676Z;2020-11-03T12:41:50.235592Z;2020-11-03T12:41:34.051326Z +C:/Windows/SysWOW64/en-US/hidphone.tsp.mui;file;3584;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397180;4096;8;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/hlink.dll.mui;file;3072;33206;2020-11-03T12:41:40.066058Z;;;2785144255;4;0;1125899907691110;4096;8;0;0;2020-11-03T12:41:40.191007Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.066058Z +C:/Windows/SysWOW64/en-US/html.iec.mui;file;10752;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396690;4096;24;0;0;2020-11-03T12:41:34.191923Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/iac25_32.ax.mui;file;4608;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108320;4096;16;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/iccvid.dll.mui;file;3584;33206;2020-11-03T12:41:35.566596Z;;;2785144255;2;0;1407374884398050;4096;8;0;0;2020-11-03T12:41:35.675945Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.566596Z +C:/Windows/SysWOW64/en-US/icsigd.dll.mui;file;4096;33206;2020-11-03T12:41:34.051326Z;;;2785144255;4;0;1407374884396640;4096;8;0;0;2020-11-03T12:41:34.176297Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.051326Z +C:/Windows/SysWOW64/en-US/IEAdvpack.dll.mui;file;10240;33206;2020-11-03T12:41:35.504110Z;;;2785144255;2;0;1688849861108360;4096;24;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.504110Z +C:/Windows/SysWOW64/en-US/iepeers.dll.mui;file;4608;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396660;4096;16;0;0;2020-11-03T12:41:34.176297Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/iernonce.dll.mui;file;5120;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396680;4096;16;0;0;2020-11-03T12:41:34.191923Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/iertutil.dll.mui;file;3072;33206;2020-11-03T12:41:40.066058Z;;;2785144255;4;0;1125899907691100;4096;8;0;0;2020-11-03T12:41:40.191007Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.066058Z +C:/Windows/SysWOW64/en-US/iesetup.dll.mui;file;71168;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396680;4096;144;0;0;2020-11-03T12:41:34.191923Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/ieui.dll.mui;file;3584;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396690;4096;8;0;0;2020-11-03T12:41:34.191923Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/ieunatt.exe.mui;file;2560;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396680;4096;8;0;0;2020-11-03T12:41:34.176297Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/iexpress.exe.mui;file;26112;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108340;4096;56;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/ifmon.dll.mui;file;67072;33206;2020-11-03T12:41:33.551381Z;;;2785144255;4;0;1407374884396250;4096;136;0;0;2020-11-03T12:41:33.676418Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:33.551381Z +C:/Windows/SysWOW64/en-US/imapi.dll.mui;file;3072;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396660;4096;8;0;0;2020-11-03T12:41:34.176297Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/imapi2.dll.mui;file;17408;33206;2020-11-03T12:41:34.051326Z;;;2785144255;4;0;1407374884396660;4096;40;0;0;2020-11-03T12:41:34.176297Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.051326Z +C:/Windows/SysWOW64/en-US/imapi2fs.dll.mui;file;289280;33206;2021-06-10T14:01:55.363547Z;;;2785144255;4;0;281474977765943;4096;568;0;0;2021-06-10T14:01:55.379171Z;2021-06-10T14:11:37.554825Z;2021-06-10T14:01:55.363547Z +C:/Windows/SysWOW64/en-US/inetres.dll.mui;file;30208;33206;2020-11-03T12:41:34.082574Z;;;2785144255;4;0;1407374884396710;4096;64;0;0;2020-11-03T12:41:34.207540Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.082574Z +C:/Windows/SysWOW64/en-US/InkObjCore.dll.mui;file;4608;33206;2020-11-03T12:41:38.628785Z;;;2785144255;4;0;1125899907689870;4096;16;0;0;2020-11-03T12:41:38.706891Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:38.628785Z +C:/Windows/SysWOW64/en-US/inseng.dll.mui;file;3584;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108340;4096;8;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/InstallService.dll.mui;file;4608;33206;2020-11-03T12:41:38.628785Z;;;2785144255;4;0;1125899907689890;4096;16;0;0;2020-11-03T12:41:38.722512Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:38.628785Z +C:/Windows/SysWOW64/en-US/iologmsg.dll.mui;file;42496;33206;2020-11-03T12:41:40.081657Z;;;2785144255;4;0;1125899907691140;4096;88;0;0;2020-11-03T12:41:40.206627Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.081657Z +C:/Windows/SysWOW64/en-US/ir32_32original.dll.mui;file;3584;33206;2020-11-03T12:41:35.566596Z;;;2785144255;2;0;1407374884398050;4096;8;0;0;2020-11-03T12:41:35.675945Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.566596Z +C:/Windows/SysWOW64/en-US/ir41_32original.dll.mui;file;12288;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108320;4096;24;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/ir50_32original.dll.mui;file;11776;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108320;4096;24;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/isoburn.exe.mui;file;8192;33206;2020-11-03T12:41:35.504110Z;;;2785144255;2;0;1407374884397890;4096;16;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.504110Z +C:/Windows/SysWOW64/en-US/ivfsrc.ax.mui;file;10240;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108320;4096;24;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/iyuv_32.dll.mui;file;3584;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397130;4096;8;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/joy.cpl.mui;file;10240;33206;2020-11-03T12:41:35.082304Z;;;2785144255;2;0;1407374884397680;4096;24;0;0;2020-11-03T12:41:35.176061Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.082304Z +C:/Windows/SysWOW64/en-US/jscript.dll.mui;file;13824;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396660;4096;32;0;0;2020-11-03T12:41:34.176297Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/jscript9.dll.mui;file;30720;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108350;4096;64;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/l2nacp.dll.mui;file;7168;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689250;4096;16;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/L2SecHC.dll.mui;file;56320;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689250;4096;112;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/Licenses;directory;0;16822;2020-11-03T12:41:50.282452Z;;;2785144255;1;0;27303072741254200;4096;0;0;0;2021-12-16T13:36:01.168838Z;2020-11-03T12:41:50.282452Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/en-US/Licenses/OEM;directory;0;16822;2020-11-03T12:41:50.282452Z;;;2785144255;1;0;1407374884227060;4096;0;0;0;2021-12-16T13:36:01.168838Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:50.282452Z +C:/Windows/SysWOW64/en-US/Licenses/OEM/Professional;directory;0;16822;2021-10-16T08:02:15.587175Z;;;2785144255;1;0;1407374884227060;4096;0;0;0;2021-12-16T13:36:01.168838Z;2021-10-16T08:02:15.587175Z;2020-11-03T12:41:50.282452Z +C:/Windows/SysWOW64/en-US/Licenses/OEM/Professional/license.rtf;file;140135;33206;2021-10-16T00:21:35.113168Z;;;2785144255;2;0;281474977858098;4096;280;0;0;2021-10-16T00:21:35.113168Z;2021-10-16T08:02:15.587175Z;2021-10-16T00:21:35.113168Z +C:/Windows/SysWOW64/en-US/Licenses/Volume;directory;0;16822;2020-11-03T12:41:50.282452Z;;;2785144255;1;0;1407374884227060;4096;0;0;0;2021-12-16T13:36:01.169840Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:50.282452Z +C:/Windows/SysWOW64/en-US/Licenses/Volume/Professional;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;1407374884227070;4096;0;0;0;2021-12-16T13:36:01.169840Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:50.282452Z +C:/Windows/SysWOW64/en-US/Licenses/Volume/Professional/license.rtf;file;539;33206;2020-11-03T12:41:33.488882Z;;;2785144255;2;0;1407374884396110;4096;8;0;0;2021-10-16T00:19:45.790946Z;2021-11-15T13:07:18.049433Z;2020-11-03T12:41:33.488882Z +C:/Windows/SysWOW64/en-US/Licenses/_Default;directory;0;16822;2020-11-03T12:41:50.282452Z;;;2785144255;1;0;1407374884227060;4096;0;0;0;2021-12-16T13:36:01.169840Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:50.282452Z +C:/Windows/SysWOW64/en-US/Licenses/_Default/Professional;directory;0;16822;2021-10-16T08:02:15.571552Z;;;2785144255;1;0;1407374884227060;4096;0;0;0;2021-12-16T13:36:01.169840Z;2021-10-16T08:02:15.571552Z;2020-11-03T12:41:50.282452Z +C:/Windows/SysWOW64/en-US/Licenses/_Default/Professional/license.rtf;file;140135;33206;2021-10-16T00:21:35.105044Z;;;2785144255;2;0;281474977858096;4096;280;0;0;2021-10-16T00:21:35.113168Z;2021-10-16T08:02:15.587175Z;2021-10-16T00:21:35.105044Z +C:/Windows/SysWOW64/en-US/licmgr10.dll.mui;file;4096;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108330;4096;8;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/lipeula.rtf;file;980;33206;2020-11-03T12:41:38.019387Z;;;2785144255;4;0;1125899907689180;4096;8;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:38.019387Z +C:/Windows/SysWOW64/en-US/listsvc.dll.mui;file;4096;33206;2020-11-03T12:41:35.066724Z;;;2785144255;4;0;1407374884397640;4096;8;0;0;2020-11-03T12:41:46.877004Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.066724Z +C:/Windows/SysWOW64/en-US/localsec.dll.mui;file;30720;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396290;4096;64;0;0;2020-11-03T12:41:33.692039Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/en-US/LockAppBroker.dll.mui;file;3584;33206;2020-11-03T12:41:40.081657Z;;;2785144255;4;0;1125899907691120;4096;8;0;0;2020-11-03T12:41:40.191007Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.066058Z +C:/Windows/SysWOW64/en-US/lpeula.rtf;file;980;33206;2020-11-03T12:41:38.019387Z;;;2785144255;4;0;1125899907689180;4096;8;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:38.019387Z +C:/Windows/SysWOW64/en-US/mapi32.dll.mui;file;53248;33206;2020-11-03T12:41:40.628465Z;;;2785144255;4;0;1125899907691700;4096;104;0;0;2020-11-03T12:41:40.737821Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.628465Z +C:/Windows/SysWOW64/en-US/mapistub.dll.mui;file;53248;33206;2020-11-03T12:41:40.628465Z;;;2785144255;4;0;1125899907691700;4096;104;0;0;2020-11-03T12:41:40.737821Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.628465Z +C:/Windows/SysWOW64/en-US/MbaeApi.dll.mui;file;5632;33206;2020-11-03T12:41:34.098160Z;;;2785144255;4;0;1407374884396740;4096;16;0;0;2020-11-03T12:41:34.238783Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.098160Z +C:/Windows/SysWOW64/en-US/MCCSEngineShared.dll.mui;file;3072;33206;2019-12-06T16:59:00Z;;;2785144255;4;0;1125899907648730;4096;8;0;0;2019-12-07T14:53:37.782785Z;2020-11-03T12:35:52.498036Z;2019-12-07T14:53:37.782785Z +C:/Windows/SysWOW64/en-US/mciavi32.dll.mui;file;8192;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397140;4096;16;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/mdminst.dll.mui;file;17920;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397460;4096;40;0;0;2020-11-03T12:41:35.097964Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/MessagingDataModel2.dll.mui;file;2560;33206;2019-12-07T14:50:58.533049Z;;;2785144255;4;0;1688849861029860;4096;8;0;0;2019-12-07T14:50:58.533049Z;2020-11-03T12:35:28.081381Z;2019-12-07T14:50:58.533049Z +C:/Windows/SysWOW64/en-US/MFC40.dll.mui;file;29696;33206;2020-11-03T12:41:41.143969Z;;;2785144255;2;0;1125899907692170;4096;64;0;0;2020-11-03T12:41:41.284560Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:41.143969Z +C:/Windows/SysWOW64/en-US/MFC40u.dll.mui;file;29696;33206;2020-11-03T12:41:41.143969Z;;;2785144255;2;0;1125899907692170;4096;64;0;0;2020-11-03T12:41:41.284560Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:41.143969Z +C:/Windows/SysWOW64/en-US/mi.dll.mui;file;6656;33206;2019-12-07T14:51:01.579981Z;;;2785144255;4;0;2251799814356180;4096;16;0;0;2019-12-07T14:51:01.579981Z;2020-11-03T12:35:20.130158Z;2019-12-07T14:51:01.579981Z +C:/Windows/SysWOW64/en-US/mibincodec.dll.mui;file;20992;33206;2019-12-07T14:51:01.579981Z;;;2785144255;4;0;2251799814356180;4096;48;0;0;2019-12-07T14:51:01.579981Z;2020-11-03T12:35:20.130158Z;2019-12-07T14:51:01.579981Z +C:/Windows/SysWOW64/en-US/Microsoft.Uev.AppAgent.dll.mui;file;4096;33206;2020-11-03T12:41:37.456985Z;;;2785144255;4;0;1125899907688770;4096;8;0;0;2020-11-03T12:41:37.550747Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:37.456985Z +C:/Windows/SysWOW64/en-US/miguiresource.dll.mui;file;3072;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396620;4096;8;0;0;2020-11-03T12:41:34.160676Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/mimofcodec.dll.mui;file;8704;33206;2020-11-03T12:41:40.659706Z;;;2785144255;4;0;1125899907691760;4096;24;0;0;2020-11-03T12:41:40.769057Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.659706Z +C:/Windows/SysWOW64/en-US/miutils.dll.mui;file;16896;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691760;4096;40;0;0;2020-11-03T12:41:40.769057Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/en-US/mmc.exe.mui;file;67584;33206;2020-11-03T12:41:34.098160Z;;;2785144255;4;0;1407374884396740;4096;136;0;0;2020-11-03T12:41:34.223161Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.098160Z +C:/Windows/SysWOW64/en-US/mmcbase.dll.mui;file;44544;33206;2020-11-03T12:41:34.098160Z;;;2785144255;4;0;1407374884396740;4096;88;0;0;2020-11-03T12:41:34.223161Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.098160Z +C:/Windows/SysWOW64/en-US/mmcndmgr.dll.mui;file;54272;33206;2020-11-03T12:41:34.098160Z;;;2785144255;4;0;1407374884396740;4096;112;0;0;2020-11-03T12:41:34.223161Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.098160Z +C:/Windows/SysWOW64/en-US/mmcshext.dll.mui;file;2560;33206;2020-11-03T12:41:34.098160Z;;;2785144255;4;0;1407374884396740;4096;8;0;0;2020-11-03T12:41:34.223161Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.098160Z +C:/Windows/SysWOW64/en-US/modemui.dll.mui;file;41984;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397460;4096;88;0;0;2020-11-03T12:41:35.097964Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/msacm32.drv.mui;file;2560;33206;2020-11-03T12:46:12.192963Z;;;2785144255;4;0;562949954402984;4096;8;0;0;2021-01-12T22:43:25.631953Z;2020-11-03T12:48:17.515014Z;2020-11-03T12:46:12.192963Z +C:/Windows/SysWOW64/en-US/mscpxl32.dll.mui;file;4096;33206;2020-11-03T12:41:35.504110Z;;;2785144255;2;0;1407374884397900;4096;8;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.504110Z +C:/Windows/SysWOW64/en-US/MsCtfMonitor.dll.mui;file;3072;33206;2019-12-07T14:51:01.517002Z;;;2785144255;4;0;1688849861029920;4096;8;0;0;2021-12-16T12:04:46.792899Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:51:01.517002Z +C:/Windows/SysWOW64/en-US/msdrm.dll.mui;file;5120;33206;2020-11-03T12:41:37.535091Z;;;2785144255;4;0;1125899907688970;4096;16;0;0;2020-11-03T12:41:37.613233Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:37.535091Z +C:/Windows/SysWOW64/en-US/msfeedsbs.dll.mui;file;2560;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108330;4096;8;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/msftedit.dll.mui;file;3072;33206;2020-11-03T12:41:38.597542Z;;;2785144255;4;0;1125899907689810;4096;8;0;0;2020-11-03T12:41:38.691270Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:38.597542Z +C:/Windows/SysWOW64/en-US/mshta.exe.mui;file;2560;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108320;4096;8;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/mshtmler.dll.mui;file;46080;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108320;4096;96;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/msjint40.dll.mui;file;139264;33206;2020-11-03T12:41:35.504110Z;;;2785144255;2;0;1407374884397920;4096;272;0;0;2020-11-03T12:41:35.629082Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.504110Z +C:/Windows/SysWOW64/en-US/msmpeg2enc.dll.mui;file;8192;33206;2020-11-03T12:41:35.957135Z;;;2785144255;2;0;1688849861108610;4096;16;0;0;2020-11-03T12:41:36.050871Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.957135Z +C:/Windows/SysWOW64/en-US/msoert2.dll.mui;file;3584;33206;2020-11-03T12:41:34.082574Z;;;2785144255;4;0;1407374884396710;4096;8;0;0;2020-11-03T12:41:34.207540Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.082574Z +C:/Windows/SysWOW64/en-US/msorc32r.dll.mui;file;13312;33206;2020-11-03T12:41:35.504110Z;;;2785144255;2;0;1407374884397900;4096;32;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.504110Z +C:/Windows/SysWOW64/en-US/mspaint.exe.mui;file;56832;33206;2020-11-03T12:42:07.326563Z;;;2785144255;4;0;1688849861070780;4096;112;0;0;2020-11-03T12:42:07.326563Z;2020-11-03T12:42:07.701465Z;2020-11-03T12:42:07.326563Z +C:/Windows/SysWOW64/en-US/msscript.ocx.mui;file;5632;33206;2019-12-07T14:51:02.346023Z;;;2785144255;2;0;1688849861029970;4096;16;0;0;2019-12-07T14:51:02.346023Z;2020-11-03T12:35:28.112623Z;2019-12-07T14:51:02.346023Z +C:/Windows/SysWOW64/en-US/mstask.dll.mui;file;43520;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691650;4096;88;0;0;2020-11-03T12:41:40.706575Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/en-US/msvfw32.dll.mui;file;7168;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397140;4096;16;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/msvidc32.dll.mui;file;3584;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397140;4096;8;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/mswstr10.dll.mui;file;3072;33206;2020-11-03T12:41:35.504110Z;;;2785144255;2;0;1407374884397920;4096;8;0;0;2020-11-03T12:41:35.629082Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:35.504110Z +C:/Windows/SysWOW64/en-US/msxml3r.dll.mui;file;43520;33206;2020-11-03T12:41:40.081657Z;;;2785144255;4;0;1125899907691150;4096;88;0;0;2020-11-03T12:41:40.206627Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.081657Z +C:/Windows/SysWOW64/en-US/msxml6r.dll.mui;file;79872;33206;2020-11-03T12:41:39.050646Z;;;2785144255;4;0;1125899907690190;4096;160;0;0;2020-11-03T12:41:39.159997Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:39.050646Z +C:/Windows/SysWOW64/en-US/mycomput.dll.mui;file;8704;33206;2020-11-03T12:41:33.582611Z;;;2785144255;4;0;1407374884396330;4096;24;0;0;2020-11-03T12:41:33.707663Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:33.582611Z +C:/Windows/SysWOW64/en-US/NcdProp.dll.mui;file;4608;33206;2020-11-03T12:41:34.113781Z;;;2785144255;4;0;1407374884396770;4096;16;0;0;2020-11-03T12:41:34.238783Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.113781Z +C:/Windows/SysWOW64/en-US/ncpa.cpl.mui;file;2560;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691190;4096;8;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/en-US/netcenter.dll.mui;file;7680;33206;2020-11-03T12:41:34.098160Z;;;2785144255;4;0;1407374884396750;4096;16;0;0;2020-11-03T12:41:34.238783Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.098160Z +C:/Windows/SysWOW64/en-US/netdiagfx.dll.mui;file;13312;33206;2020-11-03T12:41:34.613703Z;;;2785144255;4;0;1407374884397230;4096;32;0;0;2020-11-03T12:41:34.707392Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:34.613703Z +C:/Windows/SysWOW64/en-US/neth.dll.mui;file;72192;33206;2020-11-03T12:41:33.551381Z;;;2785144255;4;0;1407374884396250;4096;144;0;0;2020-11-03T12:41:33.676418Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:33.551381Z +C:/Windows/SysWOW64/en-US/netid.dll.mui;file;40448;33206;2020-11-03T12:41:40.081657Z;;;2785144255;4;0;1125899907691150;4096;80;0;0;2020-11-03T12:41:40.206627Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.081657Z +C:/Windows/SysWOW64/en-US/netsh.exe.mui;file;18944;33206;2020-11-03T12:41:33.551381Z;;;2785144255;4;0;1407374884396250;4096;40;0;0;2020-11-03T12:41:33.676418Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:33.551381Z +C:/Windows/SysWOW64/en-US/netshell.dll.mui;file;64000;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691190;4096;128;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.251209Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/en-US/NetworkExplorer.dll.mui;file;6144;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690870;4096;16;0;0;2020-11-03T12:41:39.784851Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/NetworkHelper.dll.mui;file;7680;33206;2019-12-06T16:59:00Z;;;2785144255;4;0;1125899907648540;4096;16;0;0;2019-12-07T14:53:37.782785Z;2020-11-03T12:35:52.419930Z;2019-12-07T14:53:37.782785Z +C:/Windows/SysWOW64/en-US/NetworkItemFactory.dll.mui;file;2560;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690870;4096;8;0;0;2020-11-03T12:41:39.784851Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/Ninput.dll.mui;file;3072;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1125899907513780;4096;8;0;0;2021-11-28T04:49:16.282086Z;2020-11-03T12:35:20.192605Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/en-US/nshwfp.dll.mui;file;62976;33206;2020-11-03T12:41:39.019359Z;;;2785144255;4;0;1125899907690150;4096;128;0;0;2020-11-03T12:41:39.144376Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.019359Z +C:/Windows/SysWOW64/en-US/ntdll.dll.mui;file;459264;33206;2021-06-10T14:01:55.463783Z;;;2785144255;4;0;281474977765962;4096;904;0;0;2021-06-10T14:01:55.526271Z;2021-06-10T14:11:37.554825Z;2021-06-10T14:01:55.463783Z +C:/Windows/SysWOW64/en-US/ntlanman.dll.mui;file;3584;33206;2020-11-03T12:41:36.957096Z;;;2785144255;4;0;1125899907688450;4096;8;0;0;2020-11-03T12:41:37.113305Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:36.957096Z +C:/Windows/SysWOW64/en-US/objsel.dll.mui;file;21504;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396290;4096;48;0;0;2020-11-03T12:41:33.692039Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/en-US/occache.dll.mui;file;10240;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396690;4096;24;0;0;2020-11-03T12:41:34.191923Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/odbcconf.exe.mui;file;5120;33206;2020-11-03T12:41:35.504110Z;;;2785144255;2;0;1407374884397910;4096;16;0;0;2020-11-03T12:41:35.629082Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.504110Z +C:/Windows/SysWOW64/en-US/odbcji32.dll.mui;file;38400;33206;2020-11-03T12:41:35.504110Z;;;2785144255;2;0;1407374884397900;4096;80;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.504110Z +C:/Windows/SysWOW64/en-US/olecli32.dll.mui;file;3584;33206;2020-11-03T12:41:41.097106Z;;;2785144255;2;0;1125899907692060;4096;8;0;0;2020-11-03T12:41:41.206453Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:41.097106Z +C:/Windows/SysWOW64/en-US/onex.dll.mui;file;17920;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689230;4096;40;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/onexui.dll.mui;file;4608;33206;2020-11-03T12:41:41.081453Z;;;2785144255;2;0;1125899907692020;4096;16;0;0;2020-11-03T12:41:41.190834Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:41.081453Z +C:/Windows/SysWOW64/en-US/osbaseln.dll.mui;file;3072;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861030090;4096;8;0;0;2019-12-07T14:51:01.496025Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:51:01.496025Z +C:/Windows/SysWOW64/en-US/p2p.dll.mui;file;18944;33206;2020-11-03T12:41:35.051091Z;;;2785144255;4;0;1407374884397610;4096;40;0;0;2020-11-03T12:41:35.144789Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.051091Z +C:/Windows/SysWOW64/en-US/p2pnetsh.dll.mui;file;39424;33206;2020-11-03T12:41:35.582228Z;;;2785144255;2;0;1407374884398070;4096;80;0;0;2020-11-03T12:41:35.691566Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.582228Z +C:/Windows/SysWOW64/en-US/packager.dll.mui;file;6144;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396340;4096;16;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/PackageStateRoaming.dll.mui;file;24064;33206;2019-12-07T14:50:58.486027Z;;;2785144255;4;0;1688849861030100;4096;48;0;0;2019-12-07T14:50:58.486027Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:50:58.486027Z +C:/Windows/SysWOW64/en-US/pcaui.dll.mui;file;13824;33206;2020-11-03T12:41:39.113118Z;;;2785144255;4;0;1125899907690380;4096;32;0;0;2020-11-03T12:41:39.222482Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.113118Z +C:/Windows/SysWOW64/en-US/PeerDist.dll.mui;file;25600;33206;2020-11-03T12:41:36.910198Z;;;2785144255;4;0;1125899907688350;4096;56;0;0;2020-11-03T12:41:37.019578Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:36.910198Z +C:/Windows/SysWOW64/en-US/PeerDistSh.dll.mui;file;44032;33206;2020-11-03T12:41:36.910198Z;;;2785144255;4;0;1125899907688350;4096;88;0;0;2020-11-03T12:41:37.019578Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:36.910198Z +C:/Windows/SysWOW64/en-US/perfhost.exe.mui;file;5120;33206;2020-11-03T12:41:41.097106Z;;;2785144255;2;0;1125899907692070;4096;16;0;0;2020-11-03T12:41:41.206453Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:41.097106Z +C:/Windows/SysWOW64/en-US/PhoneUtilRes.dll.mui;file;4096;33206;2020-11-03T12:41:33.535747Z;;;2785144255;4;0;1407374884396200;4096;8;0;0;2020-11-03T12:41:33.660801Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.535747Z +C:/Windows/SysWOW64/en-US/PhotoScreensaver.scr.mui;file;6656;33206;2020-11-03T12:41:36.441557Z;;;2785144255;2;0;1125899907687910;4096;16;0;0;2020-11-03T12:41:36.535322Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:36.441557Z +C:/Windows/SysWOW64/en-US/PlayToStatusProvider.dll.mui;file;2560;33206;2020-11-03T12:41:34.035705Z;;;2785144255;2;0;1407374884396600;4096;8;0;0;2020-11-03T12:41:34.145053Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/pnrpnsp.dll.mui;file;2560;33206;2020-11-03T12:41:35.051091Z;;;2785144255;4;0;1407374884397610;4096;8;0;0;2020-11-03T12:41:35.144789Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.051091Z +C:/Windows/SysWOW64/en-US/portabledevicestatus.dll.mui;file;3584;33206;2020-11-03T12:41:35.957135Z;;;2785144255;4;0;1688849861108630;4096;8;0;0;2020-11-03T12:41:36.050871Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.957135Z +C:/Windows/SysWOW64/en-US/PortableDeviceSyncProvider.dll.mui;file;6656;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396350;4096;16;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/pots.dll.mui;file;3584;33206;2020-11-03T12:41:34.598073Z;;;2785144255;4;0;1407374884397210;4096;8;0;0;2020-11-03T12:41:34.707392Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:34.598073Z +C:/Windows/SysWOW64/en-US/provplatformdesktop.dll.mui;file;6144;33206;2020-11-03T12:41:35.066724Z;;;2785144255;4;0;1407374884397620;4096;16;0;0;2020-11-03T12:41:35.160410Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.066724Z +C:/Windows/SysWOW64/en-US/ProximityCommon.dll.mui;file;5632;33206;2020-11-03T12:41:35.066724Z;;;2785144255;4;0;1407374884397630;4096;16;0;0;2020-11-03T12:41:35.160410Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.066724Z +C:/Windows/SysWOW64/en-US/pshed.dll.mui;file;8704;33206;2020-11-03T12:41:39.597396Z;;;2785144255;4;0;1125899907690740;4096;24;0;0;2020-11-03T12:41:39.706744Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.597396Z +C:/Windows/SysWOW64/en-US/PSModuleDiscoveryProvider.dll.mui;file;9216;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691760;4096;24;0;0;2020-11-03T12:41:40.769057Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/en-US/pwrshplugin.dll.mui;file;4608;33206;2020-11-03T12:41:34.113781Z;;;2785144255;4;0;1407374884396780;4096;16;0;0;2020-11-03T12:41:34.238783Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:34.113781Z +C:/Windows/SysWOW64/en-US/qdv.dll.mui;file;4608;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397130;4096;16;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/qdvd.dll.mui;file;9728;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397130;4096;24;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/qedit.dll.mui;file;15360;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397490;4096;32;0;0;2020-11-03T12:41:35.113552Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619310;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.439645Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/en-US/raschap.dll.mui;file;4608;33206;2020-11-03T12:41:40.144144Z;;;2785144255;4;0;1125899907691280;4096;16;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.144144Z +C:/Windows/SysWOW64/en-US/rasgcw.dll.mui;file;45056;33206;2020-11-03T12:41:40.081657Z;;;2785144255;4;0;1125899907691160;4096;88;0;0;2020-11-03T12:41:40.206627Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.081657Z +C:/Windows/SysWOW64/en-US/rasplap.dll.mui;file;4096;33206;2020-11-03T12:41:40.159764Z;;;2785144255;4;0;1125899907691300;4096;8;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.159764Z +C:/Windows/SysWOW64/en-US/rastls.dll.mui;file;24064;33206;2020-11-03T12:41:40.144144Z;;;2785144255;4;0;1125899907691280;4096;48;0;0;2020-11-03T12:41:40.253491Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.144144Z +C:/Windows/SysWOW64/en-US/rastlsext.dll.mui;file;22016;33206;2020-11-03T12:41:40.159764Z;;;2785144255;4;0;1125899907691300;4096;48;0;0;2020-11-03T12:41:40.269113Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.159764Z +C:/Windows/SysWOW64/en-US/rdvgogl32.dll.mui;file;3584;33206;2021-04-17T10:35:53.460987Z;;;2785144255;2;0;844424930952373;4096;8;0;0;2021-04-17T16:46:43.342569Z;2021-04-17T16:46:43.342569Z;2021-04-17T10:35:53.457996Z +C:/Windows/SysWOW64/en-US/reg.exe.mui;file;38912;33206;2020-11-03T12:41:33.551381Z;;;2785144255;4;0;1407374884396250;4096;80;0;0;2020-11-03T12:41:33.676418Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.551381Z +C:/Windows/SysWOW64/en-US/regedit.exe.mui;file;46080;33206;2020-11-03T12:41:34.551179Z;;;2785144255;4;0;1407374884397090;4096;96;0;0;2020-11-03T12:41:34.660528Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:34.551179Z +C:/Windows/SysWOW64/en-US/register-cimprovider.exe.mui;file;9216;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691760;4096;24;0;0;2020-11-03T12:41:40.769057Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/en-US/RemoveDeviceContextHandler.dll.mui;file;3584;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396360;4096;8;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/RemoveDeviceElevated.dll.mui;file;2560;33206;2019-12-07T14:50:48.548472Z;;;2785144255;4;0;1688849861030270;4096;8;0;0;2019-12-07T14:50:48.548472Z;2020-11-03T12:35:28.190730Z;2019-12-07T14:50:48.548472Z +C:/Windows/SysWOW64/en-US/RMActivate.exe.mui;file;2560;33206;2019-12-07T14:50:56.924033Z;;;2785144255;4;0;1688849861030280;4096;8;0;0;2019-12-07T14:50:56.924033Z;2020-11-03T12:35:28.190730Z;2019-12-07T14:50:56.924033Z +C:/Windows/SysWOW64/en-US/RMActivate_isv.exe.mui;file;2560;33206;2019-12-07T14:50:56.924033Z;;;2785144255;4;0;1688849861030280;4096;8;0;0;2019-12-07T14:50:56.924033Z;2020-11-03T12:35:28.190730Z;2019-12-07T14:50:56.924033Z +C:/Windows/SysWOW64/en-US/RMActivate_ssp.exe.mui;file;2560;33206;2019-12-07T14:51:01.610991Z;;;2785144255;2;0;1688849861030280;4096;8;0;0;2019-12-07T14:51:01.610991Z;2020-11-03T12:35:28.190730Z;2019-12-07T14:51:01.610991Z +C:/Windows/SysWOW64/en-US/RMActivate_ssp_isv.exe.mui;file;3072;33206;2019-12-07T14:50:56.924033Z;;;2785144255;4;0;1688849861030280;4096;8;0;0;2019-12-07T14:50:56.924033Z;2020-11-03T12:35:28.206351Z;2019-12-07T14:50:56.924033Z +C:/Windows/SysWOW64/en-US/RpcNs4.dll.mui;file;4096;33206;2020-11-03T12:41:39.550531Z;;;2785144255;4;0;1125899907690650;4096;8;0;0;2020-11-03T12:41:39.675502Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.550531Z +C:/Windows/SysWOW64/en-US/rpcnsh.dll.mui;file;15872;33206;2020-11-03T12:41:39.566153Z;;;2785144255;4;0;1125899907690660;4096;32;0;0;2020-11-03T12:41:39.675502Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.566153Z +C:/Windows/SysWOW64/en-US/rpcping.exe.mui;file;41984;33206;2020-11-03T12:41:39.566153Z;;;2785144255;4;0;1125899907690660;4096;88;0;0;2020-11-03T12:41:39.675502Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.566153Z +C:/Windows/SysWOW64/en-US/rsop.msc;file;43566;33206;2020-11-03T12:41:36.504042Z;;;2785144255;4;0;1125899907688080;4096;88;0;0;2020-11-03T12:41:36.597805Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:36.504042Z +C:/Windows/SysWOW64/en-US/rstrui.exe.mui;file;30208;33206;2020-11-03T12:41:35.066724Z;;;2785144255;4;0;1407374884397640;4096;64;0;0;2020-11-03T12:41:35.160410Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.066724Z +C:/Windows/SysWOW64/en-US/rtutils.dll.mui;file;3072;33206;2019-12-07T14:51:00.830025Z;;;2785144255;4;0;1125899907513870;4096;8;0;0;2019-12-07T14:51:00.830025Z;2020-11-03T12:35:20.426924Z;2019-12-07T14:51:00.830025Z +C:/Windows/SysWOW64/en-US/sc.exe.mui;file;73728;33206;2020-11-03T12:41:33.551381Z;;;2785144255;4;0;1407374884396250;4096;144;0;0;2020-11-03T12:41:33.676418Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.551381Z +C:/Windows/SysWOW64/en-US/schedsvc.dll.mui;file;50688;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691660;4096;104;0;0;2020-11-03T12:41:40.706575Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/en-US/schtasks.exe.mui;file;76800;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691650;4096;152;0;0;2020-11-03T12:41:40.706575Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/en-US/scrnsave.scr.mui;file;3072;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689210;4096;8;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/scrptadm.dll.mui;file;22528;33206;2020-11-03T12:41:36.504042Z;;;2785144255;4;0;1125899907688080;4096;48;0;0;2020-11-03T12:41:36.597805Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:36.504042Z +C:/Windows/SysWOW64/en-US/searchfolder.dll.mui;file;152064;33206;2020-11-03T12:41:40.175385Z;;;2785144255;4;0;1125899907691340;4096;304;0;0;2020-11-03T12:41:40.269113Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/en-US/secinit.exe.mui;file;2560;33206;2020-11-03T12:41:40.066058Z;;;2785144255;4;0;1125899907691110;4096;8;0;0;2020-11-03T12:41:40.191007Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.066058Z +C:/Windows/SysWOW64/en-US/sendmail.dll.mui;file;6144;33206;2020-11-03T12:41:34.082574Z;;;2785144255;4;0;1407374884396710;4096;16;0;0;2020-11-03T12:41:34.207540Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:34.082574Z +C:/Windows/SysWOW64/en-US/serialui.dll.mui;file;5632;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397460;4096;16;0;0;2020-11-03T12:41:35.097964Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/serwvdrv.dll.mui;file;3072;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397470;4096;8;0;0;2020-11-03T12:41:35.097964Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/setup16.exe.mui;file;6144;33206;2020-11-03T12:41:41.159589Z;;;2785144255;2;0;1125899907692200;4096;16;0;0;2020-11-03T12:41:41.300187Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:41.159589Z +C:/Windows/SysWOW64/en-US/shellstyle.dll.mui;file;29696;33206;2019-12-07T14:51:01.517002Z;;;2785144255;4;0;1688849861030410;4096;64;0;0;2019-12-07T14:51:01.517002Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:51:01.517002Z +C:/Windows/SysWOW64/en-US/shutdown.exe.mui;file;10240;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690850;4096;24;0;0;2020-11-03T12:41:39.769230Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/shwebsvc.dll.mui;file;23040;33206;2020-11-03T12:41:40.581569Z;;;2785144255;4;0;1125899907691590;4096;48;0;0;2020-11-03T12:41:40.690919Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.581569Z +C:/Windows/SysWOW64/en-US/SimAuth.dll.mui;file;8192;33206;2020-11-03T12:41:37.519502Z;;;2785144255;4;0;1125899907688940;4096;16;0;0;2020-11-03T12:41:37.613233Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:37.519502Z +C:/Windows/SysWOW64/en-US/slc.dll.mui;file;77824;33206;2020-11-03T12:41:41.128347Z;;;2785144255;2;0;1125899907692150;4096;152;0;0;2020-11-03T12:41:41.268939Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:41.128347Z +C:/Windows/SysWOW64/en-US/SMBHelperClass.dll.mui;file;7680;33206;2020-11-03T12:41:40.159764Z;;;2785144255;4;0;1125899907691320;4096;16;0;0;2020-11-03T12:41:40.269113Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:40.159764Z +C:/Windows/SysWOW64/en-US/sndvol.exe.mui;file;5632;33206;2020-11-03T12:41:39.128753Z;;;2785144255;4;0;1125899907690390;4096;16;0;0;2020-11-03T12:41:39.222482Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.128753Z +C:/Windows/SysWOW64/en-US/sndvolsso.dll.mui;file;7168;33206;2020-11-03T12:41:39.128753Z;;;2785144255;4;0;1125899907690390;4096;16;0;0;2020-11-03T12:41:39.222482Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.128753Z +C:/Windows/SysWOW64/en-US/spp.dll.mui;file;6144;33206;2020-11-03T12:41:33.551381Z;;;2785144255;4;0;1407374884396220;4096;16;0;0;2020-11-03T12:41:33.660801Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.551381Z +C:/Windows/SysWOW64/en-US/sppc.dll.mui;file;78336;33206;2020-11-03T12:41:41.128347Z;;;2785144255;2;0;1125899907692150;4096;160;0;0;2020-11-03T12:41:41.268939Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:41.128347Z +C:/Windows/SysWOW64/en-US/srcore.dll.mui;file;12288;33206;2020-11-03T12:41:35.066724Z;;;2785144255;4;0;1407374884397640;4096;24;0;0;2020-11-03T12:41:35.160410Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:35.066724Z +C:/Windows/SysWOW64/en-US/srm.dll.mui;file;147968;33206;2020-11-03T12:41:36.988304Z;;;2785144255;2;0;1125899907688500;4096;296;0;0;2020-11-03T12:41:37.144554Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:36.988304Z +C:/Windows/SysWOW64/en-US/srmshell.dll.mui;file;7168;33206;2020-11-03T12:41:36.988304Z;;;2785144255;2;0;1125899907688510;4096;16;0;0;2020-11-03T12:41:37.144554Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:36.988304Z +C:/Windows/SysWOW64/en-US/Startupscan.dll.mui;file;3072;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690860;4096;8;0;0;2020-11-03T12:41:39.769230Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/stobject.dll.mui;file;7680;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689210;4096;16;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/StorageContextHandler.dll.mui;file;3072;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396360;4096;8;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/svchost.exe.mui;file;2560;33206;2020-11-03T12:41:39.566153Z;;;2785144255;4;0;1125899907690680;4096;8;0;0;2020-11-03T12:41:39.675502Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:39.566153Z +C:/Windows/SysWOW64/en-US/sxproxy.dll.mui;file;5120;33206;2020-11-03T12:41:33.551381Z;;;2785144255;4;0;1407374884396220;4096;16;0;0;2020-11-03T12:41:33.660801Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:33.551381Z +C:/Windows/SysWOW64/en-US/sxs.dll.mui;file;25600;33206;2020-11-03T12:41:41.128347Z;;;2785144255;2;0;1125899907692150;4096;56;0;0;2020-11-03T12:41:41.268939Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:41.128347Z +C:/Windows/SysWOW64/en-US/sxstrace.exe.mui;file;15872;33206;2020-11-03T12:41:41.128347Z;;;2785144255;2;0;1125899907692150;4096;32;0;0;2020-11-03T12:41:41.268939Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:41.128347Z +C:/Windows/SysWOW64/en-US/SyncController.dll.mui;file;13824;33206;2019-12-06T16:59:00Z;;;2785144255;4;0;1125899907648650;4096;32;0;0;2019-12-07T14:53:37.782785Z;2020-11-03T12:35:52.466793Z;2019-12-07T14:53:37.782785Z +C:/Windows/SysWOW64/en-US/SyncRes.dll.mui;file;28672;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648830;4096;56;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.544900Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/en-US/SyncUtil.dll.mui;file;5120;33206;2019-12-06T16:59:00Z;;;2785144255;4;0;1125899907648710;4096;16;0;0;2019-12-07T14:53:37.735771Z;2020-11-03T12:35:52.498036Z;2019-12-07T14:53:37.735771Z +C:/Windows/SysWOW64/en-US/sysdm.cpl.mui;file;33792;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397150;4096;72;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.266831Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/systeminfo.exe.mui;file;13824;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397480;4096;32;0;0;2020-11-03T12:41:35.113552Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/tapi3.dll.mui;file;11776;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397180;4096;24;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/tapi32.dll.mui;file;2560;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397180;4096;8;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/tapisrv.dll.mui;file;26624;33206;2020-11-03T12:41:34.598073Z;;;2785144255;4;0;1407374884397190;4096;56;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.598073Z +C:/Windows/SysWOW64/en-US/tapiui.dll.mui;file;47616;33206;2020-11-03T12:41:34.598073Z;;;2785144255;4;0;1407374884397180;4096;96;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/taskcomp.dll.mui;file;13824;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691650;4096;32;0;0;2020-11-03T12:41:40.706575Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/en-US/taskkill.exe.mui;file;16384;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397480;4096;32;0;0;2020-11-03T12:41:35.113552Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/tasklist.exe.mui;file;15872;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397480;4096;32;0;0;2020-11-03T12:41:35.113552Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/taskschd.dll.mui;file;7680;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861030530;4096;16;0;0;2021-12-16T12:04:59.029387Z;2020-11-03T12:35:28.393808Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/en-US/taskschd.msc;file;145059;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691650;4096;288;0;0;2020-11-03T12:41:40.706575Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/en-US/tcmsetup.exe.mui;file;6656;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397180;4096;16;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/telephon.cpl.mui;file;2560;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397180;4096;8;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/termmgr.dll.mui;file;4096;33206;2019-12-07T14:50:49.548780Z;;;2785144255;4;0;1688849861030540;4096;8;0;0;2019-12-07T14:50:49.548780Z;2020-11-03T12:35:28.393808Z;2019-12-07T14:50:49.548780Z +C:/Windows/SysWOW64/en-US/TetheringService.dll.mui;file;4608;33206;2020-11-03T12:41:37.488257Z;;;2785144255;4;0;1125899907688850;4096;16;0;0;2020-11-03T12:41:37.581990Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:37.488257Z +C:/Windows/SysWOW64/en-US/themecpl.dll.mui;file;15360;33206;2020-11-03T12:41:34.598073Z;;;2785144255;4;0;1407374884397200;4096;32;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.598073Z +C:/Windows/SysWOW64/en-US/themeui.dll.mui;file;10752;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691670;4096;24;0;0;2020-11-03T12:41:40.722194Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/en-US/tsgqec.dll.mui;file;3072;33206;2020-11-03T12:41:34.988595Z;;;2785144255;4;0;1407374884397440;4096;8;0;0;2020-11-03T12:41:35.097964Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.988595Z +C:/Windows/SysWOW64/en-US/TtlsAuth.dll.mui;file;4096;33206;2020-11-03T12:41:37.519502Z;;;2785144255;4;0;1125899907688930;4096;8;0;0;2020-11-03T12:41:37.597611Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:37.519502Z +C:/Windows/SysWOW64/en-US/TtlsCfg.dll.mui;file;4608;33206;2020-11-03T12:41:37.519502Z;;;2785144255;4;0;1125899907688930;4096;16;0;0;2020-11-03T12:41:37.597611Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:37.519502Z +C:/Windows/SysWOW64/en-US/twext.dll.mui;file;6144;33206;2020-11-03T12:41:40.581569Z;;;2785144255;4;0;1125899907691590;4096;16;0;0;2020-11-03T12:41:40.690919Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.581569Z +C:/Windows/SysWOW64/en-US/twinapi.dll.mui;file;5120;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691680;4096;16;0;0;2020-11-03T12:41:40.722194Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/en-US/twinui.appcore.dll.mui;file;52224;33206;2020-11-03T12:41:38.597542Z;;;2785144255;4;0;1125899907689820;4096;104;0;0;2020-11-03T12:41:38.691270Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.597542Z +C:/Windows/SysWOW64/en-US/uicom.dll.mui;file;2560;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397460;4096;8;0;0;2020-11-03T12:41:35.097964Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/UIRibbon.dll.mui;file;18944;33206;2020-11-03T12:41:40.175385Z;;;2785144255;4;0;1125899907691330;4096;40;0;0;2020-11-03T12:41:40.269113Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/en-US/urlmon.dll.mui;file;54272;33206;2020-11-03T12:41:40.066058Z;;;2785144255;4;0;1125899907691100;4096;112;0;0;2020-11-03T12:41:40.191007Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.066058Z +C:/Windows/SysWOW64/en-US/user32.dll.mui;file;17408;33206;2020-11-03T12:41:39.050646Z;;;2785144255;4;0;1125899907690200;4096;40;0;0;2020-11-03T12:41:46.923880Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:39.050646Z +C:/Windows/SysWOW64/en-US/UserDeviceRegistration.dll.mui;file;3072;33206;2021-04-17T10:35:53.570512Z;;;2785144255;4;0;844424930952379;4096;8;0;0;2021-10-03T19:09:43.803701Z;2021-11-11T08:10:02.368694Z;2021-04-17T10:35:53.566517Z +C:/Windows/SysWOW64/en-US/UserDeviceRegistration.Ngc.dll.mui;file;3072;33206;2021-04-17T10:35:53.554486Z;;;2785144255;4;0;844424930952378;4096;8;0;0;2021-10-03T19:09:43.792045Z;2021-11-11T08:10:02.368694Z;2021-04-17T10:35:53.549203Z +C:/Windows/SysWOW64/en-US/VAN.dll.mui;file;7168;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397480;4096;16;0;0;2020-11-03T12:41:35.113552Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/en-US/vfwwdm32.dll.mui;file;10240;33206;2020-11-03T12:41:34.566832Z;;;2785144255;4;0;1407374884397130;4096;24;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/WABSyncProvider.dll.mui;file;6656;33206;2020-11-03T12:41:33.598274Z;;;2785144255;4;0;1407374884396350;4096;16;0;0;2020-11-03T12:41:33.723283Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:33.598274Z +C:/Windows/SysWOW64/en-US/wavemsp.dll.mui;file;2560;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397180;4096;8;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/wcncsvc.dll.mui;file;5632;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689200;4096;16;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/wcnwiz.dll.mui;file;14336;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689200;4096;32;0;0;2020-11-03T12:41:38.144363Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/WebcamUi.dll.mui;file;15872;33206;2020-11-03T12:41:35.972756Z;;;2785144255;4;0;1688849861108690;4096;32;0;0;2020-11-03T12:41:36.066495Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.972756Z +C:/Windows/SysWOW64/en-US/webcheck.dll.mui;file;33280;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396680;4096;72;0;0;2020-11-03T12:41:34.191923Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/wecsvc.dll.mui;file;6656;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396610;4096;16;0;0;2020-11-03T12:41:34.145053Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/wecutil.exe.mui;file;49664;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396610;4096;104;0;0;2020-11-03T12:41:34.145053Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/wevtfwd.dll.mui;file;5632;33206;2020-11-03T12:41:34.035705Z;;;2785144255;4;0;1407374884396610;4096;16;0;0;2020-11-03T12:41:34.145053Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.035705Z +C:/Windows/SysWOW64/en-US/wextract.exe.mui;file;12288;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108340;4096;24;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/WF.msc;file;115109;33206;2020-11-03T12:41:39.644259Z;;;2785144255;4;0;1125899907690840;4096;232;0;0;2020-11-03T12:41:39.753608Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:39.644259Z +C:/Windows/SysWOW64/en-US/wiadss.dll.mui;file;3072;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108310;4096;8;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/en-US/wimgapi.dll.mui;file;16384;33206;2020-11-03T12:41:39.550531Z;;;2785144255;4;0;1125899907690650;4096;32;0;0;2020-11-03T12:41:39.675502Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:39.550531Z +C:/Windows/SysWOW64/en-US/Windows.ApplicationModel.dll.mui;file;4608;33206;2020-11-03T12:41:38.613163Z;;;2785144255;4;0;1125899907689840;4096;16;0;0;2020-11-03T12:41:38.706891Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.613163Z +C:/Windows/SysWOW64/en-US/Windows.ApplicationModel.Store.dll.mui;file;8192;33206;2020-11-03T12:41:38.628785Z;;;2785144255;4;0;1125899907689900;4096;16;0;0;2020-11-03T12:41:38.722512Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.628785Z +C:/Windows/SysWOW64/en-US/Windows.ApplicationModel.Store.TestingFramework.dll.mui;file;3072;33206;2020-11-03T12:41:38.628785Z;;;2785144255;4;0;1125899907689900;4096;8;0;0;2020-11-03T12:41:38.722512Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.628785Z +C:/Windows/SysWOW64/en-US/Windows.Gaming.Input.dll.mui;file;3072;33206;2019-12-07T14:50:58.486027Z;;;2785144255;4;0;1688849861030770;4096;8;0;0;2019-12-07T14:50:58.486027Z;2020-11-03T12:35:28.456292Z;2019-12-07T14:50:58.486027Z +C:/Windows/SysWOW64/en-US/Windows.Graphics.Printing.3D.dll.mui;file;7168;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1688849861030770;4096;16;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:28.456292Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/en-US/Windows.Internal.SecurityMitigationsBroker.dll.mui;file;8192;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396690;4096;16;0;0;2020-11-03T12:41:34.191923Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/en-US/Windows.Networking.Proximity.dll.mui;file;7168;33206;2019-12-07T14:50:50.251406Z;;;2785144255;4;0;1688849861030790;4096;16;0;0;2019-12-07T14:50:50.251406Z;2020-11-03T12:35:28.471914Z;2019-12-07T14:50:50.251406Z +C:/Windows/SysWOW64/en-US/Windows.Storage.ApplicationData.dll.mui;file;8192;33206;2019-12-07T14:50:58.564075Z;;;2785144255;4;0;1688849861030800;4096;16;0;0;2021-11-11T11:22:00.920925Z;2020-11-03T12:35:28.471914Z;2019-12-07T14:50:58.564075Z +C:/Windows/SysWOW64/en-US/Windows.System.Profile.HardwareId.dll.mui;file;3072;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397140;4096;8;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.566832Z +C:/Windows/SysWOW64/en-US/Windows.UI.Input.Inking.dll.mui;file;3072;33206;2019-12-07T14:50:58.517035Z;;;2785144255;4;0;1688849861030810;4096;8;0;0;2019-12-07T14:50:58.517035Z;2020-11-03T12:35:28.471914Z;2019-12-07T14:50:58.517035Z +C:/Windows/SysWOW64/en-US/windows.ui.xaml.dll.mui;file;15872;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907637260;4096;32;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:44.406090Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/en-US/winmsipc.dll.mui;file;23040;33206;2020-11-03T12:41:39.081878Z;;;2785144255;4;0;1125899907690280;4096;48;0;0;2020-11-03T12:41:39.175619Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:39.081878Z +C:/Windows/SysWOW64/en-US/Winrs.exe.mui;file;18432;33206;2020-11-03T12:41:35.019855Z;;;2785144255;4;0;1407374884397520;4096;40;0;0;2020-11-03T12:41:35.129168Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.019855Z +C:/Windows/SysWOW64/en-US/WinSATAPI.dll.mui;file;7168;33206;2020-11-03T12:41:35.019855Z;;;2785144255;4;0;1407374884397500;4096;16;0;0;2020-11-03T12:41:35.113552Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.019855Z +C:/Windows/SysWOW64/en-US/winsrv.dll.mui;file;5632;33206;2020-11-03T12:41:39.597396Z;;;2785144255;4;0;1125899907690760;4096;16;0;0;2020-11-03T12:41:39.722366Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:39.597396Z +C:/Windows/SysWOW64/en-US/winver.exe.mui;file;2560;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397160;4096;8;0;0;2020-11-03T12:41:34.691771Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/en-US/Wisp.dll.mui;file;3072;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861030840;4096;8;0;0;2019-12-07T14:51:01.504910Z;2020-11-03T12:35:28.487535Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/en-US/wlanapi.dll.mui;file;16384;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689230;4096;32;0;0;2021-10-03T18:55:11.182068Z;2021-11-11T08:10:02.370712Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/en-US/WLanConn.dll.mui;file;8192;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691180;4096;16;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/en-US/wlandlg.dll.mui;file;4096;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689250;4096;8;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/wlanext.exe.mui;file;2560;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689230;4096;8;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/wlangpui.dll.mui;file;50688;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689240;4096;104;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/wlanmm.dll.mui;file;4608;33206;2020-11-03T12:41:34.098160Z;;;2785144255;4;0;1407374884396750;4096;16;0;0;2020-11-03T12:41:34.238783Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.098160Z +C:/Windows/SysWOW64/en-US/wlanpref.dll.mui;file;18944;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689250;4096;40;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/wlansvc.dll.mui;file;78848;33206;2021-10-03T19:03:27.754285Z;;;2785144255;4;0;1688849861188130;4096;160;0;0;2021-10-03T19:03:31.513056Z;2021-10-03T19:51:39.720577Z;2021-10-03T19:03:27.751007Z +C:/Windows/SysWOW64/en-US/wlanui.dll.mui;file;13312;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689250;4096;32;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/wlanutil.dll.mui;file;2560;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689240;4096;8;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/wldap32.dll.mui;file;5632;33206;2020-11-03T12:41:39.581774Z;;;2785144255;4;0;1125899907690700;4096;16;0;0;2020-11-03T12:41:39.691123Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:39.581774Z +C:/Windows/SysWOW64/en-US/wlgpclnt.dll.mui;file;4096;33206;2020-11-03T12:41:38.050631Z;;;2785144255;4;0;1125899907689230;4096;8;0;0;2020-11-03T12:41:38.159983Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:38.050631Z +C:/Windows/SysWOW64/en-US/wmiprop.dll.mui;file;3584;33206;2020-11-03T12:41:35.019855Z;;;2785144255;4;0;1407374884397500;4096;8;0;0;2020-11-03T12:41:35.113552Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.019855Z +C:/Windows/SysWOW64/en-US/wmitomi.dll.mui;file;6144;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691750;4096;16;0;0;2020-11-03T12:41:40.769057Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/en-US/wshext.dll.mui;file;5632;33206;2020-11-03T12:41:40.175385Z;;;2785144255;4;0;1125899907691330;4096;16;0;0;2020-11-03T12:41:40.269113Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.175385Z +C:/Windows/SysWOW64/en-US/WsmRes.dll.mui;file;368128;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691730;4096;720;0;0;2021-12-16T12:05:53.992898Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/en-US/WsmSvc.dll.mui;file;5632;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691730;4096;16;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/en-US/wuapi.dll.mui;file;10240;33206;2021-10-16T00:21:35.170084Z;;;2785144255;4;0;281474977858111;4096;24;0;0;2021-10-16T00:21:35.201356Z;2021-10-16T08:02:15.571552Z;2021-10-16T00:21:35.170084Z +C:/Windows/SysWOW64/en-US/WWAApi.dll.mui;file;3584;33206;2019-12-07T14:50:58.533049Z;;;2785144255;4;0;1688849861030920;4096;8;0;0;2019-12-07T14:50:58.533049Z;2020-11-03T12:35:28.503158Z;2019-12-07T14:50:58.533049Z +C:/Windows/SysWOW64/en-US/WWAHost.exe.mui;file;19968;33206;2019-12-07T09:09:02.098689Z;;;2785144255;4;0;1125899907640240;4096;40;0;0;2019-12-07T09:09:02.098689Z;2020-11-03T12:41:50.282452Z;2019-12-07T09:09:02.098689Z +C:/Windows/SysWOW64/en-US/XInput1_4.dll.mui;file;2560;33206;2020-11-03T12:41:34.020053Z;;;2785144255;4;0;1407374884396580;4096;8;0;0;2020-11-03T12:41:34.129433Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:34.020053Z +C:/Windows/SysWOW64/en-US/XInput9_1_0.dll.mui;file;2560;33206;2020-11-03T12:41:35.082304Z;;;2785144255;2;0;1407374884397690;4096;8;0;0;2020-11-03T12:41:35.191681Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.082304Z +C:/Windows/SysWOW64/en-US/xwizard.exe.mui;file;5120;33206;2020-11-03T12:41:35.019855Z;;;2785144255;4;0;1407374884397520;4096;16;0;0;2020-11-03T12:41:35.129168Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.019855Z +C:/Windows/SysWOW64/en-US/xwizards.dll.mui;file;6656;33206;2020-11-03T12:41:35.019855Z;;;2785144255;4;0;1407374884397520;4096;16;0;0;2020-11-03T12:41:35.129168Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.019855Z +C:/Windows/SysWOW64/en-US/xwtpdui.dll.mui;file;3584;33206;2020-11-03T12:41:35.019855Z;;;2785144255;4;0;1407374884397530;4096;8;0;0;2020-11-03T12:41:35.129168Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.019855Z +C:/Windows/SysWOW64/en-US/xwtpw32.dll.mui;file;3072;33206;2020-11-03T12:41:35.019855Z;;;2785144255;4;0;1407374884397530;4096;8;0;0;2020-11-03T12:41:35.129168Z;2020-11-03T12:41:50.282452Z;2020-11-03T12:41:35.019855Z +C:/Windows/SysWOW64/encapi.dll;file;20992;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907630000;4096;48;0;0;2021-12-16T13:35:34.558553Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/enrollmentapi.dll;file;48128;33206;2021-10-16T00:21:18.648711Z;;;2785144255;2;0;281474977857638;4096;96;0;0;2021-12-16T13:35:34.569806Z;2021-11-11T11:29:33.798140Z;2021-10-16T00:21:18.648711Z +C:/Windows/SysWOW64/EnterpriseAppMgmtClient.dll;file;16384;33206;2019-12-07T09:09:21.505693Z;;;2785144255;2;0;1125899907634800;4096;32;0;0;2021-12-16T13:35:34.580017Z;2021-11-11T11:29:33.779158Z;2019-12-07T09:09:21.505693Z +C:/Windows/SysWOW64/enterpriseresourcemanager.dll;file;84992;33206;2020-11-03T12:45:52.197371Z;;;2785144255;2;0;844424931107928;4096;168;0;0;2021-12-16T13:35:34.590841Z;2021-11-11T11:29:33.793120Z;2020-11-03T12:45:52.197371Z +C:/Windows/SysWOW64/eqossnap.dll;file;70656;33206;2019-12-07T09:10:02.225387Z;;;2785144255;2;0;1125899907630220;4096;144;0;0;2021-12-16T13:35:34.603459Z;2021-11-11T11:29:34.239061Z;2019-12-07T09:10:02.225387Z +C:/Windows/SysWOW64/ErrorDetails.dll;file;155648;33206;2021-11-11T11:28:59.708349Z;;;2785144255;2;0;281474977879194;4096;304;0;0;2021-12-16T13:35:34.616386Z;2021-11-11T11:38:51.129725Z;2021-11-11T11:28:59.704359Z +C:/Windows/SysWOW64/ErrorDetailsCore.dll;file;36864;33206;2019-12-07T09:09:18.099651Z;;;2785144255;2;0;1125899907636880;4096;72;0;0;2021-12-16T13:35:34.627115Z;2021-12-16T12:06:18.135713Z;2019-12-07T09:09:18.099651Z +C:/Windows/SysWOW64/es-ES;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;33214047252178000;4096;8;0;0;2021-12-16T13:36:01.170808Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/es-ES/APHostRes.dll.mui;file;17408;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648630;4096;40;0;0;2019-12-07T14:53:37.735771Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.735771Z +C:/Windows/SysWOW64/es-ES/cdosys.dll.mui;file;51200;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014750;4096;104;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/es-ES/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5629499534883050;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.989527Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/es-ES/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619320;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.439645Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/es-ES/SyncRes.dll.mui;file;32256;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648640;4096;64;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.466793Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/es-ES/windows.ui.xaml.dll.mui;file;18432;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907634900;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:42.797053Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/es-MX;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;48413695994553400;4096;0;0;0;2021-12-16T13:36:01.170808Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/es-MX/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5629499534883040;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.989527Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/es-MX/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619420;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.470887Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/es-MX/SyncRes.dll.mui;file;32256;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648780;4096;64;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.513659Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/es-MX/windows.ui.xaml.dll.mui;file;18432;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907635580;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:43.187586Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/es.dll;file;335360;33206;2020-11-03T12:45:51.181994Z;;;2785144255;2;0;562949954396590;4096;656;0;0;2021-12-16T13:35:34.640170Z;2021-11-11T11:29:33.763200Z;2020-11-03T12:45:51.181994Z +C:/Windows/SysWOW64/EsdSip.dll;file;16896;33206;2021-01-15T09:27:19.534537Z;;;2785144255;2;0;16888498603258600;4096;40;0;0;2021-12-16T13:35:34.641175Z;2021-11-11T11:29:33.792123Z;2021-01-15T09:27:19.534537Z +C:/Windows/SysWOW64/esent.dll;file;2872832;33206;2021-10-16T00:21:16.264978Z;;;2785144255;2;0;281474977857342;4096;5616;0;0;2021-12-16T13:35:34.641481Z;2021-11-11T11:29:34.207109Z;2021-10-16T00:21:16.202454Z +C:/Windows/SysWOW64/esentprf.dll;file;61440;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907630510;4096;120;0;0;2021-12-16T13:35:34.651230Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/esentutl.exe;file;352768;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907628360;4096;696;0;0;2021-12-16T13:35:34.663519Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/esevss.dll;file;33792;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907628930;4096;72;0;0;2021-12-16T13:35:34.673853Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/esrb.rs;file;33792;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907637550;4096;72;0;0;2021-12-16T13:35:34.676552Z;2021-11-11T11:29:33.710341Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/et-EE;directory;0;16822;2021-06-10T14:11:37.554825Z;;;2785144255;1;0;37999121856259100;4096;0;0;0;2021-12-16T13:36:01.170808Z;2021-06-10T14:11:37.554825Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/et-EE/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5629499534883040;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.989527Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/et-EE/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619400;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.470887Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/et-EE/SyncRes.dll.mui;file;27648;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648540;4096;56;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.419930Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/et-EE/windows.ui.xaml.dll.mui;file;17408;33206;2021-06-10T14:01:34.428234Z;;;2785144255;4;0;281474977764496;4096;40;0;0;2021-06-10T14:01:41.684884Z;2021-06-10T14:11:37.554825Z;2021-06-10T14:01:34.428234Z +C:/Windows/SysWOW64/ETWCoreUIComponentsResources.dll;file;2560;33206;2019-12-07T09:09:17.649850Z;;;2785144255;2;0;1125899907635900;4096;8;0;0;2021-12-16T13:35:34.679727Z;2021-11-11T11:29:33.731285Z;2019-12-07T09:09:17.649850Z +C:/Windows/SysWOW64/ETWESEProviderResources.dll;file;88064;33206;2019-12-07T09:09:18.020777Z;;;2785144255;2;0;1125899907630750;4096;176;0;0;2021-12-16T13:35:34.688099Z;2021-11-11T11:29:34.212096Z;2019-12-07T09:09:18.020777Z +C:/Windows/SysWOW64/EtwRundown.dll;file;40448;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907638070;4096;80;0;0;2021-12-16T13:35:34.697726Z;2021-11-11T11:29:33.793120Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/eudcedit.exe;file;303616;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907630680;4096;600;0;0;2021-12-16T13:35:34.717858Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/eventcls.dll;file;15360;33206;2021-01-15T09:27:38.863842Z;;;2785144255;2;0;19984723347079200;4096;32;0;0;2021-12-16T13:35:34.727885Z;2021-11-11T11:29:34.245008Z;2021-01-15T09:27:38.863842Z +C:/Windows/SysWOW64/eventcreate.exe;file;34304;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907629960;4096;72;0;0;2021-12-16T13:35:34.738892Z;2021-11-11T11:29:34.248997Z;2019-12-07T09:10:05.475470Z +C:/Windows/SysWOW64/EventLogger.dll;file;90328;33206;2021-07-11T21:47:20Z;;;2785144255;1;0;1970324837071790;4096;184;0;0;2021-12-16T13:35:34.752975Z;2021-10-14T07:03:54.463273Z;2020-11-05T20:56:21.368160Z +C:/Windows/SysWOW64/EventViewer_EventDetails.xsl;file;17935;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907628730;4096;40;0;0;2021-12-16T13:35:34.759994Z;2020-11-03T12:35:38.782142Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/eventvwr.exe;file;81408;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907629800;4096;160;0;0;2021-12-16T13:35:34.774916Z;2021-11-11T11:29:34.201157Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/eventvwr.msc;file;145127;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907628480;4096;288;0;0;2021-12-16T13:35:34.780155Z;2020-11-03T12:35:38.688413Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/evr.dll;file;578424;33206;2020-11-03T12:46:08.506156Z;;;2785144255;2;0;562949954402310;4096;1136;0;0;2021-12-16T13:35:34.794984Z;2021-11-11T11:29:32.465037Z;2020-11-03T12:46:08.490529Z +C:/Windows/SysWOW64/ExecModelClient.dll;file;295440;33206;2021-10-03T19:02:04.116132Z;;;2785144255;2;0;1688849861186650;4096;584;0;0;2021-12-16T13:35:34.810092Z;2021-11-11T11:29:33.733279Z;2021-10-03T19:02:04.096600Z +C:/Windows/SysWOW64/execmodelproxy.dll;file;44544;33206;2020-11-03T12:45:47.292201Z;;;2785144255;2;0;3377699721501830;4096;88;0;0;2021-12-16T13:35:34.820913Z;2021-11-11T11:29:33.734277Z;2020-11-03T12:45:47.292201Z +C:/Windows/SysWOW64/expand.exe;file;53248;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;29554872555058000;4096;104;0;0;2021-12-16T13:35:34.832855Z;2021-11-11T11:29:33.787167Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/explorer.exe;file;4432080;33206;2021-11-11T11:28:57.225795Z;;;2785144255;2;0;281474977878950;4096;8664;0;0;2021-12-16T13:35:34.880623Z;2021-11-11T11:38:50.462540Z;2021-11-11T11:28:57.128986Z +C:/Windows/SysWOW64/ExplorerFrame.dll;file;1719296;33206;2021-06-10T14:01:42.949807Z;;;2785144255;2;0;1688849861200030;4096;3360;0;0;2021-12-16T13:35:34.885144Z;2021-11-11T11:29:33.810075Z;2021-06-10T14:01:42.902942Z +C:/Windows/SysWOW64/expsrv.dll;file;380957;33206;2019-12-07T09:09:29.088570Z;;;2785144255;2;0;1125899907630540;4096;752;0;0;2021-12-16T13:35:34.900135Z;2021-11-11T11:29:34.220113Z;2019-12-07T09:09:29.088570Z +C:/Windows/SysWOW64/ExSMime.dll;file;214528;33206;2021-01-15T09:27:15.671372Z;;;2785144255;2;0;16607023626547400;4096;424;0;0;2021-12-16T13:35:34.913179Z;2021-11-11T11:29:33.747242Z;2021-01-15T09:27:15.671372Z +C:/Windows/SysWOW64/extrac32.exe;file;29184;33206;2019-12-07T09:09:25.333427Z;;;2785144255;2;0;1125899907636830;4096;64;0;0;2021-12-16T13:35:34.936424Z;2021-11-11T11:29:33.766192Z;2019-12-07T09:09:25.333427Z +C:/Windows/SysWOW64/ExtrasXmlParser.dll;file;18944;33206;2019-12-07T09:09:18.005520Z;;;2785144255;2;0;1125899907636490;4096;40;0;0;2021-12-16T13:35:34.947352Z;2021-11-11T11:29:33.750234Z;2019-12-07T09:09:18.005520Z +C:/Windows/SysWOW64/F12;directory;0;16822;2021-01-15T09:30:17.992442Z;;;2785144255;1;0;30962247438492700;4096;8;0;0;2021-12-16T13:36:01.170808Z;2021-01-15T09:30:17.992442Z;2019-12-07T09:14:52.720933Z +C:/Windows/SysWOW64/F12/de-DE;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;30962247438492700;4096;0;0;0;2021-12-16T13:36:01.170808Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/F12/de-DE/F12Platform.dll.mui;file;2560;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029580;4096;8;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/F12/de-DE/F12Platform2.dll.mui;file;2560;33206;2019-12-07T14:50:50.861072Z;;;2785144255;2;0;1688849861029580;4096;8;0;0;2019-12-07T14:50:50.861072Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:50:50.861072Z +C:/Windows/SysWOW64/F12/de-DE/F12Script.dll.mui;file;98304;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029580;4096;192;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.018896Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/F12/de-DE/IEChooser.exe.mui;file;3584;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861029710;4096;8;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:28.050138Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/F12/DiagnosticsHub.DataWarehouse.dll;file;468992;33206;2019-12-07T09:10:00.537776Z;;;2785144255;2;0;1125899907629040;4096;920;0;0;2020-11-03T12:35:38.907111Z;2021-11-11T11:29:34.224102Z;2019-12-07T09:10:00.537776Z +C:/Windows/SysWOW64/F12/DiagnosticsHub.ScriptedSandboxPlugin.dll;file;121856;33206;2021-01-15T09:27:37.645381Z;;;2785144255;2;0;23362423067607000;4096;240;0;0;2021-01-15T09:30:30.963803Z;2021-11-11T11:29:34.226059Z;2021-01-15T09:27:37.645381Z +C:/Windows/SysWOW64/F12/DiagnosticsHub_is.dll;file;49664;33206;2021-01-15T09:27:35.100009Z;;;2785144255;2;0;7318349395099180;4096;104;0;0;2021-01-15T09:30:31.354335Z;2021-11-11T11:29:34.218116Z;2021-01-15T09:27:35.100009Z +C:/Windows/SysWOW64/F12/DiagnosticsTap.dll;file;180224;33206;2021-01-15T09:27:35.115631Z;;;2785144255;2;0;13510798882733600;4096;352;0;0;2021-01-15T09:30:28.213330Z;2021-11-11T11:29:34.228087Z;2021-01-15T09:27:35.115631Z +C:/Windows/SysWOW64/F12/en-US;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;1407374884227070;4096;0;0;0;2021-12-16T13:36:01.170808Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:50.298074Z +C:/Windows/SysWOW64/F12/en-US/F12Platform.dll.mui;file;2560;33206;2020-11-03T12:41:35.504110Z;;;2785144255;2;0;1688849861108360;4096;8;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.504110Z +C:/Windows/SysWOW64/F12/en-US/F12Platform2.dll.mui;file;2560;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108330;4096;8;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/F12/en-US/F12Script.dll.mui;file;81408;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108330;4096;160;0;0;2020-11-03T12:41:35.597839Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/F12/en-US/IEChooser.exe.mui;file;3584;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108330;4096;8;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/F12/F12App.dll;file;112640;33206;2021-01-15T09:27:35.100009Z;;;2785144255;2;0;14636698789576200;4096;224;0;0;2021-01-15T09:30:31.026288Z;2021-11-11T11:29:34.229083Z;2021-01-15T09:27:35.100009Z +C:/Windows/SysWOW64/F12/F12AppFrame.dll;file;260096;33206;2021-01-15T09:27:35.115631Z;;;2785144255;2;0;13792273859444300;4096;512;0;0;2021-01-15T09:30:30.289454Z;2021-11-11T11:29:34.230049Z;2021-01-15T09:27:35.100009Z +C:/Windows/SysWOW64/F12/F12AppFrame2.dll;file;274944;33206;2021-01-15T09:27:35.084387Z;;;2785144255;2;0;6755399441677860;4096;544;0;0;2021-01-15T09:30:30.289454Z;2021-11-11T11:29:34.226059Z;2021-01-15T09:27:35.084387Z +C:/Windows/SysWOW64/F12/F12Platform.dll;file;568832;33206;2021-01-15T09:27:37.629774Z;;;2785144255;2;0;23643898044317700;4096;1112;0;0;2021-01-15T09:30:31.401199Z;2021-11-11T11:29:34.232043Z;2021-01-15T09:27:37.629774Z +C:/Windows/SysWOW64/F12/F12Platform2.dll;file;386048;33206;2021-01-15T09:27:35.115631Z;;;2785144255;2;0;7881299348520490;4096;760;0;0;2021-01-15T09:30:26.401697Z;2021-11-11T11:29:34.229083Z;2021-01-15T09:27:35.115631Z +C:/Windows/SysWOW64/F12/F12Script.dll;file;7380480;33206;2019-12-07T09:10:00.554367Z;;;2785144255;2;0;1125899907629760;4096;14416;0;0;2020-11-03T12:35:39.328888Z;2021-11-11T11:29:34.232043Z;2019-12-07T09:10:00.537776Z +C:/Windows/SysWOW64/F12/F12Tab.dll;file;174080;33206;2021-01-15T09:27:35.131253Z;;;2785144255;2;0;16044073673129500;4096;344;0;0;2021-01-15T09:30:26.823473Z;2021-11-11T11:29:34.226059Z;2021-01-15T09:27:35.131253Z +C:/Windows/SysWOW64/F12/IEChooser.exe;file;160768;33206;2021-01-15T09:27:35.131253Z;;;2785144255;2;0;15762598696418900;4096;320;0;0;2021-01-15T09:30:30.773715Z;2021-11-11T11:29:34.218116Z;2021-01-15T09:27:35.131253Z +C:/Windows/SysWOW64/F12/MemoryAnalyzer.dll;file;1806848;33206;2021-01-15T09:27:35.162495Z;;;2785144255;2;0;10977524092337700;4096;3536;0;0;2021-01-15T09:30:29.597636Z;2021-11-11T11:29:34.222071Z;2021-01-15T09:27:35.146873Z +C:/Windows/SysWOW64/F12/msdbg2.dll;file;301488;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907629050;4096;592;0;0;2020-11-03T12:35:38.922734Z;2021-11-11T11:29:34.218116Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/F12/pdm.dll;file;493176;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907628470;4096;968;0;0;2020-11-03T12:35:38.688413Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/F12/pdmproxy100.dll;file;100016;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907630140;4096;200;0;0;2020-11-03T12:35:39.656938Z;2021-11-11T11:29:34.217084Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/F12/Timeline.cpu.xml;file;3007;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907628060;4096;8;0;0;2021-02-22T08:01:25.458258Z;2021-02-22T08:01:25.458258Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/F12/Timeline.dll;file;212480;33206;2021-01-15T09:27:35.193736Z;;;2785144255;2;0;12103423999180300;4096;416;0;0;2021-01-15T09:30:26.807851Z;2021-11-11T11:29:34.222071Z;2021-01-15T09:27:35.193736Z +C:/Windows/SysWOW64/F12/Timeline_is.dll;file;134656;33206;2021-01-15T09:27:35.193736Z;;;2785144255;2;0;16044073673129500;4096;264;0;0;2021-01-15T09:30:30.351940Z;2021-11-11T11:29:34.230049Z;2021-01-15T09:27:35.193736Z +C:/Windows/SysWOW64/f3ahvoas.dll;file;8704;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907636990;4096;24;0;0;2021-12-16T13:35:34.951380Z;2021-11-11T11:29:31.003432Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/FamilySafetyExt.dll;file;11776;33206;2019-12-07T09:09:21.770852Z;;;2785144255;2;0;1125899907636930;4096;24;0;0;2021-12-16T13:35:34.961315Z;2021-11-11T11:29:33.761205Z;2019-12-07T09:09:21.770852Z +C:/Windows/SysWOW64/Faultrep.dll;file;410088;33206;2021-07-07T12:58:45.823916Z;;;2785144255;2;0;281474977790800;4096;808;0;0;2021-12-16T13:35:34.982260Z;2021-11-11T11:29:33.771179Z;2021-07-07T12:58:45.823916Z +C:/Windows/SysWOW64/fc.exe;file;22528;33206;2019-12-07T09:09:57.412688Z;;;2785144255;2;0;1125899907628420;4096;48;0;0;2021-12-16T13:35:34.992521Z;2021-11-11T11:29:34.200158Z;2019-12-07T09:09:57.412688Z +C:/Windows/SysWOW64/fdBth.dll;file;59392;33206;2019-12-07T09:09:22.161729Z;;;2785144255;2;0;1125899907636350;4096;120;0;0;2021-12-16T13:35:35.003931Z;2021-11-11T11:29:33.759211Z;2019-12-07T09:09:22.161729Z +C:/Windows/SysWOW64/fdBthProxy.dll;file;10752;33206;2019-12-07T09:09:22.161729Z;;;2785144255;2;0;1125899907637750;4096;24;0;0;2021-12-16T13:35:35.013721Z;2021-11-11T11:29:33.776165Z;2019-12-07T09:09:22.161729Z +C:/Windows/SysWOW64/FdDevQuery.dll;file;27136;33206;2021-01-15T09:27:19.472090Z;;;2785144255;2;0;7036874418385640;4096;56;0;0;2021-12-16T13:35:35.024920Z;2021-11-11T11:29:33.798140Z;2021-01-15T09:27:19.472090Z +C:/Windows/SysWOW64/fde.dll;file;129536;33206;2021-01-15T09:27:10.416194Z;;;2785144255;2;0;17451448556648600;4096;256;0;0;2021-12-16T13:35:35.041862Z;2021-11-11T11:29:33.718319Z;2021-01-15T09:27:10.416194Z +C:/Windows/SysWOW64/fdeploy.dll;file;130048;33206;2019-12-07T09:09:13.727163Z;;;2785144255;2;0;1125899907636440;4096;256;0;0;2021-12-16T13:35:35.056835Z;2021-11-11T11:29:33.726298Z;2019-12-07T09:09:13.727163Z +C:/Windows/SysWOW64/fdPnp.dll;file;47616;33206;2021-01-15T09:27:19.550182Z;;;2785144255;2;0;9288674232070910;4096;96;0;0;2021-12-16T13:35:35.068549Z;2021-11-11T11:29:33.797110Z;2021-01-15T09:27:19.550182Z +C:/Windows/SysWOW64/fdprint.dll;file;147456;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907638220;4096;288;0;0;2021-12-16T13:35:35.082228Z;2021-11-11T11:29:33.809077Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/fdProxy.dll;file;28672;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;1125899907637270;4096;56;0;0;2021-12-16T13:35:35.092750Z;2021-11-11T11:29:33.786186Z;2019-12-07T09:09:26.178036Z +C:/Windows/SysWOW64/fdSSDP.dll;file;89088;33206;2021-01-15T09:27:34.365835Z;;;2785144255;2;0;25332747904581100;4096;176;0;0;2021-12-16T13:35:35.105569Z;2021-11-11T11:29:34.199161Z;2021-01-15T09:27:34.365835Z +C:/Windows/SysWOW64/fdWCN.dll;file;96256;33206;2021-01-15T09:27:09.619299Z;;;2785144255;2;0;15481123719670000;4096;192;0;0;2021-12-16T13:35:35.118534Z;2021-11-11T11:29:33.708346Z;2021-01-15T09:27:09.619299Z +C:/Windows/SysWOW64/fdWNet.dll;file;24576;33206;2021-01-15T09:27:19.550182Z;;;2785144255;2;0;8444249301938940;4096;48;0;0;2021-12-16T13:35:35.130818Z;2021-11-11T11:29:33.799135Z;2021-01-15T09:27:19.550182Z +C:/Windows/SysWOW64/fdWSD.dll;file;127488;33206;2021-01-15T09:27:34.397050Z;;;2785144255;2;0;10414574138916300;4096;256;0;0;2021-12-16T13:35:35.143615Z;2021-11-11T11:29:34.206112Z;2021-01-15T09:27:34.397050Z +C:/Windows/SysWOW64/feclient.dll;file;195584;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;1125899907635290;4096;384;0;0;2021-12-16T13:35:35.157732Z;2021-11-11T11:29:33.790129Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/ffbroker.dll;file;50688;33206;2021-01-15T09:27:12.980586Z;;;2785144255;2;0;2533274790986930;4096;104;0;0;2021-12-16T13:35:35.170588Z;2021-11-11T11:29:33.737270Z;2021-01-15T09:27:12.980586Z +C:/Windows/SysWOW64/fi-FI;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;61643019899954200;4096;8;0;0;2021-12-16T13:36:01.170808Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/fi-FI/APHostRes.dll.mui;file;16384;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648590;4096;32;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.435552Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/fi-FI/cdosys.dll.mui;file;48640;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014770;4096;96;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/fi-FI/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5629499534883030;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.989527Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/fi-FI/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619330;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/fi-FI/SyncRes.dll.mui;file;29696;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648780;4096;64;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.513659Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/fi-FI/windows.ui.xaml.dll.mui;file;17920;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907635510;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:43.140722Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/fidocredprov.dll;file;183296;33206;2021-03-11T12:12:16.804234Z;;;2785144255;2;0;844424931103247;4096;360;0;0;2021-12-16T13:35:35.183554Z;2021-11-11T11:29:33.734277Z;2021-03-11T12:12:16.788612Z +C:/Windows/SysWOW64/filemgmt.dll;file;287744;33206;2021-01-15T09:27:21.318992Z;;;2785144255;2;0;13229323906020500;4096;568;0;0;2021-12-16T13:35:35.197515Z;2021-11-11T11:29:33.801130Z;2021-01-15T09:27:21.318992Z +C:/Windows/SysWOW64/find.exe;file;14848;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907629420;4096;32;0;0;2021-12-16T13:35:35.207073Z;2021-11-11T11:29:34.207109Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/findnetprinters.dll;file;53248;33206;2021-10-03T19:02:19.947673Z;;;2785144255;2;0;1688849861187010;4096;104;0;0;2021-12-16T13:35:35.218650Z;2021-11-11T11:29:33.817058Z;2021-10-03T19:02:19.942409Z +C:/Windows/SysWOW64/findstr.exe;file;29696;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907630400;4096;64;0;0;2021-12-16T13:35:35.229602Z;2021-11-11T11:29:34.205151Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/finger.exe;file;13824;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907628080;4096;32;0;0;2021-12-16T13:35:35.238313Z;2021-11-11T11:29:34.213094Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/fingerprintcredential.dll;file;86528;33206;2021-07-07T12:58:51.858367Z;;;2785144255;2;0;281474977791105;4096;176;0;0;2021-12-16T13:35:35.250926Z;2021-11-11T11:29:34.210101Z;2021-07-07T12:58:51.858367Z +C:/Windows/SysWOW64/FirewallAPI.dll;file;424448;33206;2021-11-11T11:28:59.698375Z;;;2785144255;2;0;281474977879193;4096;832;0;0;2021-12-16T13:35:35.250926Z;2021-11-11T11:38:52.956623Z;2021-11-11T11:28:59.689397Z +C:/Windows/SysWOW64/FirewallControlPanel.dll;file;309760;33206;2021-01-15T09:27:34.662612Z;;;2785144255;2;0;9288674232073710;4096;608;0;0;2021-12-16T13:35:35.267135Z;2021-11-11T11:29:34.212096Z;2021-01-15T09:27:34.662612Z +C:/Windows/SysWOW64/fixmapi.exe;file;16384;33206;2020-11-03T12:45:46.495519Z;;;2785144255;2;0;3940649674923070;4096;32;0;0;2021-12-16T13:35:35.289186Z;2021-11-11T11:29:33.718319Z;2020-11-03T12:45:46.495519Z +C:/Windows/SysWOW64/FlightSettings.dll;file;752536;33206;2021-10-16T00:21:15.462705Z;;;2785144255;2;0;281474977857314;4096;1472;0;0;2021-12-16T13:35:35.304266Z;2021-11-11T11:29:33.705354Z;2021-10-16T00:21:15.447073Z +C:/Windows/SysWOW64/fltLib.dll;file;27848;33206;2020-11-03T12:45:52.088033Z;;;2785144255;2;0;3377699721503800;4096;56;0;0;2021-12-16T13:35:35.305267Z;2021-11-11T11:29:33.767189Z;2020-11-03T12:45:52.088033Z +C:/Windows/SysWOW64/fltMC.exe;file;24576;33206;2020-11-03T12:45:52.088033Z;;;2785144255;2;0;2814749768082490;4096;48;0;0;2021-12-16T13:35:35.316238Z;2021-11-11T11:29:33.767189Z;2020-11-03T12:45:52.088033Z +C:/Windows/SysWOW64/fmifs.dll;file;55328;33206;2019-12-07T09:09:21.505693Z;;;2785144255;2;0;1125899907635030;4096;112;0;0;2021-12-16T13:35:35.329695Z;2021-11-11T11:29:33.759211Z;2019-12-07T09:09:21.505693Z +C:/Windows/SysWOW64/fms.dll;file;168448;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;1125899907635850;4096;336;0;0;2021-12-16T13:35:35.342909Z;2021-11-11T11:29:33.792123Z;2019-12-07T09:09:26.178036Z +C:/Windows/SysWOW64/Fondue.exe;file;107008;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907630700;4096;216;0;0;2021-12-16T13:35:35.359862Z;2021-11-11T11:29:34.237030Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/fontdrvhost.exe;file;675552;33206;2021-11-11T11:29:00.569138Z;;;2785144255;2;0;281474977879231;4096;1320;0;0;2021-12-16T13:35:35.372997Z;2021-11-11T11:38:50.442336Z;2021-11-11T11:29:00.556134Z +C:/Windows/SysWOW64/fontext.dll;file;910336;33206;2020-11-03T12:45:45.620716Z;;;2785144255;2;0;1125899907815940;4096;1784;0;0;2021-12-16T13:35:35.398134Z;2021-11-11T11:29:33.712335Z;2020-11-03T12:45:45.620716Z +C:/Windows/SysWOW64/FontGlyphAnimator.dll;file;50176;33206;2021-01-15T09:27:19.550182Z;;;2785144255;2;0;21392098230629100;4096;104;0;0;2021-12-16T13:35:35.411071Z;2021-11-11T11:29:33.793120Z;2021-01-15T09:27:19.550182Z +C:/Windows/SysWOW64/fontsub.dll;file;99328;33206;2021-11-11T11:29:00.553186Z;;;2785144255;2;0;281474977879230;4096;200;0;0;2021-12-16T13:35:35.423198Z;2021-11-11T11:38:53.415816Z;2021-11-11T11:29:00.550150Z +C:/Windows/SysWOW64/fontview.exe;file;113152;33206;2019-12-07T09:09:13.552817Z;;;2785144255;2;0;1125899907635290;4096;224;0;0;2021-12-16T13:35:35.460959Z;2021-11-11T11:29:33.700367Z;2019-12-07T09:09:13.552817Z +C:/Windows/SysWOW64/forfiles.exe;file;41472;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907627990;4096;88;0;0;2021-12-16T13:35:35.473803Z;2021-11-11T11:29:34.202158Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/format.com;file;46080;33206;2019-12-07T09:09:57.426957Z;;;2785144255;2;0;1125899907627990;4096;96;0;0;2021-12-16T13:35:35.484471Z;2020-11-03T12:35:38.422851Z;2019-12-07T09:09:57.426957Z +C:/Windows/SysWOW64/fpb.rs;file;41472;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907636080;4096;88;0;0;2021-12-16T13:35:35.487466Z;2021-11-11T11:29:33.709343Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/fphc.dll;file;97792;33206;2021-05-18T10:59:27.761654Z;;;2785144255;2;0;1407374884441190;4096;192;0;0;2021-12-16T13:35:35.501478Z;2021-11-11T11:29:33.801130Z;2021-05-18T10:59:27.751491Z +C:/Windows/SysWOW64/fr-CA;directory;0;16822;2021-06-10T14:11:37.554825Z;;;2785144255;1;0;57702370226005000;4096;0;0;0;2021-12-16T13:36:01.171836Z;2021-06-10T14:11:37.554825Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/fr-CA/comctl32.dll.mui;file;6144;33206;2021-06-10T14:01:41.716126Z;;;2785144255;2;0;281474977765222;4096;16;0;0;2021-06-10T14:01:41.716126Z;2021-06-10T14:11:37.554825Z;2021-06-10T14:01:41.716126Z +C:/Windows/SysWOW64/fr-CA/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619450;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/fr-CA/SyncRes.dll.mui;file;33792;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648770;4096;72;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.513659Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/fr-CA/windows.ui.xaml.dll.mui;file;18432;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907634660;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:42.625219Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/fr-FR;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;26458647811122200;4096;8;0;0;2021-12-16T13:36:01.171836Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/fr-FR/APHostRes.dll.mui;file;18432;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1407374884359250;4096;40;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.435552Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/fr-FR/cdosys.dll.mui;file;52736;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;7036874418436080;4096;104;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/fr-FR/comctl32.dll.mui;file;6144;33206;2021-06-10T14:01:41.716126Z;;;2785144255;2;0;281474977765221;4096;16;0;0;2021-06-10T14:01:41.716126Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:41.716126Z +C:/Windows/SysWOW64/fr-FR/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619340;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/fr-FR/SyncRes.dll.mui;file;33792;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648560;4096;72;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.419930Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/fr-FR/windows.ui.xaml.dll.mui;file;18432;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907635870;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:43.343839Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/framedyn.dll;file;191488;33206;2019-12-07T09:09:21.723927Z;;;2785144255;2;0;1125899907638620;4096;376;0;0;2021-12-16T13:35:35.515421Z;2021-11-11T11:29:33.769184Z;2019-12-07T09:09:21.723927Z +C:/Windows/SysWOW64/framedynos.dll;file;239616;33206;2021-11-11T11:28:57.475825Z;;;2785144255;2;0;281474977878958;4096;472;0;0;2021-12-16T13:35:35.531863Z;2021-11-11T11:38:51.615513Z;2021-11-11T11:28:57.471807Z +C:/Windows/SysWOW64/FrameServerClient.dll;file;356352;33206;2021-10-16T00:21:30.408511Z;;;2785144255;2;0;281474977857992;4096;696;0;0;2021-12-16T13:35:35.531863Z;2021-11-11T11:29:34.247003Z;2021-10-16T00:21:30.408511Z +C:/Windows/SysWOW64/frprov.dll;file;67072;33206;2019-12-07T09:09:13.727163Z;;;2785144255;2;0;1125899907639030;4096;136;0;0;2021-12-16T13:35:35.545014Z;2021-11-11T11:29:33.726298Z;2019-12-07T09:09:13.727163Z +C:/Windows/SysWOW64/fsmgmt.msc;file;144909;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;1125899907636020;4096;288;0;0;2021-12-16T13:35:35.551548Z;2021-02-22T08:01:24.668011Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/fsquirt.exe;file;128512;33206;2019-12-07T09:09:22.161729Z;;;2785144255;2;0;1125899907639370;4096;256;0;0;2021-12-16T13:35:35.593245Z;2021-11-11T11:29:33.768187Z;2019-12-07T09:09:22.161729Z +C:/Windows/SysWOW64/fsutil.exe;file;167440;33206;2019-12-07T09:09:57.426957Z;;;2785144255;2;0;1125899907630600;4096;328;0;0;2021-12-16T13:35:35.606597Z;2021-11-11T11:29:34.197136Z;2019-12-07T09:09:57.426957Z +C:/Windows/SysWOW64/fsutilext.dll;file;26112;33206;2019-12-07T09:09:22.146381Z;;;2785144255;2;0;1125899907636770;4096;56;0;0;2021-12-16T13:35:35.618574Z;2021-11-11T11:29:33.774171Z;2019-12-07T09:09:22.146381Z +C:/Windows/SysWOW64/ftp.exe;file;48640;33206;2019-12-07T09:10:05.491292Z;;;2785144255;2;0;1125899907630390;4096;96;0;0;2021-12-16T13:35:35.630713Z;2021-11-11T11:29:34.244011Z;2019-12-07T09:10:05.491292Z +C:/Windows/SysWOW64/fundisc.dll;file;137728;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;1125899907634890;4096;272;0;0;2021-12-16T13:35:35.643585Z;2021-11-11T11:29:33.794117Z;2019-12-07T09:09:26.178036Z +C:/Windows/SysWOW64/fveapi.dll;file;765440;33206;2021-11-11T11:29:17.694112Z;;;2785144255;2;0;281474977879926;4096;1496;0;0;2021-12-16T13:35:35.661108Z;2021-11-11T11:38:50.680595Z;2021-11-11T11:29:17.678154Z +C:/Windows/SysWOW64/fveapibase.dll;file;366592;33206;2021-11-11T11:29:17.673167Z;;;2785144255;2;0;281474977879925;4096;720;0;0;2021-12-16T13:35:35.678158Z;2021-11-11T11:38:53.193110Z;2021-11-11T11:29:17.665188Z +C:/Windows/SysWOW64/fvecerts.dll;file;21504;33206;2019-12-07T14:54:43.079295Z;;;2785144255;2;0;3096224744249250;4096;48;0;0;2021-12-16T13:35:35.690353Z;2021-11-11T11:29:34.284933Z;2019-12-07T09:10:39.386204Z +C:/Windows/SysWOW64/fwbase.dll;file;131584;33206;2021-10-16T00:21:16.682085Z;;;2785144255;2;0;281474977857353;4096;264;0;0;2021-12-16T13:35:35.703306Z;2021-12-16T12:06:18.215714Z;2021-10-16T00:21:16.682085Z +C:/Windows/SysWOW64/fwcfg.dll;file;46080;33206;2021-05-18T10:59:46.283561Z;;;2785144255;2;0;1125899907730900;4096;96;0;0;2021-12-16T13:35:35.715272Z;2021-12-16T12:06:18.211713Z;2021-05-18T10:59:46.279304Z +C:/Windows/SysWOW64/fwpolicyiomgr.dll;file;189440;33206;2021-10-16T00:21:16.682085Z;;;2785144255;2;0;281474977857354;4096;376;0;0;2021-12-16T13:35:35.728203Z;2021-12-16T12:06:18.215714Z;2021-10-16T00:21:16.682085Z +C:/Windows/SysWOW64/FWPUCLNT.DLL;file;342016;33206;2021-05-18T10:59:10.837698Z;;;2785144255;2;0;2251799814572450;4096;672;0;0;2021-12-16T13:35:35.728203Z;2021-11-11T11:29:33.765194Z;2021-05-18T10:59:10.827542Z +C:/Windows/SysWOW64/FwRemoteSvr.dll;file;58880;33206;2021-05-18T10:59:11.731913Z;;;2785144255;2;0;3377699721415110;4096;120;0;0;2021-12-16T13:35:35.740742Z;2021-11-11T11:29:33.785173Z;2021-05-18T10:59:11.730083Z +C:/Windows/SysWOW64/FXSAPI.dll;file;229376;33206;2021-04-17T10:36:01.437001Z;;;2785144255;2;0;844424930952498;4096;448;0;0;2021-12-16T13:35:35.756570Z;2021-11-11T11:29:35.533514Z;2021-04-17T10:36:01.427168Z +C:/Windows/SysWOW64/FXSCOM.dll;file;77824;33206;2021-04-17T10:36:01.472913Z;;;2785144255;2;0;844424930952499;4096;152;0;0;2021-12-16T13:35:35.769548Z;2021-11-11T11:29:35.534511Z;2021-04-17T10:36:01.463935Z +C:/Windows/SysWOW64/FXSCOMEX.dll;file;504832;33206;2021-04-17T10:36:01.521418Z;;;2785144255;2;0;844424930952500;4096;992;0;0;2021-12-16T13:35:35.786563Z;2021-11-11T11:29:35.533514Z;2021-04-17T10:36:01.485034Z +C:/Windows/SysWOW64/FXSEXT32.dll;file;37376;33206;2019-12-06T19:49:00Z;;;2785144255;2;0;1125899907612420;4096;80;0;0;2021-12-16T13:35:35.799456Z;2021-11-11T11:29:35.533514Z;2019-12-07T14:52:38.689112Z +C:/Windows/SysWOW64/FXSRESM.dll;file;925696;33206;2021-04-17T10:36:01.600609Z;;;2785144255;2;0;844424930952502;4096;1808;0;0;2021-12-16T13:35:35.811441Z;2021-11-11T11:29:35.534511Z;2021-04-17T10:36:01.574213Z +C:/Windows/SysWOW64/FxsTmp;directory;0;16822;2019-12-07T14:52:40.048146Z;;;2785144255;1;0;52072870691791900;4096;0;0;0;2021-12-16T13:36:01.171836Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:52:40.048146Z +C:/Windows/SysWOW64/FXSXP32.dll;file;104448;33206;2019-12-06T19:49:00Z;;;2785144255;2;0;1125899907612380;4096;208;0;0;2021-12-16T13:35:35.826539Z;2021-11-11T11:29:35.533514Z;2019-12-07T14:52:38.689112Z +C:/Windows/SysWOW64/g711codc.ax;file;50688;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907630320;4096;104;0;0;2021-12-16T13:35:35.840275Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/GameBarPresenceWriter.exe;file;245760;33206;2021-10-03T19:02:51.190403Z;;;2785144255;2;0;1688849861187650;4096;480;0;0;2021-12-16T13:35:35.854103Z;2021-11-11T11:29:34.200158Z;2021-10-03T19:02:51.169163Z +C:/Windows/SysWOW64/GameBarPresenceWriter.proxy.dll;file;10752;33206;2021-10-03T19:02:51.209057Z;;;2785144255;2;0;1688849861187650;4096;24;0;0;2021-12-16T13:35:35.866070Z;2021-11-11T11:29:34.199161Z;2021-10-03T19:02:51.206045Z +C:/Windows/SysWOW64/GameChatOverlayExt.dll;file;10240;33206;2019-12-07T09:09:55.053853Z;;;2785144255;2;0;1125899907629930;4096;24;0;0;2021-12-16T13:35:35.876884Z;2021-11-11T11:29:34.198164Z;2019-12-07T09:09:55.053853Z +C:/Windows/SysWOW64/GameChatTranscription.dll;file;99328;33206;2021-01-15T09:27:12.886858Z;;;2785144255;2;0;2533274790986920;4096;200;0;0;2021-12-16T13:35:35.890666Z;2021-11-11T11:29:33.741259Z;2021-01-15T09:27:12.886858Z +C:/Windows/SysWOW64/GameInput.dll;file;61776;33206;2021-11-11T11:28:59.237606Z;;;2785144255;2;0;281474977879183;4096;128;0;0;2021-12-16T13:35:35.903788Z;2021-11-11T11:38:53.223461Z;2021-11-11T11:28:59.235612Z +C:/Windows/SysWOW64/gamemode.dll;file;31232;33206;2019-12-07T09:09:15.206616Z;;;2785144255;2;0;1125899907639040;4096;64;0;0;2021-12-16T13:35:35.915828Z;2021-11-11T11:29:33.731285Z;2019-12-07T09:09:15.206616Z +C:/Windows/SysWOW64/GamePanel.exe;file;932352;33206;2021-01-15T09:27:34.256490Z;;;2785144255;2;0;12666373952601500;4096;1824;0;0;2021-12-16T13:35:35.948515Z;2021-11-11T11:29:34.200158Z;2021-01-15T09:27:34.240837Z +C:/Windows/SysWOW64/GamePanelExternalHook.dll;file;21504;33206;2019-12-07T09:09:55.053853Z;;;2785144255;2;0;1125899907630130;4096;48;0;0;2021-12-16T13:35:35.960482Z;2021-11-11T11:29:34.199161Z;2019-12-07T09:09:55.053853Z +C:/Windows/SysWOW64/gameux.dll;file;19968;33206;2021-01-15T09:27:34.678234Z;;;2785144255;2;0;15762598696418800;4096;40;0;0;2021-12-16T13:35:35.972501Z;2021-11-11T11:29:34.212096Z;2021-01-15T09:27:34.678234Z +C:/Windows/SysWOW64/gamingtcui.dll;file;124416;33206;2021-01-15T09:27:12.902479Z;;;2785144255;2;0;2533274790986920;4096;248;0;0;2021-12-16T13:35:35.986370Z;2021-11-11T11:29:33.744251Z;2021-01-15T09:27:12.902479Z +C:/Windows/SysWOW64/gb2312.uce;file;24006;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907629490;4096;48;0;0;2021-12-16T13:35:35.988966Z;2020-11-03T12:35:39.110190Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/gcdef.dll;file;124416;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907629860;4096;248;0;0;2021-12-16T13:35:36.005496Z;2021-11-11T11:29:34.206112Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/gddcres.dll;file;17992;33206;2021-07-30T10:23:06.970882Z;;;2785144255;1;0;4785074604162870;4096;40;0;0;2021-12-16T13:35:36.009670Z;2021-11-01T09:31:58.221234Z;2021-07-30T10:23:06.970882Z +C:/Windows/SysWOW64/gdi32.dll;file;140976;33206;2021-10-03T19:02:05.292867Z;;;2785144255;2;0;1688849861186670;4096;280;0;0;2021-12-16T13:35:36.009670Z;2021-11-11T11:29:33.793120Z;2021-10-03T19:02:05.282584Z +C:/Windows/SysWOW64/gdi32full.dll;file;895056;33206;2021-11-11T11:29:00.630933Z;;;2785144255;2;0;281474977879234;4096;1752;0;0;2021-12-16T13:35:36.009670Z;2021-11-11T11:38:50.341327Z;2021-11-11T11:29:00.613022Z +C:/Windows/SysWOW64/GdiPlus.dll;file;1459200;33206;2021-11-11T11:29:00.684825Z;;;2785144255;2;0;281474977879235;4096;2856;0;0;2021-12-16T13:35:36.011213Z;2021-11-11T11:38:50.602451Z;2021-11-11T11:29:00.655866Z +C:/Windows/SysWOW64/Geocommon.dll;file;41472;33206;2021-01-15T09:27:15.077761Z;;;2785144255;2;0;26177172834702200;4096;88;0;0;2021-12-16T13:35:36.022912Z;2021-11-11T11:29:33.739265Z;2021-01-15T09:27:15.077761Z +C:/Windows/SysWOW64/Geolocation.dll;file;369664;33206;2021-01-15T09:27:19.643887Z;;;2785144255;2;0;9007199255360260;4096;728;0;0;2021-12-16T13:35:36.037900Z;2021-11-11T11:29:33.786186Z;2021-01-15T09:27:19.628265Z +C:/Windows/SysWOW64/getmac.exe;file;65024;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;1125899907638480;4096;128;0;0;2021-12-16T13:35:36.060582Z;2021-11-11T11:29:33.801130Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/getuname.dll;file;8704;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907628160;4096;24;0;0;2021-12-16T13:35:36.071461Z;2021-11-11T11:29:34.239061Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/glmf32.dll;file;392192;33206;2020-11-03T12:46:02.679395Z;;;2785144255;2;0;562949954400521;4096;768;0;0;2021-12-16T13:35:36.088176Z;2021-11-11T11:29:34.238065Z;2020-11-03T12:46:02.679395Z +C:/Windows/SysWOW64/globinputhost.dll;file;98816;33206;2020-11-03T12:45:49.213620Z;;;2785144255;2;0;562949954395939;4096;200;0;0;2021-12-16T13:35:36.088965Z;2021-11-11T11:29:33.757217Z;2020-11-03T12:45:49.213620Z +C:/Windows/SysWOW64/glu32.dll;file;245248;33206;2021-07-07T12:58:52.682743Z;;;2785144255;2;0;281474977791119;4096;480;0;0;2021-12-16T13:35:36.088965Z;2021-11-11T11:29:34.239061Z;2021-07-07T12:58:52.682743Z +C:/Windows/SysWOW64/Gms.log;file;76604;33206;2021-12-16T12:17:24.896993Z;;;2785144255;1;0;1688849860348810;4096;384;0;0;2021-12-16T12:17:24.896993Z;2021-12-16T12:17:24.896993Z;2019-09-17T00:30:14.106022Z +C:/Windows/SysWOW64/gmsaclient.dll;file;32768;33206;2020-11-11T20:25:30.241291Z;;;2785144255;2;0;844424931073668;4096;64;0;0;2021-12-16T13:35:36.101341Z;2021-11-11T11:29:33.777163Z;2020-11-11T20:25:30.238380Z +C:/Windows/SysWOW64/gnsdk_fp.dll;file;249856;33206;2019-12-06T18:24:00Z;;;2785144255;2;0;1125899907619630;4096;488;0;0;2021-12-16T13:35:36.119184Z;2021-11-15T13:07:18.033808Z;2019-12-07T14:52:21.032166Z +C:/Windows/SysWOW64/gpapi.dll;file;111024;33206;2020-11-03T12:45:52.822231Z;;;2785144255;2;0;562949954397851;4096;224;0;0;2021-12-16T13:35:36.119184Z;2021-11-11T11:29:33.789166Z;2020-11-03T12:45:52.822231Z +C:/Windows/SysWOW64/gpedit.dll;file;514560;33206;2020-11-03T12:46:01.382791Z;;;2785144255;2;0;562949954400451;4096;1008;0;0;2021-12-16T13:35:36.135168Z;2021-11-11T11:29:34.214092Z;2020-11-03T12:46:01.367115Z +C:/Windows/SysWOW64/gpedit.msc;file;147439;33206;2019-12-07T14:54:45.141243Z;;;2785144255;2;0;1125899907621380;4096;288;0;0;2021-12-16T13:35:36.141162Z;2020-11-03T12:35:34.923670Z;2019-12-07T09:10:23.882467Z +C:/Windows/SysWOW64/gpprefcl.dll;file;563200;33206;2020-11-03T12:46:05.928634Z;;;2785144255;2;0;562949954401758;4096;1104;0;0;2021-12-16T13:35:36.160055Z;2021-11-11T11:29:32.369144Z;2020-11-03T12:46:05.912986Z +C:/Windows/SysWOW64/gpprnext.dll;file;31744;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907638610;4096;64;0;0;2021-12-16T13:35:36.174210Z;2021-11-11T11:29:33.710341Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/gpresult.exe;file;190464;33206;2021-04-17T10:35:15.252947Z;;;2785144255;2;0;844424930952034;4096;376;0;0;2021-12-16T13:35:36.199154Z;2021-11-11T11:29:34.214092Z;2021-04-17T10:35:15.242301Z +C:/Windows/SysWOW64/gpscript.dll;file;40960;33206;2020-11-03T12:46:05.928634Z;;;2785144255;2;0;562949954401760;4096;80;0;0;2021-12-16T13:35:36.212069Z;2021-11-11T11:29:32.369144Z;2020-11-03T12:46:05.928634Z +C:/Windows/SysWOW64/gpscript.exe;file;37888;33206;2020-11-03T12:46:05.928634Z;;;2785144255;2;0;562949954401759;4096;80;0;0;2021-12-16T13:35:36.224745Z;2021-11-11T11:29:32.369144Z;2020-11-03T12:46:05.928634Z +C:/Windows/SysWOW64/gptext.dll;file;20992;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907635470;4096;48;0;0;2021-12-16T13:35:36.236742Z;2021-11-11T11:29:33.787167Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/gpupdate.exe;file;25088;33206;2020-11-03T12:46:01.382791Z;;;2785144255;2;0;562949954400452;4096;56;0;0;2021-12-16T13:35:36.247802Z;2021-11-11T11:29:34.203158Z;2020-11-03T12:46:01.382791Z +C:/Windows/SysWOW64/GraphicsCapture.dll;file;109056;33206;2020-11-03T12:45:48.526281Z;;;2785144255;2;0;562949954395874;4096;216;0;0;2021-12-16T13:35:36.261659Z;2021-11-11T11:29:33.738267Z;2020-11-03T12:45:48.526281Z +C:/Windows/SysWOW64/grb.rs;file;19456;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907635000;4096;40;0;0;2021-12-16T13:35:36.264704Z;2021-11-11T11:29:33.705354Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/GroupPolicy;directory;0;16822;2019-12-07T09:14:52.736652Z;;;2785144255;1;0;63613344736928800;4096;0;0;0;2021-12-16T13:36:01.171836Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/GroupPolicyUsers;directory;0;16822;2019-12-07T09:14:52.736652Z;;;2785144255;1;0;87257242780623900;4096;0;0;0;2021-12-16T13:36:01.171836Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/grpconv.exe;file;40448;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907628810;4096;80;0;0;2021-12-16T13:35:36.296787Z;2021-11-11T11:29:34.248997Z;2019-12-07T09:10:05.475470Z +C:/Windows/SysWOW64/hbaapi.dll;file;67584;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;1407374884349280;4096;136;0;0;2021-12-16T13:35:36.309077Z;2021-11-11T11:29:33.718319Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/hcproviders.dll;file;45568;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907636130;4096;96;0;0;2021-12-16T13:35:36.320674Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/HdcpHandler.dll;file;248952;33206;2021-01-15T09:27:34.443914Z;;;2785144255;2;0;13792273859444200;4096;488;0;0;2021-12-16T13:35:36.336630Z;2021-11-11T11:29:34.214092Z;2021-01-15T09:27:34.443914Z +C:/Windows/SysWOW64/hdwwiz.cpl;file;373248;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907637210;4096;736;0;0;2021-12-16T13:35:36.354511Z;2021-11-11T11:29:33.816060Z;2019-12-07T09:09:30.880472Z +C:/Windows/SysWOW64/hdwwiz.exe;file;65536;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;844424930927995;4096;128;0;0;2021-12-16T13:35:36.386384Z;2021-11-11T11:29:33.814066Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/he-IL;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;37717646879548500;4096;0;0;0;2021-12-16T13:36:01.171836Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/he-IL/cdosys.dll.mui;file;46080;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6192449488304110;4096;96;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/he-IL/comctl32.dll.mui;file;5632;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;6755399441725620;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.973906Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/he-IL/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619360;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/he-IL/SyncRes.dll.mui;file;23552;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648620;4096;48;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/he-IL/windows.ui.xaml.dll.mui;file;16384;33206;2021-06-10T14:01:34.421730Z;;;2785144255;4;0;281474977764495;4096;32;0;0;2021-06-10T14:01:41.684884Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:34.421730Z +C:/Windows/SysWOW64/HeatCore.dll;file;235520;33206;2021-01-15T09:27:13.589817Z;;;2785144255;2;0;2533274790987000;4096;464;0;0;2021-12-16T13:35:36.402341Z;2021-11-11T11:29:33.738267Z;2021-01-15T09:27:13.574221Z +C:/Windows/SysWOW64/help.exe;file;10240;33206;2019-12-07T09:09:57.865923Z;;;2785144255;2;0;1125899907627890;4096;24;0;0;2021-12-16T13:35:36.412636Z;2021-11-11T11:29:34.207109Z;2019-12-07T09:09:57.865923Z +C:/Windows/SysWOW64/HelpPaneProxy.dll;file;44032;33206;2021-01-15T09:27:34.678234Z;;;2785144255;2;0;11258999069048300;4096;88;0;0;2021-12-16T13:35:36.425484Z;2021-11-11T11:29:34.204118Z;2021-01-15T09:27:34.678234Z +C:/Windows/SysWOW64/hgcpl.dll;file;582656;33206;2021-01-15T09:27:19.659508Z;;;2785144255;2;0;12384898975888100;4096;1144;0;0;2021-12-16T13:35:36.448043Z;2021-11-11T11:29:33.788164Z;2021-01-15T09:27:19.659508Z +C:/Windows/SysWOW64/hh.exe;file;16384;33206;2019-12-07T09:10:00.444993Z;;;2785144255;2;0;1125899907627820;4096;32;0;0;2021-12-16T13:35:36.475969Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:10:00.444993Z +C:/Windows/SysWOW64/hhctrl.ocx;file;575488;33206;2021-01-15T09:27:34.693855Z;;;2785144255;2;0;6473924464967150;4096;1128;0;0;2021-12-16T13:35:36.500512Z;2021-11-11T11:29:34.216121Z;2021-01-15T09:27:34.678234Z +C:/Windows/SysWOW64/hhsetup.dll;file;45056;33206;2019-12-07T09:10:00.444993Z;;;2785144255;2;0;1125899907629760;4096;88;0;0;2021-12-16T13:35:36.513233Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:10:00.444993Z +C:/Windows/SysWOW64/hid.dll;file;25600;33206;2020-11-03T12:45:53.025280Z;;;2785144255;2;0;562949954397870;4096;56;0;0;2021-12-16T13:35:36.513233Z;2021-11-11T11:29:33.798140Z;2020-11-03T12:45:53.025280Z +C:/Windows/SysWOW64/hidphone.tsp;file;32256;33206;2019-12-07T09:10:04.162952Z;;;2785144255;2;0;1125899907628960;4096;64;0;0;2021-12-16T13:35:36.525192Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:04.162952Z +C:/Windows/SysWOW64/hidserv.dll;file;29696;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907637760;4096;64;0;0;2021-12-16T13:35:36.537153Z;2021-11-11T11:29:33.792123Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/hlink.dll;file;135168;33206;2021-10-03T19:02:18.769845Z;;;2785144255;2;0;1688849861187000;4096;264;0;0;2021-12-16T13:35:36.549911Z;2021-11-11T11:29:33.786186Z;2021-10-03T19:02:18.760947Z +C:/Windows/SysWOW64/hmkd.dll;file;45568;33206;2019-12-07T09:09:13.536352Z;;;2785144255;2;0;1125899907636200;4096;96;0;0;2021-12-16T13:35:36.561523Z;2021-11-11T11:29:33.770182Z;2019-12-07T09:09:13.536352Z +C:/Windows/SysWOW64/hnetcfg.dll;file;329728;33206;2021-01-15T09:27:34.787583Z;;;2785144255;2;0;13510798882733600;4096;648;0;0;2021-12-16T13:35:36.579904Z;2021-11-11T11:29:34.210101Z;2021-01-15T09:27:34.771961Z +C:/Windows/SysWOW64/HNetCfgClient.dll;file;206336;33206;2021-01-15T09:27:21.537693Z;;;2785144255;2;0;16044073673127100;4096;408;0;0;2021-12-16T13:35:36.594432Z;2021-11-11T11:29:33.816060Z;2021-01-15T09:27:21.537693Z +C:/Windows/SysWOW64/hnetmon.dll;file;14336;33206;2019-12-07T09:10:00.459704Z;;;2785144255;2;0;1125899907630070;4096;32;0;0;2021-12-16T13:35:36.604407Z;2021-11-11T11:29:34.212096Z;2019-12-07T09:10:00.459704Z +C:/Windows/SysWOW64/HoloShellRuntime.dll;file;183808;33206;2021-01-15T09:27:48.661891Z;;;2785144255;2;0;21955048184055100;4096;360;0;0;2021-12-16T13:35:36.618398Z;2021-11-11T11:29:32.520657Z;2021-01-15T09:27:48.661891Z +C:/Windows/SysWOW64/HOSTNAME.EXE;file;11776;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907629900;4096;24;0;0;2021-12-16T13:35:36.628293Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/hr-HR;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;45598946227446900;4096;0;0;0;2021-12-16T13:36:01.171836Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/hr-HR/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;6192449488304290;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.973906Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/hr-HR/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619330;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/hr-HR/SyncRes.dll.mui;file;29184;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648610;4096;64;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/hr-HR/windows.ui.xaml.dll.mui;file;17920;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907635590;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:43.187586Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/HrtfApo.dll;file;343552;33206;2021-10-16T00:21:15.262084Z;;;2785144255;2;0;281474977857301;4096;672;0;0;2021-12-16T13:35:36.643320Z;2021-11-11T11:29:33.700367Z;2021-10-16T00:21:15.262084Z +C:/Windows/SysWOW64/html.iec;file;336896;33206;2019-12-07T09:10:00.647783Z;;;2785144255;2;0;1125899907629220;4096;664;0;0;2021-12-16T13:35:36.659744Z;2020-11-03T12:35:38.985219Z;2019-12-07T09:10:00.647783Z +C:/Windows/SysWOW64/httpapi.dll;file;26624;33206;2021-07-16T09:18:04.659550Z;;;2785144255;2;0;281474977816958;4096;56;0;0;2021-12-16T13:35:36.660354Z;2021-11-11T11:29:33.762202Z;2021-07-16T09:18:04.659550Z +C:/Windows/SysWOW64/htui.dll;file;35328;33206;2019-12-07T09:09:32.318134Z;;;2785144255;2;0;1125899907637120;4096;72;0;0;2021-12-16T13:35:36.671987Z;2021-11-11T11:29:33.812069Z;2019-12-07T09:09:32.318134Z +C:/Windows/SysWOW64/hu-HU;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;36873221949416500;4096;8;0;0;2021-12-16T13:36:01.171836Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/hu-HU/APHostRes.dll.mui;file;17920;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648660;4096;40;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.482415Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/hu-HU/cdosys.dll.mui;file;49664;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014760;4096;104;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/hu-HU/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5348024558172310;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.973906Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/hu-HU/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619420;4096;8;0;0;2019-12-07T14:52:07.735888Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.735888Z +C:/Windows/SysWOW64/hu-HU/SyncRes.dll.mui;file;30720;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648770;4096;64;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.513659Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/hu-HU/windows.ui.xaml.dll.mui;file;17920;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907636460;4096;40;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:43.843722Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/HvsiManagementApi.dll;file;101704;33206;2021-01-15T09:27:42.361343Z;;;2785144255;2;0;17732923533394500;4096;200;0;0;2021-12-16T13:35:36.686149Z;2021-11-11T11:29:32.360170Z;2021-01-15T09:27:42.361343Z +C:/Windows/SysWOW64/IA2ComProxy.dll;file;26624;33206;2019-12-07T09:09:21.739970Z;;;2785144255;2;0;1125899907638490;4096;56;0;0;2021-12-16T13:35:36.698183Z;2021-11-11T11:29:33.773174Z;2019-12-07T09:09:21.739970Z +C:/Windows/SysWOW64/iac25_32.ax;file;197632;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907628420;4096;392;0;0;2021-12-16T13:35:36.709806Z;2021-11-11T11:29:34.220113Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ias.dll;file;23552;33206;2019-12-07T09:10:00.459704Z;;;2785144255;2;0;1125899907630280;4096;48;0;0;2021-12-16T13:35:36.721748Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:10:00.459704Z +C:/Windows/SysWOW64/iasacct.dll;file;65536;33206;2021-01-15T09:27:34.771961Z;;;2785144255;2;0;12947848929312300;4096;128;0;0;2021-12-16T13:35:36.734494Z;2021-11-11T11:29:34.211139Z;2021-01-15T09:27:34.771961Z +C:/Windows/SysWOW64/iasads.dll;file;57344;33206;2021-01-15T09:27:34.709477Z;;;2785144255;2;0;9851624185495030;4096;112;0;0;2021-12-16T13:35:36.747461Z;2021-11-11T11:29:34.202158Z;2021-01-15T09:27:34.709477Z +C:/Windows/SysWOW64/iasdatastore.dll;file;55808;33206;2021-01-15T09:27:34.725097Z;;;2785144255;2;0;10133099162205700;4096;112;0;0;2021-12-16T13:35:36.761243Z;2021-11-11T11:29:34.216121Z;2021-01-15T09:27:34.725097Z +C:/Windows/SysWOW64/iashlpr.dll;file;74752;33206;2021-01-15T09:27:34.771961Z;;;2785144255;2;0;7318349395099140;4096;152;0;0;2021-12-16T13:35:36.774883Z;2021-11-11T11:29:34.215132Z;2021-01-15T09:27:34.771961Z +C:/Windows/SysWOW64/IasMigPlugin.dll;file;567112;33206;2021-01-15T09:27:34.756340Z;;;2785144255;2;0;9570149208784380;4096;1112;0;0;2021-12-16T13:35:36.800033Z;2021-11-11T11:29:34.207109Z;2021-01-15T09:27:34.756340Z +C:/Windows/SysWOW64/iasnap.dll;file;107520;33206;2021-01-15T09:27:34.725097Z;;;2785144255;2;0;8444249301941750;4096;216;0;0;2021-12-16T13:35:36.814287Z;2021-11-11T11:29:34.211139Z;2021-01-15T09:27:34.725097Z +C:/Windows/SysWOW64/iaspolcy.dll;file;40448;33206;2021-01-15T09:27:34.756340Z;;;2785144255;2;0;12666373952601600;4096;80;0;0;2021-12-16T13:35:36.826966Z;2021-11-11T11:29:34.203158Z;2021-01-15T09:27:34.756340Z +C:/Windows/SysWOW64/iasrad.dll;file;187392;33206;2021-01-15T09:27:34.771961Z;;;2785144255;2;0;12384898975890900;4096;368;0;0;2021-12-16T13:35:36.840756Z;2021-11-11T11:29:34.207109Z;2021-01-15T09:27:34.771961Z +C:/Windows/SysWOW64/iasrecst.dll;file;133632;33206;2021-01-15T09:27:34.709477Z;;;2785144255;2;0;10977524092337700;4096;264;0;0;2021-12-16T13:35:36.854707Z;2021-11-11T11:29:34.203158Z;2021-01-15T09:27:34.709477Z +C:/Windows/SysWOW64/iassam.dll;file;198144;33206;2021-01-15T09:27:34.740719Z;;;2785144255;2;0;10414574138916300;4096;392;0;0;2021-12-16T13:35:36.870042Z;2021-11-11T11:29:34.205151Z;2021-01-15T09:27:34.725097Z +C:/Windows/SysWOW64/iassdo.dll;file;359936;33206;2021-01-15T09:27:34.740719Z;;;2785144255;2;0;14918173766286800;4096;704;0;0;2021-12-16T13:35:36.885146Z;2021-11-11T11:29:34.207109Z;2021-01-15T09:27:34.740719Z +C:/Windows/SysWOW64/iassvcs.dll;file;124416;33206;2021-01-15T09:27:34.756340Z;;;2785144255;2;0;20829148277210600;4096;248;0;0;2021-12-16T13:35:36.900105Z;2021-11-11T11:29:34.205151Z;2021-01-15T09:27:34.756340Z +C:/Windows/SysWOW64/icacls.exe;file;29696;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907629720;4096;64;0;0;2021-12-16T13:35:36.911110Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/iccvid.dll;file;84992;33206;2019-12-07T09:10:05.491292Z;;;2785144255;2;0;1125899907628970;4096;168;0;0;2021-12-16T13:35:36.925074Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:05.491292Z +C:/Windows/SysWOW64/icm32.dll;file;234496;33206;2020-11-03T12:45:48.479424Z;;;2785144255;2;0;562949954395866;4096;464;0;0;2021-12-16T13:35:36.941559Z;2021-11-11T11:29:33.795115Z;2020-11-03T12:45:48.479424Z +C:/Windows/SysWOW64/icmp.dll;file;2560;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907627950;4096;8;0;0;2021-12-16T13:35:36.944565Z;2021-11-11T11:29:34.211139Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/icmui.dll;file;20992;33206;2019-12-07T09:09:27.583510Z;;;2785144255;2;0;1125899907634840;4096;48;0;0;2021-12-16T13:35:36.957503Z;2021-11-11T11:29:33.794117Z;2019-12-07T09:09:27.583510Z +C:/Windows/SysWOW64/IconCodecService.dll;file;11776;33206;2019-12-07T09:09:27.583510Z;;;2785144255;2;0;1125899907638770;4096;24;0;0;2021-12-16T13:35:36.970468Z;2021-11-11T11:29:33.792123Z;2019-12-07T09:09:27.583510Z +C:/Windows/SysWOW64/icsigd.dll;file;65536;33206;2019-12-07T09:10:00.459704Z;;;2785144255;2;0;1125899907629360;4096;128;0;0;2021-12-16T13:35:36.984468Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:10:00.459704Z +C:/Windows/SysWOW64/icsunattend.exe;file;13824;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;844424930925768;4096;32;0;0;2021-12-16T13:35:36.995431Z;2021-11-11T11:29:33.815064Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/icsxml;directory;0;16822;2019-12-07T09:15:00.816398Z;;;2785144255;1;0;23925373020726300;4096;0;0;0;2021-12-16T13:36:01.171836Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/icsxml/cmnicfg.xml;file;5868;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907638180;4096;16;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:44.999701Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/icsxml/ipcfg.xml;file;13451;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907637060;4096;32;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:44.171774Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/icsxml/osinfo.xml;file;780;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907634660;4096;8;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:42.625219Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/icsxml/potscfg.xml;file;2612;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907636760;4096;8;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:44.015557Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/icsxml/pppcfg.xml;file;14434;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907634870;4096;32;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:42.765811Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/icu.dll;file;1864192;33206;2021-06-10T14:01:39.794502Z;;;2785144255;2;0;281474977765142;4096;3648;0;0;2021-12-16T13:35:37.016745Z;2021-11-11T11:29:33.752230Z;2021-06-10T14:01:39.788493Z +C:/Windows/SysWOW64/icuin.dll;file;24576;33060;2019-12-07T09:09:18.036454Z;;;2785144255;2;0;1125899907637100;4096;48;0;0;2021-12-16T13:35:37.020734Z;2021-11-11T11:29:33.751232Z;2019-12-07T09:09:18.036454Z +C:/Windows/SysWOW64/icuuc.dll;file;29184;33060;2019-12-07T09:09:18.036454Z;;;2785144255;2;0;1125899907636450;4096;64;0;0;2021-12-16T13:35:37.024671Z;2021-11-11T11:29:33.751232Z;2019-12-07T09:09:18.036454Z +C:/Windows/SysWOW64/IdCtrls.dll;file;94720;33206;2021-01-15T09:27:21.796655Z;;;2785144255;2;0;11258999069046000;4096;192;0;0;2021-12-16T13:35:37.038636Z;2021-11-11T11:29:33.815064Z;2021-01-15T09:27:21.796655Z +C:/Windows/SysWOW64/ideograf.uce;file;60458;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907630730;4096;120;0;0;2021-12-16T13:35:37.041630Z;2020-11-03T12:35:39.922501Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/idndl.dll;file;8192;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907635180;4096;16;0;0;2021-12-16T13:35:37.052628Z;2021-11-11T11:29:30.944623Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/IDStore.dll;file;126464;33206;2021-01-15T09:27:10.447437Z;;;2785144255;2;0;32369622322313500;4096;248;0;0;2021-12-16T13:35:37.067086Z;2021-11-11T11:29:33.731285Z;2021-01-15T09:27:10.447437Z +C:/Windows/SysWOW64/IEAdvpack.dll;file;120832;33206;2019-12-07T09:10:00.647783Z;;;2785144255;2;0;1125899907629580;4096;240;0;0;2021-12-16T13:35:37.082079Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:10:00.647783Z +C:/Windows/SysWOW64/ieapfltr.dll;file;742400;33206;2021-01-15T09:27:35.224979Z;;;2785144255;2;0;10414574138916400;4096;1456;0;0;2021-12-16T13:35:37.085960Z;2021-11-11T11:29:34.225100Z;2021-01-15T09:27:35.209358Z +C:/Windows/SysWOW64/iedkcs32.dll;file;345088;33206;2021-11-11T11:29:08.084388Z;;;2785144255;2;0;281474977879571;4096;680;0;0;2021-12-16T13:35:37.102917Z;2021-11-11T11:38:50.749642Z;2021-11-11T11:29:08.078403Z +C:/Windows/SysWOW64/ieframe.dll;file;6462976;33206;2021-11-11T11:29:09.875605Z;;;2785144255;2;0;281474977879584;4096;12624;0;0;2021-12-16T13:35:37.113149Z;2021-11-11T11:38:51.109596Z;2021-11-11T11:29:09.711220Z +C:/Windows/SysWOW64/iemigplugin.dll;file;62976;33206;2021-11-11T11:29:09.913467Z;;;2785144255;2;0;281474977879585;4096;128;0;0;2021-12-16T13:35:37.130119Z;2021-11-11T11:38:52.956623Z;2021-11-11T11:29:09.912502Z +C:/Windows/SysWOW64/iepeers.dll;file;131584;33206;2021-01-15T09:27:35.053145Z;;;2785144255;2;0;10133099162205700;4096;264;0;0;2021-12-16T13:35:37.145437Z;2021-11-11T11:29:34.231045Z;2021-01-15T09:27:35.037524Z +C:/Windows/SysWOW64/ieproxy.dll;file;387072;33206;2021-11-11T11:29:09.367736Z;;;2785144255;2;0;281474977879578;4096;760;0;0;2021-12-16T13:35:37.148491Z;2021-11-11T11:38:52.702735Z;2021-11-11T11:29:09.360754Z +C:/Windows/SysWOW64/iernonce.dll;file;38400;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907629210;4096;80;0;0;2021-12-16T13:35:37.162939Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/iertutil.dll;file;2269976;33206;2021-10-16T00:21:18.771197Z;;;2785144255;2;0;281474977857640;4096;4440;0;0;2021-12-16T13:35:37.163411Z;2021-11-11T11:29:33.783178Z;2021-10-16T00:21:18.717792Z +C:/Windows/SysWOW64/iesetup.dll;file;70144;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907629090;4096;144;0;0;2021-12-16T13:35:37.180126Z;2021-11-11T11:29:34.231045Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/iesysprep.dll;file;37376;33206;2019-12-07T09:10:00.647783Z;;;2785144255;2;0;1125899907630440;4096;80;0;0;2021-12-16T13:35:37.193119Z;2021-11-11T11:29:34.229083Z;2019-12-07T09:10:00.647783Z +C:/Windows/SysWOW64/ieui.dll;file;468992;33206;2019-12-07T09:10:00.584760Z;;;2785144255;2;0;1125899907628640;4096;920;0;0;2021-12-16T13:35:37.196508Z;2021-11-11T11:29:34.224102Z;2019-12-07T09:10:00.584760Z +C:/Windows/SysWOW64/ieuinit.inf;file;3329;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907629780;4096;8;0;0;2021-12-16T13:35:37.204170Z;2020-11-03T12:35:39.266414Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/ieUnatt.exe;file;122880;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907628810;4096;240;0;0;2021-12-16T13:35:37.230418Z;2021-11-11T11:29:34.223103Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/iexpress.exe;file;152064;33206;2019-12-07T09:10:00.554367Z;;;2785144255;2;0;1125899907627910;4096;304;0;0;2021-12-16T13:35:37.274050Z;2021-11-11T11:29:34.229083Z;2019-12-07T09:10:00.554367Z +C:/Windows/SysWOW64/ifmon.dll;file;25600;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907629130;4096;56;0;0;2021-12-16T13:35:37.287014Z;2021-11-11T11:29:34.212096Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/ifsutil.dll;file;188728;33206;2021-10-16T00:21:17.098791Z;;;2785144255;2;0;281474977857366;4096;376;0;0;2021-12-16T13:35:37.301567Z;2021-11-11T11:29:33.776165Z;2021-10-16T00:21:17.098791Z +C:/Windows/SysWOW64/ifsutilx.dll;file;14336;33206;2019-12-07T09:10:05.507228Z;;;2785144255;2;0;1125899907628030;4096;32;0;0;2021-12-16T13:35:37.313272Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:10:05.507228Z +C:/Windows/SysWOW64/imaadp32.acm;file;30680;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907635010;4096;64;0;0;2021-12-16T13:35:37.314117Z;2021-11-11T11:29:33.705354Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/imagehlp.dll;file;95496;33206;2020-11-03T12:45:39.575150Z;;;2785144255;2;0;562949954392076;4096;192;0;0;2021-12-16T13:35:37.314117Z;2021-11-11T11:29:33.775168Z;2020-11-03T12:45:39.575150Z +C:/Windows/SysWOW64/imageres.dll;file;2560;33206;2019-12-07T09:09:13.552817Z;;;2785144255;2;0;1125899907636290;4096;8;0;0;2021-12-16T13:35:37.315120Z;2021-11-11T11:29:33.710341Z;2019-12-07T09:09:13.552817Z +C:/Windows/SysWOW64/imagesp1.dll;file;2560;33206;2019-12-07T09:09:13.552817Z;;;2785144255;2;0;1125899907635880;4096;8;0;0;2021-12-16T13:35:37.318427Z;2021-11-11T11:29:33.713333Z;2019-12-07T09:09:13.552817Z +C:/Windows/SysWOW64/imapi.dll;file;114688;33206;2021-01-15T09:27:34.865690Z;;;2785144255;2;0;3940649674571280;4096;224;0;0;2021-12-16T13:35:37.332149Z;2021-11-11T11:29:34.232043Z;2021-01-15T09:27:34.865690Z +C:/Windows/SysWOW64/imapi2.dll;file;420864;33206;2021-01-15T09:27:34.834446Z;;;2785144255;2;0;6192449488256530;4096;824;0;0;2021-12-16T13:35:37.348533Z;2021-11-11T11:29:34.224102Z;2021-01-15T09:27:34.818826Z +C:/Windows/SysWOW64/imapi2fs.dll;file;859648;33206;2021-10-16T00:21:27.852443Z;;;2785144255;2;0;281474977857761;4096;1680;0;0;2021-12-16T13:35:37.369663Z;2021-11-11T11:29:34.227087Z;2021-10-16T00:21:27.845901Z +C:/Windows/SysWOW64/IME;directory;0;16822;2019-12-07T09:14:52.736652Z;;;2785144255;1;0;92605267338126400;4096;0;0;0;2021-12-16T13:36:01.171836Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/IMEJP;directory;0;16822;2021-10-16T08:02:15.587175Z;;;2785144255;1;0;43065671437051000;4096;8;0;0;2021-12-16T13:36:01.171836Z;2021-10-16T08:02:15.587175Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/IMEJP/APPLETS;directory;0;16822;2019-12-07T09:15:00.816398Z;;;2785144255;1;0;25614222880990300;4096;0;0;0;2021-12-16T13:36:01.171836Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/IMEJP/APPLETS/IMJPCAC.DLL;file;323584;33206;2019-12-07T09:10:45.742723Z;;;2785144255;2;0;1125899907632330;4096;632;0;0;2020-11-03T12:35:41.125569Z;2021-11-11T11:29:34.123584Z;2019-12-07T09:10:45.742723Z +C:/Windows/SysWOW64/IME/IMEJP/APPLETS/IMJPCLST.DLL;file;658432;33206;2019-12-07T09:10:45.742723Z;;;2785144255;2;0;1125899907632830;4096;1288;0;0;2020-11-03T12:35:41.359890Z;2021-11-11T11:29:34.115605Z;2019-12-07T09:10:45.742723Z +C:/Windows/SysWOW64/IME/IMEJP/APPLETS/IMJPCLST.XML;file;60083;33206;2019-12-07T09:10:45.742723Z;;;2785144255;2;0;1125899907631960;4096;120;0;0;2019-12-07T09:10:45.742723Z;2020-11-03T12:35:40.844385Z;2019-12-07T09:10:45.742723Z +C:/Windows/SysWOW64/IME/IMEJP/APPLETS/IMJPKDIC.DLL;file;530432;33206;2019-12-07T09:10:45.742723Z;;;2785144255;2;0;1125899907631590;4096;1040;0;0;2020-11-03T12:35:40.578823Z;2021-11-11T11:29:34.122586Z;2019-12-07T09:10:45.742723Z +C:/Windows/SysWOW64/IME/IMEJP/APPLETS/imjpskey.DLL;file;95232;33206;2019-12-07T09:10:45.742723Z;;;2785144255;2;0;1125899907631570;4096;192;0;0;2020-11-03T12:35:40.547581Z;2021-11-11T11:29:34.120592Z;2019-12-07T09:10:45.742723Z +C:/Windows/SysWOW64/IME/IMEJP/APPLETS/IMJPSKF.DLL;file;169472;33206;2019-12-07T09:10:45.742723Z;;;2785144255;2;0;1125899907632020;4096;336;0;0;2020-11-03T12:35:40.906870Z;2021-11-11T11:29:34.124581Z;2019-12-07T09:10:45.742723Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPAPI.DLL;file;1769272;33206;2021-01-15T09:27:34.990660Z;;;2785144255;2;0;12666373952601600;4096;3456;0;0;2021-01-15T09:30:30.711230Z;2021-11-11T11:29:34.218116Z;2021-01-15T09:27:34.959418Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPCD.DLL;file;207160;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907629330;4096;408;0;0;2020-11-03T12:35:39.016461Z;2021-11-11T11:29:34.220113Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPCMLD.DLL;file;234808;33206;2021-03-11T12:12:28.905590Z;;;2785144255;2;0;844424931104571;4096;464;0;0;2021-03-11T12:30:34.020305Z;2021-11-11T11:29:34.225100Z;2021-03-11T12:12:28.905590Z +C:/Windows/SysWOW64/IME/IMEJP/imjpcus.dll;file;244552;33206;2020-12-09T00:08:42.625566Z;;;2785144255;2;0;562949953796404;4096;480;0;0;2020-12-09T00:10:41.831693Z;2021-11-11T11:29:34.125579Z;2020-12-09T00:08:42.625566Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPDAPI.DLL;file;378168;33206;2021-03-11T12:12:28.905590Z;;;2785144255;2;0;844424931104570;4096;744;0;0;2021-03-11T12:30:33.192377Z;2021-11-11T11:29:34.232043Z;2021-03-11T12:12:28.889965Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPDCT.EXE;file;449536;33206;2019-12-07T09:10:45.742723Z;;;2785144255;2;0;1125899907631840;4096;880;0;0;2021-11-11T11:22:28.855067Z;2021-11-11T11:29:34.116602Z;2019-12-07T09:10:45.742723Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPDCTP.DLL;file;78648;33206;2019-12-07T09:10:45.758840Z;;;2785144255;2;0;1125899907631900;4096;160;0;0;2020-11-03T12:35:40.813142Z;2021-11-11T11:29:34.118597Z;2019-12-07T09:10:45.758840Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPLMP.DLL;file;1299768;33206;2021-03-11T12:12:28.936835Z;;;2785144255;2;0;844424931104572;4096;2544;0;0;2021-03-11T12:30:32.380068Z;2021-11-11T11:29:34.228087Z;2021-03-11T12:12:28.921211Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPPRED.DLL;file;664368;33206;2021-03-11T12:12:28.968076Z;;;2785144255;2;0;844424931104573;4096;1304;0;0;2021-03-11T12:30:34.895098Z;2021-11-11T11:29:34.232043Z;2021-03-11T12:12:28.952454Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPSET.EXE;file;135168;33206;2019-12-07T09:10:45.758840Z;;;2785144255;2;0;1125899907632480;4096;264;0;0;2020-11-03T12:35:41.203676Z;2021-11-11T11:29:34.123584Z;2019-12-07T09:10:45.758840Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPTIP.DLL;file;2642224;33206;2021-03-11T12:12:41.403628Z;;;2785144255;2;0;844424931106255;4096;5168;0;0;2021-03-11T12:30:32.020778Z;2021-11-11T11:29:34.119595Z;2021-03-11T12:12:41.372344Z +C:/Windows/SysWOW64/IME/IMEJP/IMJPUEX.EXE;file;92160;33206;2019-12-07T09:10:45.758840Z;;;2785144255;2;0;1125899907630920;4096;184;0;0;2021-11-11T11:22:28.234938Z;2021-11-11T11:29:34.125579Z;2019-12-07T09:10:45.758840Z +C:/Windows/SysWOW64/IME/IMEJP/imjpuexc.exe;file;291328;33206;2021-03-11T12:12:28.889965Z;;;2785144255;2;0;844424931104569;4096;576;0;0;2021-03-11T12:30:33.145512Z;2021-11-11T11:29:34.233040Z;2021-03-11T12:12:28.883459Z +C:/Windows/SysWOW64/IME/IMEJP/imjputyc.dll;file;555832;33206;2021-10-16T00:21:37.420237Z;;;2785144255;2;0;281474977858416;4096;1088;0;0;2021-10-16T08:02:21.933892Z;2021-11-11T11:29:34.121589Z;2021-10-16T00:21:37.420237Z +C:/Windows/SysWOW64/IME/IMEKR;directory;0;16822;2021-03-11T12:30:25.366094Z;;;2785144255;1;0;80501843339568200;4096;0;0;0;2021-12-16T13:36:01.172804Z;2021-03-11T12:30:25.366094Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/IMEKR/APPLETS;directory;0;16822;2019-12-07T09:15:00.834169Z;;;2785144255;1;0;42784196460340300;4096;0;0;0;2021-12-16T13:36:01.172804Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/IMEKR/APPLETS/imkrcac.dll;file;293888;33206;2019-12-07T09:10:45.773965Z;;;2785144255;2;0;1125899907633500;4096;576;0;0;2020-11-03T12:35:41.719180Z;2021-11-11T11:29:34.116602Z;2019-12-07T09:10:45.773965Z +C:/Windows/SysWOW64/IME/IMEKR/APPLETS/imkrskf.dll;file;153600;33206;2019-12-07T09:10:45.773965Z;;;2785144255;2;0;1125899907633400;4096;304;0;0;2020-11-03T12:35:41.625452Z;2021-11-11T11:29:34.122586Z;2019-12-07T09:10:45.773965Z +C:/Windows/SysWOW64/IME/IMEKR/DICTS;directory;0;16822;2021-01-15T09:30:17.992442Z;;;2785144255;1;0;69242844271142000;4096;0;0;0;2021-12-16T13:36:01.172804Z;2021-01-15T09:30:17.992442Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/IMEKR/DICTS/imkrhjd.dll;file;150352;33206;2021-01-15T09:27:52.744572Z;;;2785144255;2;0;10977524092341000;4096;296;0;0;2021-01-15T09:30:26.245485Z;2021-11-11T11:29:34.117600Z;2021-01-15T09:27:52.728952Z +C:/Windows/SysWOW64/IME/IMEKR/imkrapi.dll;file;195888;33206;2021-03-11T12:12:41.450455Z;;;2785144255;2;0;844424931106257;4096;384;0;0;2021-03-11T12:30:31.099122Z;2021-11-11T11:29:34.115605Z;2021-03-11T12:12:41.434835Z +C:/Windows/SysWOW64/IME/IMEKR/imkrotip.dll;file;755000;33206;2019-12-07T09:10:45.773965Z;;;2785144255;2;0;1125899907634040;4096;1480;0;0;2020-11-03T12:35:42.234685Z;2021-11-11T11:29:34.115605Z;2019-12-07T09:10:45.773965Z +C:/Windows/SysWOW64/IME/IMEKR/imkrtip.dll;file;747832;33206;2019-12-07T09:10:45.773965Z;;;2785144255;2;0;1125899907632500;4096;1464;0;0;2020-11-03T12:35:41.219297Z;2021-11-11T11:29:34.120592Z;2019-12-07T09:10:45.773965Z +C:/Windows/SysWOW64/IME/IMEKR/imkrudt.dll;file;87880;33206;2021-01-15T09:27:52.744572Z;;;2785144255;2;0;19140298416950000;4096;176;0;0;2021-01-15T09:30:25.975198Z;2021-11-11T11:29:34.114608Z;2021-01-15T09:27:52.744572Z +C:/Windows/SysWOW64/IME/IMETC;directory;0;16822;2021-04-17T16:46:43.358194Z;;;2785144255;1;0;27021597764543600;4096;8;0;0;2021-12-16T13:36:01.172804Z;2021-04-17T16:46:43.358194Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/IMETC/applets;directory;0;16822;2019-12-07T09:15:00.834169Z;;;2785144255;1;0;34058472182310000;4096;0;0;0;2021-12-16T13:36:01.172804Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/IMETC/applets/IMTCCAC.dll;file;301568;33206;2019-12-07T09:10:45.867724Z;;;2785144255;2;0;1125899907633920;4096;592;0;0;2020-11-03T12:35:42.109715Z;2021-11-11T11:29:34.124581Z;2019-12-07T09:10:45.867724Z +C:/Windows/SysWOW64/IME/IMETC/applets/IMTCDIC.dll;file;67072;33206;2019-12-07T09:10:45.867724Z;;;2785144255;2;0;1125899907631620;4096;136;0;0;2020-11-03T12:35:40.594444Z;2021-11-11T11:29:34.122586Z;2019-12-07T09:10:45.867724Z +C:/Windows/SysWOW64/IME/IMETC/applets/IMTCSKF.dll;file;145408;33206;2019-12-07T09:10:45.867724Z;;;2785144255;2;0;1125899907631500;4096;288;0;0;2020-11-03T12:35:40.485095Z;2021-11-11T11:29:34.121589Z;2019-12-07T09:10:45.867724Z +C:/Windows/SysWOW64/IME/IMETC/IMTCCFG.DLL;file;259376;33206;2021-03-11T12:12:28.990202Z;;;2785144255;2;0;844424931104574;4096;512;0;0;2021-05-18T10:36:13.818389Z;2021-11-11T11:29:34.225100Z;2021-03-11T12:12:28.983697Z +C:/Windows/SysWOW64/IME/IMETC/IMTCCORE.DLL;file;988496;33206;2021-04-17T10:35:15.344561Z;;;2785144255;2;0;844424930952035;4096;1936;0;0;2021-04-17T16:46:49.303582Z;2021-11-11T11:29:34.231045Z;2021-04-17T10:35:15.271318Z +C:/Windows/SysWOW64/IME/IMETC/IMTCLNWZ.EXE;file;95232;33206;2019-12-07T09:10:45.853013Z;;;2785144255;2;0;1125899907633530;4096;192;0;0;2020-11-03T12:35:41.750422Z;2021-11-11T11:29:34.114608Z;2019-12-07T09:10:45.853013Z +C:/Windows/SysWOW64/IME/IMETC/IMTCPROP.exe;file;445440;33206;2019-12-07T09:10:45.853013Z;;;2785144255;2;0;1125899907632200;4096;872;0;0;2021-11-11T11:22:28.461458Z;2021-11-11T11:29:34.119595Z;2019-12-07T09:10:45.853013Z +C:/Windows/SysWOW64/IME/IMETC/IMTCTIP.dll;file;1191224;33206;2019-12-07T09:10:45.867724Z;;;2785144255;2;0;1125899907631220;4096;2328;0;0;2020-11-03T12:35:40.250774Z;2021-11-11T11:29:34.117600Z;2019-12-07T09:10:45.867724Z +C:/Windows/SysWOW64/IME/IMETC/IMTCTRLN.DLL;file;27448;33206;2019-12-07T09:10:45.867724Z;;;2785144255;2;0;1125899907633770;4096;56;0;0;2020-11-03T12:35:41.937878Z;2021-11-11T11:29:34.122586Z;2019-12-07T09:10:45.867724Z +C:/Windows/SysWOW64/IME/SHARED;directory;0;16822;2021-03-11T12:30:25.366094Z;;;2785144255;1;0;3659174697559270;4096;8;0;0;2021-12-16T13:36:01.172804Z;2021-03-11T12:30:25.366094Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/SHARED/IMCCPHR.exe;file;395776;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907630540;4096;776;0;0;2020-11-03T12:35:39.828771Z;2021-11-11T11:29:34.217084Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/IMEAPIS.DLL;file;44576;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907628260;4096;88;0;0;2020-11-03T12:35:38.563443Z;2021-11-11T11:29:34.227087Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/ImeBrokerps.dll;file;24592;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907628240;4096;56;0;0;2020-11-03T12:35:38.563443Z;2021-11-11T11:29:34.228087Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/imecfm.dll;file;173880;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907628350;4096;344;0;0;2021-03-11T12:10:04.697852Z;2021-11-11T11:29:34.218116Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/imecfmps.dll;file;21816;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907629620;4096;48;0;0;2021-03-11T12:10:04.697852Z;2021-11-11T11:29:34.218116Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/imecfmui.exe;file;252416;33206;2021-03-11T12:12:28.867837Z;;;2785144255;2;0;844424931104567;4096;496;0;0;2021-11-11T11:22:28.257520Z;2021-11-11T11:29:34.232043Z;2021-03-11T12:12:28.867837Z +C:/Windows/SysWOW64/IME/SHARED/IMEDICAPICCPS.DLL;file;20280;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907629520;4096;40;0;0;2020-11-03T12:35:39.125810Z;2021-11-11T11:29:34.218116Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/IMEFILES.DLL;file;166192;33206;2021-03-11T12:12:28.883459Z;;;2785144255;2;0;844424931104568;4096;328;0;0;2021-03-11T12:30:32.942436Z;2021-11-11T11:29:34.218116Z;2021-03-11T12:12:28.867837Z +C:/Windows/SysWOW64/IME/SHARED/IMELM.DLL;file;268088;33206;2019-12-07T09:10:00.511418Z;;;2785144255;2;0;1125899907630250;4096;528;0;0;2020-11-03T12:35:39.703799Z;2021-11-11T11:29:34.230049Z;2019-12-07T09:10:00.511418Z +C:/Windows/SysWOW64/IME/SHARED/IMEPADSM.DLL;file;88376;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907629210;4096;176;0;0;2020-11-03T12:35:38.969598Z;2021-11-11T11:29:34.222071Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/IMEPADSV.EXE;file;293376;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907628000;4096;576;0;0;2021-11-11T11:22:28.326897Z;2021-11-11T11:29:34.230049Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/IMESEARCH.EXE;file;152064;33206;2021-01-15T09:27:34.912554Z;;;2785144255;2;0;6473924464967190;4096;304;0;0;2021-11-11T11:22:28.376860Z;2021-11-11T11:29:34.218116Z;2021-01-15T09:27:34.912554Z +C:/Windows/SysWOW64/IME/SHARED/IMESEARCHDLL.DLL;file;128336;33206;2021-01-15T09:27:34.928174Z;;;2785144255;2;0;7318349395099160;4096;256;0;0;2021-01-15T09:30:29.706983Z;2021-11-11T11:29:34.227087Z;2021-01-15T09:27:34.928174Z +C:/Windows/SysWOW64/IME/SHARED/IMESEARCHPS.DLL;file;18448;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907629070;4096;40;0;0;2021-02-22T08:01:23.821757Z;2021-11-11T11:29:34.226059Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/IMETIP.DLL;file;1082672;33206;2021-03-11T12:12:28.852218Z;;;2785144255;2;0;844424931104566;4096;2120;0;0;2021-03-11T12:30:34.004686Z;2021-11-11T11:29:34.225100Z;2021-03-11T12:12:28.820976Z +C:/Windows/SysWOW64/IME/SHARED/IMEWDBLD.EXE;file;302080;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907630130;4096;592;0;0;2020-11-03T12:35:39.641315Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/IMJKAPI.DLL;file;210232;33206;2021-01-15T09:27:34.959418Z;;;2785144255;2;0;12103423999180300;4096;416;0;0;2021-01-15T09:30:25.506559Z;2021-11-11T11:29:34.224102Z;2021-01-15T09:27:34.943796Z +C:/Windows/SysWOW64/IME/SHARED/MSCAND20.DLL;file;1610568;33206;2021-01-15T09:27:34.881311Z;;;2785144255;2;0;6473924464967190;4096;3152;0;0;2021-01-15T09:30:26.966716Z;2021-11-11T11:29:34.229083Z;2021-01-15T09:27:34.865690Z +C:/Windows/SysWOW64/IME/SHARED/res;directory;0;16822;2019-12-07T09:15:00.846212Z;;;2785144255;1;0;3377699720848610;4096;0;0;0;2021-12-16T13:36:01.172804Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IME/SHARED/res/padrs404.dll;file;12800;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907630520;4096;32;0;0;2020-11-03T12:35:39.828771Z;2021-11-11T11:29:34.223103Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/res/padrs411.dll;file;46592;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907627840;4096;96;0;0;2020-11-03T12:35:38.344745Z;2021-11-11T11:29:34.231045Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/IME/SHARED/res/padrs412.dll;file;45056;33206;2019-12-07T09:10:45.773965Z;;;2785144255;2;0;1125899907633720;4096;88;0;0;2020-11-03T12:35:41.922258Z;2021-11-11T11:29:34.120592Z;2019-12-07T09:10:45.773965Z +C:/Windows/SysWOW64/IME/SHARED/res/padrs804.dll;file;12800;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907629630;4096;32;0;0;2020-11-03T12:35:39.172674Z;2021-11-11T11:29:34.226059Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/imgutil.dll;file;45056;33206;2021-01-15T09:27:37.332955Z;;;2785144255;2;0;15199648742998000;4096;88;0;0;2021-12-16T13:35:37.369663Z;2021-11-11T11:29:34.222071Z;2021-01-15T09:27:37.332955Z +C:/Windows/SysWOW64/imm32.dll;file;143056;33206;2020-11-03T12:45:52.119276Z;;;2785144255;2;0;2251799814661190;4096;280;0;0;2021-12-16T13:35:37.370628Z;2021-11-11T11:29:33.782192Z;2020-11-03T12:45:52.119276Z +C:/Windows/SysWOW64/IndexedDbLegacy.dll;file;176640;33206;2021-11-11T11:29:09.356765Z;;;2785144255;2;0;281474977879577;4096;352;0;0;2021-12-16T13:35:37.384628Z;2021-11-11T11:38:51.170185Z;2021-11-11T11:29:09.352776Z +C:/Windows/SysWOW64/inetcomm.dll;file;885248;33206;2021-04-17T10:35:21.756414Z;;;2785144255;2;0;844424930952041;4096;1736;0;0;2021-12-16T13:35:37.404870Z;2021-11-11T11:29:34.231045Z;2021-04-17T10:35:21.711843Z +C:/Windows/SysWOW64/inetcpl.cpl;file;451072;33206;2021-11-11T11:29:08.116334Z;;;2785144255;2;0;281474977879573;4096;888;0;0;2021-12-16T13:35:37.422823Z;2021-11-11T11:38:50.805254Z;2021-11-11T11:29:08.106329Z +C:/Windows/SysWOW64/inetmib1.dll;file;53248;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907629940;4096;104;0;0;2021-12-16T13:35:37.435815Z;2021-11-11T11:29:34.213094Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/INETRES.dll;file;84992;33206;2021-04-17T10:35:21.808361Z;;;2785144255;2;0;844424930952042;4096;168;0;0;2021-12-16T13:35:37.444243Z;2021-11-11T11:29:34.218116Z;2021-04-17T10:35:21.803425Z +C:/Windows/SysWOW64/inetsrv;directory;0;16822;2019-12-07T09:14:52.736652Z;;;2785144255;1;0;3377699720848610;4096;0;0;0;2021-12-16T13:36:01.172804Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InfDefaultInstall.exe;file;11776;33206;2019-12-07T09:09:30.880472Z;;;2785144255;2;0;47006321111118700;4096;24;0;0;2021-12-16T13:35:37.466904Z;2021-11-11T11:29:33.814066Z;2019-12-07T09:09:30.880472Z +C:/Windows/SysWOW64/InkEd.dll;file;232448;33206;2021-01-15T09:27:09.994478Z;;;2785144255;2;0;10696049115591900;4096;456;0;0;2021-12-16T13:35:37.481622Z;2021-11-11T11:29:33.723306Z;2021-01-15T09:27:09.978796Z +C:/Windows/SysWOW64/InkObjCore.dll;file;690688;33206;2021-01-15T09:27:13.792894Z;;;2785144255;2;0;10696049115596100;4096;1352;0;0;2021-12-16T13:35:37.497950Z;2021-11-11T11:29:33.742257Z;2021-01-15T09:27:13.777303Z +C:/Windows/SysWOW64/input.dll;file;312128;33206;2021-11-11T11:28:57.270711Z;;;2785144255;2;0;281474977878953;4096;616;0;0;2021-12-16T13:35:37.521278Z;2021-11-11T11:38:51.615513Z;2021-11-11T11:28:57.265690Z +C:/Windows/SysWOW64/InputHost.dll;file;967912;33206;2021-04-17T10:34:34.452411Z;;;2785144255;2;0;844424930951388;4096;1896;0;0;2021-12-16T13:35:37.521278Z;2021-11-11T11:29:33.741259Z;2021-04-17T10:34:34.359198Z +C:/Windows/SysWOW64/InputInjectionBroker.dll;file;92672;33206;2021-01-15T09:27:13.043108Z;;;2785144255;2;0;2533274790986930;4096;184;0;0;2021-12-16T13:35:37.534748Z;2021-11-11T11:29:33.732282Z;2021-01-15T09:27:13.043108Z +C:/Windows/SysWOW64/InputMethod;directory;0;16822;2019-12-07T09:14:52.736652Z;;;2785144255;1;0;3377699720848610;4096;0;0;0;2021-12-16T13:36:01.172804Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InputMethod/CHS;directory;0;16822;2019-12-07T09:15:00.846212Z;;;2785144255;1;0;3377699720848610;4096;0;0;0;2021-12-16T13:36:01.172804Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InputMethod/CHS/ChsIFEComp.dll;file;179712;33206;2019-12-07T09:10:45.836501Z;;;2785144255;2;0;1125899907632900;4096;352;0;0;2020-11-03T12:35:41.375510Z;2021-11-11T11:29:34.123584Z;2019-12-07T09:10:45.836501Z +C:/Windows/SysWOW64/InputMethod/JPN;directory;0;16822;2021-01-15T09:30:18.008100Z;;;2785144255;1;0;3377699720848620;4096;0;0;0;2021-12-16T13:36:01.172804Z;2021-01-15T09:30:18.008100Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InputMethod/JPN/Windows.Globalization.JapanesePhoneme.dll;file;40448;33206;2021-01-15T09:27:52.197826Z;;;2785144255;2;0;18858823440238900;4096;80;0;0;2021-01-15T09:30:28.150845Z;2021-11-11T11:29:34.116602Z;2021-01-15T09:27:52.197826Z +C:/Windows/SysWOW64/InputSwitch.dll;file;430080;33206;2021-05-18T10:59:07.363848Z;;;2785144255;2;0;2251799814572420;4096;840;0;0;2021-12-16T13:35:37.557127Z;2021-11-11T11:29:33.721311Z;2021-05-18T10:59:07.343275Z +C:/Windows/SysWOW64/InputSwitchToastHandler.exe;file;73728;33206;2021-01-15T09:27:10.103793Z;;;2785144255;2;0;3096224744404340;4096;144;0;0;2021-12-16T13:35:37.575080Z;2021-11-11T11:29:33.729290Z;2021-01-15T09:27:10.103793Z +C:/Windows/SysWOW64/inseng.dll;file;97280;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907628840;4096;192;0;0;2021-12-16T13:35:37.588444Z;2021-11-11T11:29:34.227087Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/InstallService.dll;file;1843712;33206;2021-10-03T19:02:11.789686Z;;;2785144255;2;0;1970324837897300;4096;3608;0;0;2021-12-16T13:35:37.607338Z;2021-11-11T11:29:33.745249Z;2021-10-03T19:02:11.627429Z +C:/Windows/SysWOW64/InstallServiceTasks.dll;file;186880;33206;2021-10-03T19:02:11.863161Z;;;2785144255;2;0;2533274790691200;4096;368;0;0;2021-12-16T13:35:37.621788Z;2021-11-11T11:29:33.749237Z;2021-10-03T19:02:11.848770Z +C:/Windows/SysWOW64/InstallShield;directory;0;16822;2019-12-07T09:15:00.846212Z;;;2785144255;1;0;3377699720848620;4096;0;0;0;2021-12-16T13:36:01.172804Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setup.exe;file;71680;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907629720;4096;144;0;0;2021-10-01T05:32:27.117467Z;2021-11-11T11:29:31.725684Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir;directory;0;16822;2019-12-07T09:14:52.736652Z;;;2785144255;1;0;4222124650980590;4096;8;0;0;2021-12-16T13:36:01.172804Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0003;directory;0;16822;2019-12-07T09:15:00.846212Z;;;2785144255;1;0;4222124650980590;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0003/_setup.dll;file;35840;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907629330;4096;72;0;0;2020-11-03T12:35:39.016461Z;2021-11-11T11:29:31.726682Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0005;directory;0;16822;2019-12-07T09:15:00.846212Z;;;2785144255;1;0;3659174697559280;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0005/_setup.dll;file;34816;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907629220;4096;72;0;0;2020-11-03T12:35:38.985219Z;2021-11-11T11:29:31.715712Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0006;directory;0;16822;2019-12-07T09:15:00.846212Z;;;2785144255;1;0;4785074604401900;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0006/_setup.dll;file;34816;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907628670;4096;72;0;0;2020-11-03T12:35:38.766520Z;2021-11-11T11:29:31.714714Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0007;directory;0;16822;2019-12-07T09:15:00.846212Z;;;2785144255;1;0;3377699720848620;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0007/_setup.dll;file;35328;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907628020;4096;72;0;0;2020-11-03T12:35:38.438473Z;2021-11-11T11:29:31.721696Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0008;directory;0;16822;2019-12-07T09:15:00.846212Z;;;2785144255;1;0;3377699720848630;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0008/_setup.dll;file;35840;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907629890;4096;72;0;0;2020-11-03T12:35:39.516343Z;2021-11-11T11:29:31.719701Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0009;directory;0;16822;2019-12-07T09:15:00.846212Z;;;2785144255;1;0;2533274790716660;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0009/_setup.dll;file;34816;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907630090;4096;72;0;0;2020-11-03T12:35:39.610072Z;2021-11-11T11:29:31.719701Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/000a;directory;0;16822;2019-12-07T09:15:00.860358Z;;;2785144255;1;0;2533274790716660;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/000a/_setup.dll;file;35840;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907628920;4096;72;0;0;2020-11-03T12:35:38.860247Z;2021-11-11T11:29:31.714714Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/000b;directory;0;16822;2019-12-07T09:15:00.860358Z;;;2785144255;1;0;3377699720848630;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/000b/_setup.dll;file;34816;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907629790;4096;72;0;0;2020-11-03T12:35:39.266414Z;2021-11-11T11:29:31.723690Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/000e;directory;0;16822;2019-12-07T09:15:00.860358Z;;;2785144255;1;0;3377699720848630;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/000e/_setup.dll;file;35328;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907630830;4096;72;0;0;2020-11-03T12:35:39.953741Z;2021-11-11T11:29:31.718703Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0010;directory;0;16822;2019-12-07T09:15:00.860358Z;;;2785144255;1;0;3377699720848630;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0010/_setup.dll;file;35840;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907627960;4096;72;0;0;2020-11-03T12:35:38.407229Z;2021-11-11T11:29:31.720699Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0011;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;3377699720848630;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0011/_setup.dll;file;34816;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907628100;4096;72;0;0;2020-11-03T12:35:38.485337Z;2021-11-11T11:29:31.724687Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0012;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;3377699720848630;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0012/_setup.dll;file;34816;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907628150;4096;72;0;0;2020-11-03T12:35:38.500956Z;2021-11-11T11:29:31.717706Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0013;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;3377699720848630;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0013/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907630700;4096;72;0;0;2020-11-03T12:35:39.906879Z;2021-11-11T11:29:31.718703Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/setupdir/0014;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;3377699720848640;4096;0;0;0;2021-12-16T13:36:01.173801Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0014/_setup.dll;file;35328;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907630610;4096;72;0;0;2020-11-03T12:35:39.875636Z;2021-11-11T11:29:31.726682Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/0015;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;3377699720848640;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0015/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907630360;4096;72;0;0;2020-11-03T12:35:39.735045Z;2021-11-11T11:29:31.726682Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/0019;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;3377699720848640;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0019/_setup.dll;file;35328;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907627910;4096;72;0;0;2020-11-03T12:35:38.375987Z;2021-11-11T11:29:31.722692Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/001a;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;3377699720848640;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/001a/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907630420;4096;72;0;0;2020-11-03T12:35:39.766285Z;2021-11-11T11:29:31.714714Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/001b;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;3377699720848640;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/001b/_setup.dll;file;35328;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907628520;4096;72;0;0;2020-11-03T12:35:38.704036Z;2021-11-11T11:29:31.723690Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/001d;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;2533274790716670;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/001d/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907628430;4096;72;0;0;2020-11-03T12:35:38.657171Z;2021-11-11T11:29:31.715712Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/001e;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;2533274790716670;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/001e/_setup.dll;file;35328;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907629060;4096;72;0;0;2020-11-03T12:35:38.922734Z;2021-11-11T11:29:31.724687Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/001f;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;6473924464665860;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/001f/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907628240;4096;72;0;0;2020-11-03T12:35:38.563443Z;2021-11-11T11:29:31.715712Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/0021;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;2533274790716680;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0021/_setup.dll;file;35328;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907629480;4096;72;0;0;2020-11-03T12:35:39.094568Z;2021-11-11T11:29:31.720699Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/0024;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;10696049115325700;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0024/_setup.dll;file;35328;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907628770;4096;72;0;0;2020-11-03T12:35:38.797763Z;2021-11-11T11:29:31.716708Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/002d;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;2533274790716680;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/002d/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907629550;4096;72;0;0;2020-11-03T12:35:39.125810Z;2021-11-11T11:29:31.723690Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/0404;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;8725724278351110;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0404/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907630340;4096;72;0;0;2020-11-03T12:35:39.735045Z;2021-11-11T11:29:31.726682Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/040c;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;11540474045457700;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/040c/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907629810;4096;72;0;0;2020-11-03T12:35:39.485111Z;2021-11-11T11:29:31.721696Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/0416;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;2533274790716680;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0416/_setup.dll;file;35328;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907630390;4096;72;0;0;2020-11-03T12:35:39.750665Z;2021-11-11T11:29:31.722692Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/0804;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;2533274790716690;4096;0;0;0;2021-12-16T13:36:01.174797Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0804/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907628130;4096;72;0;0;2020-11-03T12:35:38.500956Z;2021-11-11T11:29:31.722692Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/0816;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;18858823439934700;4096;0;0;0;2021-12-16T13:36:01.175794Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0816/_setup.dll;file;35328;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907629030;4096;72;0;0;2020-11-03T12:35:38.907111Z;2021-11-11T11:29:31.721696Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/setupdir/0c0c;directory;0;16822;2019-12-07T09:15:00.876618Z;;;2785144255;1;0;3940649674269970;4096;0;0;0;2021-12-16T13:36:01.175794Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/InstallShield/setupdir/0c0c/_setup.dll;file;34816;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907628660;4096;72;0;0;2020-11-03T12:35:38.750898Z;2021-11-11T11:29:31.725684Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/InstallShield/_isdel.exe;file;27648;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907628080;4096;56;0;0;2021-10-01T05:32:27.117467Z;2021-11-11T11:29:31.718703Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallShield/_setup.dll;file;34816;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907630090;4096;72;0;0;2021-10-01T05:32:27.118464Z;2021-11-11T11:29:31.719701Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/InstallUtil.InstallLog;file;2933;33206;2021-10-15T21:36:51.613500Z;;;2785144255;1;0;7036874418301170;4096;8;0;0;2021-12-16T13:35:37.624919Z;2021-10-15T21:36:51.613500Z;2020-05-18T19:52:36.981820Z +C:/Windows/SysWOW64/InstHelper.dll;file;156888;33206;2021-07-11T21:47:22Z;;;2785144255;1;0;1970324837071790;4096;312;0;0;2021-12-16T13:35:37.640918Z;2021-10-14T07:03:54.463273Z;2020-11-05T20:56:21.368160Z +C:/Windows/SysWOW64/instnm.exe;file;8704;33206;2021-06-10T14:01:41.460622Z;;;2785144255;2;0;281474977765211;4096;24;0;0;2021-12-16T13:35:37.650002Z;2021-11-11T11:29:33.797110Z;2021-06-10T14:01:41.460622Z +C:/Windows/SysWOW64/intel_gfx_api-x86.dll;file;148344;33206;2021-09-12T23:08:52Z;;;2785144255;2;0;4222124650943660;4096;296;0;0;2021-12-16T13:35:37.664589Z;2021-12-11T15:59:54.066664Z;2021-10-31T08:18:39.091500Z +C:/Windows/SysWOW64/intl.cpl;file;178688;33206;2021-01-15T09:27:21.115915Z;;;2785144255;2;0;8444249301939350;4096;352;0;0;2021-12-16T13:35:37.679848Z;2021-11-11T11:29:30.951605Z;2021-01-15T09:27:21.115915Z +C:/Windows/SysWOW64/iologmsg.dll;file;2560;33206;2019-12-07T09:09:29.088570Z;;;2785144255;2;0;1688849861059190;4096;8;0;0;2021-12-16T13:35:37.683081Z;2021-11-11T11:29:30.999443Z;2019-12-07T09:09:29.088570Z +C:/Windows/SysWOW64/ipconfig.exe;file;29184;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907628280;4096;64;0;0;2021-12-16T13:35:37.694260Z;2021-11-11T11:29:34.203158Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/IPELoggingDictationHelper.dll;file;48128;33206;2019-12-07T09:09:21.505693Z;;;2785144255;2;0;1125899907637030;4096;96;0;0;2021-12-16T13:35:37.705932Z;2021-11-11T11:29:33.778160Z;2019-12-07T09:09:21.505693Z +C:/Windows/SysWOW64/IPHLPAPI.DLL;file;196784;33206;2020-11-03T12:45:51.759985Z;;;2785144255;2;0;562949954397179;4096;392;0;0;2021-12-16T13:35:37.705932Z;2021-11-11T11:29:33.777163Z;2020-11-03T12:45:51.759985Z +C:/Windows/SysWOW64/Ipmi;directory;0;16822;2019-12-07T09:14:52.736652Z;;;2785144255;1;0;3377699720848660;4096;0;0;0;2021-12-16T13:36:01.175794Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/IpNatHlpClient.dll;file;26112;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907638360;4096;56;0;0;2021-12-16T13:35:37.717899Z;2021-11-11T11:29:33.807083Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/iprop.dll;file;2560;33206;2019-12-07T09:09:22.193610Z;;;2785144255;2;0;1125899907638880;4096;8;0;0;2021-12-16T13:35:37.720891Z;2021-11-11T11:29:33.774171Z;2019-12-07T09:09:22.193610Z +C:/Windows/SysWOW64/iprtprio.dll;file;9216;33206;2021-11-11T11:29:01.186277Z;;;2785144255;2;0;281474977879247;4096;24;0;0;2021-12-16T13:35:37.731882Z;2021-11-11T11:38:52.702735Z;2021-11-11T11:29:01.185280Z +C:/Windows/SysWOW64/iprtrmgr.dll;file;516096;33206;2021-11-11T11:29:01.195255Z;;;2785144255;2;0;281474977879248;4096;1008;0;0;2021-12-16T13:35:37.746822Z;2021-11-11T11:38:52.787353Z;2021-11-11T11:29:01.188275Z +C:/Windows/SysWOW64/ipsecsnp.dll;file;325632;33206;2021-01-15T09:27:19.534537Z;;;2785144255;2;0;13510798882730700;4096;640;0;0;2021-12-16T13:35:37.762161Z;2021-11-11T11:29:33.782192Z;2021-01-15T09:27:19.534537Z +C:/Windows/SysWOW64/ipsmsnap.dll;file;407040;33206;2021-01-15T09:27:19.550182Z;;;2785144255;2;0;9288674232070910;4096;800;0;0;2021-12-16T13:35:37.779876Z;2021-11-11T11:29:33.789166Z;2021-01-15T09:27:19.534537Z +C:/Windows/SysWOW64/ir32_32.dll;file;8704;33206;2019-12-07T09:10:05.507228Z;;;2785144255;2;0;1125899907630080;4096;24;0;0;2021-12-16T13:35:37.791058Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:05.491292Z +C:/Windows/SysWOW64/ir32_32original.dll;file;197632;33206;2019-12-07T09:10:05.491292Z;;;2785144255;2;0;1125899907630590;4096;392;0;0;2021-12-16T13:35:37.805839Z;2021-11-11T11:29:34.244011Z;2019-12-07T09:10:05.491292Z +C:/Windows/SysWOW64/ir41_32.ax;file;9216;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907628210;4096;24;0;0;2021-12-16T13:35:37.816811Z;2021-11-11T11:29:34.231045Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir41_32original.dll;file;839680;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907628920;4096;1640;0;0;2021-12-16T13:35:37.829774Z;2021-11-11T11:29:34.233040Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir41_qc.dll;file;8704;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907630510;4096;24;0;0;2021-12-16T13:35:37.841309Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir41_qcoriginal.dll;file;120320;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907628340;4096;240;0;0;2021-12-16T13:35:37.850532Z;2021-11-11T11:29:34.222071Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir41_qcx.dll;file;8704;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907628620;4096;24;0;0;2021-12-16T13:35:37.861192Z;2021-11-11T11:29:34.224102Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir41_qcxoriginal.dll;file;338432;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907629570;4096;664;0;0;2021-12-16T13:35:37.888036Z;2021-11-11T11:29:34.227087Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir50_32.dll;file;9216;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907630090;4096;24;0;0;2021-12-16T13:35:37.899163Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir50_32original.dll;file;746496;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907630320;4096;1464;0;0;2021-12-16T13:35:37.914878Z;2021-11-11T11:29:34.217084Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir50_qc.dll;file;9216;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907629700;4096;24;0;0;2021-12-16T13:35:37.925851Z;2021-11-11T11:29:34.220113Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir50_qcoriginal.dll;file;200192;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907629930;4096;392;0;0;2021-12-16T13:35:37.939062Z;2021-11-11T11:29:34.222071Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir50_qcx.dll;file;9216;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907629150;4096;24;0;0;2021-12-16T13:35:37.951032Z;2021-11-11T11:29:34.223103Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/ir50_qcxoriginal.dll;file;183808;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907628140;4096;360;0;0;2021-12-16T13:35:37.963998Z;2021-11-11T11:29:34.224102Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/iri.dll;file;39720;33206;2020-11-03T12:45:52.197371Z;;;2785144255;2;0;1970324837950550;4096;80;0;0;2021-12-16T13:35:37.964996Z;2021-11-11T11:29:33.791164Z;2020-11-03T12:45:52.197371Z +C:/Windows/SysWOW64/irprops.cpl;file;28160;33206;2019-12-07T09:10:05.553998Z;;;2785144255;2;0;1125899907630520;4096;56;0;0;2021-12-16T13:35:37.979142Z;2021-11-11T11:29:31.720699Z;2019-12-07T09:10:05.553998Z +C:/Windows/SysWOW64/iscsicli.exe;file;44032;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;1125899907630840;4096;88;0;0;2021-12-16T13:35:37.990027Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/iscsicpl.dll;file;86016;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;1125899907628740;4096;168;0;0;2021-12-16T13:35:38.004952Z;2021-11-11T11:29:34.217084Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/iscsicpl.exe;file;10240;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;1125899907630550;4096;24;0;0;2021-12-16T13:35:38.014920Z;2021-11-11T11:29:34.229083Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/iscsidsc.dll;file;55296;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;1125899907630550;4096;112;0;0;2021-12-16T13:35:38.027934Z;2021-11-11T11:29:34.223103Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/iscsied.dll;file;9728;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;1125899907629010;4096;24;0;0;2021-12-16T13:35:38.040387Z;2021-11-11T11:29:34.229083Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/iscsium.dll;file;29184;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;1125899907630250;4096;64;0;0;2021-12-16T13:35:38.053421Z;2021-11-11T11:29:34.225100Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/iscsiwmi.dll;file;68096;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;1125899907629930;4096;136;0;0;2021-12-16T13:35:38.066387Z;2021-11-11T11:29:34.217084Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/iscsiwmiv2.dll;file;94720;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;1125899907629080;4096;192;0;0;2021-12-16T13:35:38.079125Z;2021-11-11T11:29:34.229083Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/isoburn.exe;file;107008;33206;2021-01-15T09:27:37.801593Z;;;2785144255;2;0;21110623253921800;4096;216;0;0;2021-12-16T13:35:38.118347Z;2021-11-11T11:29:34.229083Z;2021-01-15T09:27:37.801593Z +C:/Windows/SysWOW64/it-IT;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;5348024557823250;4096;8;0;0;2021-12-16T13:36:01.175794Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.736652Z +C:/Windows/SysWOW64/it-IT/APHostRes.dll.mui;file;17408;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648590;4096;40;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.435552Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/it-IT/cdosys.dll.mui;file;53248;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014760;4096;104;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/it-IT/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5348024558172300;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.973906Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/it-IT/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619430;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/it-IT/SyncRes.dll.mui;file;29184;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648760;4096;64;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.513659Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/it-IT/windows.ui.xaml.dll.mui;file;18432;33206;2021-06-10T14:01:34.421730Z;;;2785144255;4;0;281474977764494;4096;40;0;0;2021-06-10T14:01:41.669260Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:34.421730Z +C:/Windows/SysWOW64/itircl.dll;file;156672;33206;2021-01-15T09:27:34.693855Z;;;2785144255;2;0;7318349395099120;4096;312;0;0;2021-12-16T13:35:38.134309Z;2021-11-11T11:29:34.213094Z;2021-01-15T09:27:34.693855Z +C:/Windows/SysWOW64/itss.dll;file;145408;33206;2019-12-07T09:10:00.444993Z;;;2785144255;2;0;1125899907629850;4096;288;0;0;2021-12-16T13:35:38.150692Z;2021-11-11T11:29:34.206112Z;2019-12-07T09:10:00.444993Z +C:/Windows/SysWOW64/ivfsrc.ax;file;146944;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907630230;4096;288;0;0;2021-12-16T13:35:38.164530Z;2021-11-11T11:29:34.231045Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/iyuv_32.dll;file;49152;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907629740;4096;96;0;0;2021-12-16T13:35:38.176528Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/ja-JP;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;9007199255061780;4096;8;0;0;2021-12-16T13:36:01.175794Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/ja-JP/APHostRes.dll.mui;file;11776;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648810;4096;24;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.529279Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/ja-JP/cdosys.dll.mui;file;39424;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014760;4096;80;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/ja-JP/comctl32.dll.mui;file;5632;33206;2019-12-07T09:09:29.193793Z;;;2785144255;2;0;5348024558172290;4096;16;0;0;2019-12-07T09:09:29.193793Z;2020-11-03T12:35:19.973906Z;2019-12-07T09:09:29.193793Z +C:/Windows/SysWOW64/ja-JP/quickassist.exe.mui;file;3072;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619400;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.470887Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/ja-JP/SyncRes.dll.mui;file;17920;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648610;4096;40;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/ja-JP/windows.ui.xaml.dll.mui;file;13312;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907636750;4096;32;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:44.015557Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/JavaScriptCollectionAgent.dll;file;72192;33206;2021-01-15T09:27:35.146873Z;;;2785144255;2;0;10977524092337700;4096;144;0;0;2021-12-16T13:35:38.189059Z;2021-11-11T11:29:34.231045Z;2021-01-15T09:27:35.146873Z +C:/Windows/SysWOW64/JHI.dll;file;272272;33206;2021-01-23T23:53:04Z;;;2785144255;2;0;25895697857621500;4096;536;0;0;2021-12-16T13:35:38.210653Z;2021-06-02T09:18:40.587469Z;2021-01-23T23:53:04Z +C:/Windows/SysWOW64/joinproviderol.dll;file;47616;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907639350;4096;96;0;0;2021-12-16T13:35:38.222736Z;2021-11-11T11:29:33.801130Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/joinutil.dll;file;138752;33206;2021-10-03T19:02:19.403550Z;;;2785144255;2;0;1688849861187000;4096;272;0;0;2021-12-16T13:35:38.234829Z;2021-11-11T11:29:33.801130Z;2021-10-03T19:02:19.395437Z +C:/Windows/SysWOW64/joy.cpl;file;90624;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907630810;4096;184;0;0;2021-12-16T13:35:38.254759Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/JpMapControl.dll;file;540672;33206;2021-01-15T09:27:14.780960Z;;;2785144255;2;0;6755399441666880;4096;1056;0;0;2021-12-16T13:35:38.271902Z;2021-11-11T11:29:33.738267Z;2021-01-15T09:27:14.765307Z +C:/Windows/SysWOW64/jscript.dll;file;688128;33206;2021-10-16T00:21:27.883690Z;;;2785144255;2;0;281474977857762;4096;1344;0;0;2021-12-16T13:35:38.287635Z;2021-11-11T11:29:34.230049Z;2021-10-16T00:21:27.868109Z +C:/Windows/SysWOW64/jscript9.dll;file;3867136;33206;2021-11-11T11:29:09.673321Z;;;2785144255;2;0;281474977879582;4096;7560;0;0;2021-12-16T13:35:38.289352Z;2021-11-11T11:38:51.200454Z;2021-11-11T11:29:09.590142Z +C:/Windows/SysWOW64/jscript9diag.dll;file;562688;33206;2021-11-11T11:29:09.705233Z;;;2785144255;2;0;281474977879583;4096;1104;0;0;2021-12-16T13:35:38.304798Z;2021-11-11T11:38:51.717341Z;2021-11-11T11:29:09.697255Z +C:/Windows/SysWOW64/jsproxy.dll;file;45568;33206;2021-11-11T11:29:00.809316Z;;;2785144255;2;0;281474977879237;4096;96;0;0;2021-12-16T13:35:38.316803Z;2021-11-11T11:38:52.439533Z;2021-11-11T11:29:00.807293Z +C:/Windows/SysWOW64/kanji_1.uce;file;6948;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907628990;4096;16;0;0;2021-12-16T13:35:38.319359Z;2020-11-03T12:35:38.891490Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/kanji_2.uce;file;8484;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907629250;4096;24;0;0;2021-12-16T13:35:38.322668Z;2020-11-03T12:35:38.985219Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/kbd101.DLL;file;7680;33206;2020-12-09T00:08:28.920612Z;;;2785144255;2;0;562949953795148;4096;16;0;0;2021-12-16T13:35:38.326390Z;2021-11-11T11:29:30.959554Z;2020-12-09T00:08:28.920612Z +C:/Windows/SysWOW64/kbd101a.DLL;file;7168;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907635800;4096;16;0;0;2021-12-16T13:35:38.331060Z;2021-11-11T11:29:30.991459Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/kbd101b.DLL;file;7168;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907635820;4096;16;0;0;2021-12-16T13:35:38.334799Z;2021-11-11T11:29:30.976538Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/kbd101c.DLL;file;7168;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907636990;4096;16;0;0;2021-12-16T13:35:38.338971Z;2021-11-11T11:29:31.000440Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/kbd103.DLL;file;7168;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907636650;4096;16;0;0;2021-12-16T13:35:38.342815Z;2021-11-11T11:29:31.005431Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/kbd106.dll;file;7680;33206;2020-12-09T00:08:28.920612Z;;;2785144255;2;0;562949953795146;4096;16;0;0;2021-12-16T13:35:38.347064Z;2021-11-11T11:29:30.986466Z;2020-12-09T00:08:28.905028Z +C:/Windows/SysWOW64/kbd106n.dll;file;7680;33206;2020-12-09T00:08:28.920612Z;;;2785144255;2;0;562949953795147;4096;16;0;0;2021-12-16T13:35:38.352171Z;2021-11-11T11:29:30.997448Z;2020-12-09T00:08:28.920612Z +C:/Windows/SysWOW64/KBDA1.DLL;file;7168;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907636780;4096;16;0;0;2021-12-16T13:35:38.356468Z;2021-11-11T11:29:30.966536Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDA2.DLL;file;6656;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637520;4096;16;0;0;2021-12-16T13:35:38.360211Z;2021-11-11T11:29:30.991459Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDA3.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907639480;4096;16;0;0;2021-12-16T13:35:38.364202Z;2021-11-11T11:29:30.987469Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDADLM.DLL;file;7680;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907638860;4096;16;0;0;2021-12-16T13:35:38.369071Z;2021-11-11T11:29:30.952603Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/KBDAL.DLL;file;7680;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907636730;4096;16;0;0;2021-12-16T13:35:38.373088Z;2021-11-11T11:29:30.957557Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDARME.DLL;file;6656;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907639010;4096;16;0;0;2021-12-16T13:35:38.377080Z;2021-11-11T11:29:30.944623Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/kbdarmph.dll;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907638090;4096;16;0;0;2021-12-16T13:35:38.380073Z;2021-11-11T11:29:31.000440Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/kbdarmty.dll;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907637060;4096;16;0;0;2021-12-16T13:35:38.384064Z;2021-11-11T11:29:30.968531Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDARMW.DLL;file;6656;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907637390;4096;16;0;0;2021-12-16T13:35:38.388054Z;2021-11-11T11:29:30.982489Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/kbdax2.dll;file;7680;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1407374884349610;4096;16;0;0;2021-12-16T13:35:38.392071Z;2021-11-11T11:29:30.960551Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/KBDAZE.DLL;file;7168;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907636540;4096;16;0;0;2021-12-16T13:35:38.396029Z;2021-11-11T11:29:30.945621Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDAZEL.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907637200;4096;16;0;0;2021-12-16T13:35:38.400017Z;2021-11-11T11:29:30.975512Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDAZST.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907639190;4096;16;0;0;2021-12-16T13:35:38.403010Z;2021-11-11T11:29:31.004427Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDBASH.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907635530;4096;16;0;0;2021-12-16T13:35:38.408Z;2021-11-11T11:29:30.968531Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDBE.DLL;file;7168;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907635650;4096;16;0;0;2021-12-16T13:35:38.411986Z;2021-11-11T11:29:30.977507Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/KBDBENE.DLL;file;7680;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907636450;4096;16;0;0;2021-12-16T13:35:38.415622Z;2021-11-11T11:29:31.007434Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDBGPH.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907636630;4096;16;0;0;2021-12-16T13:35:38.419609Z;2021-11-11T11:29:31.002398Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDBGPH1.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907634720;4096;16;0;0;2021-12-16T13:35:38.423599Z;2021-11-11T11:29:30.948613Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDBHC.DLL;file;7168;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637660;4096;16;0;0;2021-12-16T13:35:38.427202Z;2021-11-11T11:29:30.950607Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDBLR.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907636680;4096;16;0;0;2021-12-16T13:35:38.431219Z;2021-11-11T11:29:30.984480Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDBR.DLL;file;7168;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907638970;4096;16;0;0;2021-12-16T13:35:38.434184Z;2021-11-11T11:29:30.964572Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/KBDBU.DLL;file;6656;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907638780;4096;16;0;0;2021-12-16T13:35:38.438939Z;2021-11-11T11:29:30.947615Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDBUG.DLL;file;7168;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907637820;4096;16;0;0;2021-12-16T13:35:38.443146Z;2021-11-11T11:29:30.950607Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDBULG.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907636600;4096;16;0;0;2021-12-16T13:35:38.447012Z;2021-11-11T11:29:30.946618Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDCA.DLL;file;7680;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907638810;4096;16;0;0;2021-12-16T13:35:38.450995Z;2021-11-11T11:29:30.976538Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDCAN.DLL;file;8704;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907636390;4096;24;0;0;2021-12-16T13:35:38.454987Z;2021-11-11T11:29:30.958558Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDCHER.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907635320;4096;16;0;0;2021-12-16T13:35:38.458977Z;2021-11-11T11:29:30.941631Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDCHERP.DLL;file;16896;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907638760;4096;40;0;0;2021-12-16T13:35:38.463111Z;2021-11-11T11:29:30.985480Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDCR.DLL;file;8192;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907636430;4096;16;0;0;2021-12-16T13:35:38.467012Z;2021-11-11T11:29:30.966536Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/KBDCZ.DLL;file;8192;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1407374884346920;4096;16;0;0;2021-12-16T13:35:38.472001Z;2021-11-11T11:29:30.992455Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDCZ1.DLL;file;8192;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907636790;4096;16;0;0;2021-12-16T13:35:38.475812Z;2021-11-11T11:29:30.979458Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDCZ2.DLL;file;8192;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907635270;4096;16;0;0;2021-12-16T13:35:38.479977Z;2021-11-11T11:29:30.996453Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDDA.DLL;file;6656;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907635430;4096;16;0;0;2021-12-16T13:35:38.483865Z;2021-11-11T11:29:30.991459Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDDIV1.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907635730;4096;16;0;0;2021-12-16T13:35:38.487822Z;2021-11-11T11:29:30.983485Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDDIV2.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907637180;4096;16;0;0;2021-12-16T13:35:38.492049Z;2021-11-11T11:29:30.996453Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDDV.DLL;file;6656;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907638410;4096;16;0;0;2021-12-16T13:35:38.495890Z;2021-11-11T11:29:30.990475Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDDZO.DLL;file;7168;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1407374884347430;4096;16;0;0;2021-12-16T13:35:38.499880Z;2021-11-11T11:29:30.941631Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDES.DLL;file;7680;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907637180;4096;16;0;0;2021-12-16T13:35:38.503896Z;2021-11-11T11:29:30.994456Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDEST.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907637480;4096;16;0;0;2021-12-16T13:35:38.507890Z;2021-11-11T11:29:30.944623Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDFA.DLL;file;6656;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907638430;4096;16;0;0;2021-12-16T13:35:38.512066Z;2021-11-11T11:29:30.962547Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/kbdfar.dll;file;7168;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907637000;4096;16;0;0;2021-12-16T13:35:38.516035Z;2021-11-11T11:29:30.954428Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDFC.DLL;file;7680;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637410;4096;16;0;0;2021-12-16T13:35:38.520024Z;2021-11-11T11:29:30.958558Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDFI.DLL;file;7168;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907639330;4096;16;0;0;2021-12-16T13:35:38.524291Z;2021-11-11T11:29:30.981483Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDFI1.DLL;file;8192;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907634750;4096;16;0;0;2021-12-16T13:35:38.528196Z;2021-11-11T11:29:30.982489Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/KBDFO.DLL;file;6656;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907636520;4096;16;0;0;2021-12-16T13:35:38.532014Z;2021-11-11T11:29:30.949610Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDFR.DLL;file;7168;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907635670;4096;16;0;0;2021-12-16T13:35:38.535977Z;2021-11-11T11:29:30.944623Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDFTHRK.DLL;file;7168;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907636770;4096;16;0;0;2021-12-16T13:35:38.540190Z;2021-11-11T11:29:31.006425Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/KBDGAE.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907638070;4096;16;0;0;2021-12-16T13:35:38.543965Z;2021-11-11T11:29:30.993461Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDGEO.DLL;file;6656;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907635660;4096;16;0;0;2021-12-16T13:35:38.548174Z;2021-11-11T11:29:30.997448Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/kbdgeoer.dll;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907635890;4096;16;0;0;2021-12-16T13:35:38.552005Z;2021-11-11T11:29:30.963544Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/kbdgeome.dll;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907635390;4096;16;0;0;2021-12-16T13:35:38.556727Z;2021-11-11T11:29:31.000440Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/kbdgeooa.dll;file;7168;33206;2019-12-07T09:09:28.694896Z;;;2785144255;2;0;1125899907635470;4096;16;0;0;2021-12-16T13:35:38.560515Z;2021-11-11T11:29:30.987469Z;2019-12-07T09:09:28.694896Z +C:/Windows/SysWOW64/kbdgeoqw.dll;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907638990;4096;16;0;0;2021-12-16T13:35:38.564507Z;2021-11-11T11:29:30.955428Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDGKL.DLL;file;7680;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907636960;4096;16;0;0;2021-12-16T13:35:38.568182Z;2021-11-11T11:29:30.992455Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDGN.DLL;file;7680;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907635550;4096;16;0;0;2021-12-16T13:35:38.571804Z;2021-11-11T11:29:30.992455Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDGR.DLL;file;7168;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907634960;4096;16;0;0;2021-12-16T13:35:38.573210Z;2021-11-11T11:29:30.990475Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDGR1.DLL;file;7680;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637210;4096;16;0;0;2021-12-16T13:35:38.576669Z;2021-11-11T11:29:30.978523Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDGRLND.DLL;file;8192;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907636110;4096;16;0;0;2021-12-16T13:35:38.581831Z;2021-11-11T11:29:30.974545Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDGTHC.DLL;file;7168;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907635840;4096;16;0;0;2021-12-16T13:35:38.585664Z;2021-11-11T11:29:30.997448Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDHAU.DLL;file;6656;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907635100;4096;16;0;0;2021-12-16T13:35:38.590094Z;2021-11-11T11:29:30.972521Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDHAW.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907637580;4096;16;0;0;2021-12-16T13:35:38.593855Z;2021-11-11T11:29:31.005431Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDHE.DLL;file;6656;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907639250;4096;16;0;0;2021-12-16T13:35:38.597880Z;2021-11-11T11:29:30.996453Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDHE220.DLL;file;7168;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907638410;4096;16;0;0;2021-12-16T13:35:38.602085Z;2021-11-11T11:29:30.976538Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDHE319.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907635750;4096;16;0;0;2021-12-16T13:35:38.606110Z;2021-11-11T11:29:30.949610Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDHEB.DLL;file;6656;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907639330;4096;16;0;0;2021-12-16T13:35:38.610480Z;2021-11-11T11:29:30.985480Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/kbdhebl3.dll;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;844424930926322;4096;16;0;0;2021-12-16T13:35:38.614337Z;2021-11-11T11:29:30.989462Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDHELA2.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907637630;4096;16;0;0;2021-12-16T13:35:38.618414Z;2021-11-11T11:29:30.966536Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDHELA3.DLL;file;7680;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907637040;4096;16;0;0;2021-12-16T13:35:38.623226Z;2021-11-11T11:29:30.970526Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDHEPT.DLL;file;9728;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907637120;4096;24;0;0;2021-12-16T13:35:38.627037Z;2021-11-11T11:29:30.973535Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDHU.DLL;file;7680;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907637970;4096;16;0;0;2021-12-16T13:35:38.631285Z;2021-11-11T11:29:30.992455Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDHU1.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907638560;4096;16;0;0;2021-12-16T13:35:38.635422Z;2021-11-11T11:29:30.966536Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/kbdibm02.DLL;file;7680;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907638280;4096;16;0;0;2021-12-16T13:35:38.639606Z;2021-11-11T11:29:30.974545Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/KBDIBO.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907638760;4096;16;0;0;2021-12-16T13:35:38.643598Z;2021-11-11T11:29:30.963544Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDIC.DLL;file;6656;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907635580;4096;16;0;0;2021-12-16T13:35:38.646617Z;2021-11-11T11:29:30.949610Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDINASA.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907638680;4096;16;0;0;2021-12-16T13:35:38.650612Z;2021-11-11T11:29:30.946618Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDINBE1.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907636450;4096;16;0;0;2021-12-16T13:35:38.654572Z;2021-11-11T11:29:31.007434Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDINBE2.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907634760;4096;16;0;0;2021-12-16T13:35:38.658560Z;2021-11-11T11:29:30.990475Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDINBEN.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907637230;4096;16;0;0;2021-12-16T13:35:38.662549Z;2021-11-11T11:29:30.981483Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDINDEV.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907635080;4096;16;0;0;2021-12-16T13:35:38.666540Z;2021-11-11T11:29:30.989462Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDINEN.DLL;file;8704;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907638630;4096;24;0;0;2021-12-16T13:35:38.671524Z;2021-11-11T11:29:30.954428Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDINGUJ.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907636940;4096;16;0;0;2021-12-16T13:35:38.675513Z;2021-11-11T11:29:30.983485Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDINHIN.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907636840;4096;16;0;0;2021-12-16T13:35:38.679502Z;2021-11-11T11:29:30.942628Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDINKAN.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907638090;4096;16;0;0;2021-12-16T13:35:38.682530Z;2021-11-11T11:29:30.941631Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDINMAL.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907636570;4096;16;0;0;2021-12-16T13:35:38.687486Z;2021-11-11T11:29:31.009419Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDINMAR.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907636630;4096;16;0;0;2021-12-16T13:35:38.691498Z;2021-11-11T11:29:30.951605Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDINORI.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907637390;4096;16;0;0;2021-12-16T13:35:38.695468Z;2021-11-11T11:29:30.950607Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDINPUN.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907637820;4096;16;0;0;2021-12-16T13:35:38.699532Z;2021-11-11T11:29:30.988473Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDINTAM.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907635160;4096;16;0;0;2021-12-16T13:35:38.703312Z;2021-11-11T11:29:30.998441Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDINTEL.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1407374884348540;4096;16;0;0;2021-12-16T13:35:38.708300Z;2021-11-11T11:29:31.003432Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDINUK2.DLL;file;8192;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907636190;4096;16;0;0;2021-12-16T13:35:38.712322Z;2021-11-11T11:29:30.958558Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDIR.DLL;file;6656;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907639510;4096;16;0;0;2021-12-16T13:35:38.716162Z;2021-11-11T11:29:30.968531Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDIT.DLL;file;6656;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907635420;4096;16;0;0;2021-12-16T13:35:38.720159Z;2021-11-11T11:29:30.993461Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDIT142.DLL;file;6656;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907638710;4096;16;0;0;2021-12-16T13:35:38.724180Z;2021-11-11T11:29:30.999443Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDIULAT.DLL;file;7680;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637330;4096;16;0;0;2021-12-16T13:35:38.728138Z;2021-11-11T11:29:30.983485Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDJAV.DLL;file;7168;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907639390;4096;16;0;0;2021-12-16T13:35:38.732699Z;2021-11-11T11:29:30.972521Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/KBDJPN.DLL;file;13824;33206;2020-12-09T00:08:28.905028Z;;;2785144255;2;0;562949953795144;4096;32;0;0;2021-12-16T13:35:38.739171Z;2021-11-11T11:29:30.942628Z;2020-12-09T00:08:28.905028Z +C:/Windows/SysWOW64/KBDKAZ.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907637860;4096;16;0;0;2021-12-16T13:35:38.743460Z;2021-11-11T11:29:30.988473Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDKHMR.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907638280;4096;16;0;0;2021-12-16T13:35:38.747307Z;2021-11-11T11:29:31.004427Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDKNI.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907635650;4096;16;0;0;2021-12-16T13:35:38.751234Z;2021-11-11T11:29:30.986466Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDKOR.DLL;file;13312;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907635090;4096;32;0;0;2021-12-16T13:35:38.757161Z;2021-11-11T11:29:30.953600Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDKURD.DLL;file;7168;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637660;4096;16;0;0;2021-12-16T13:35:38.761603Z;2021-11-11T11:29:31.004427Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDKYR.DLL;file;6656;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907636040;4096;16;0;0;2021-12-16T13:35:38.765401Z;2021-11-11T11:29:31.000440Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDLA.DLL;file;7680;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907636720;4096;16;0;0;2021-12-16T13:35:38.769422Z;2021-11-11T11:29:30.970526Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDLAO.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907635750;4096;16;0;0;2021-12-16T13:35:38.773799Z;2021-11-11T11:29:30.960551Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/kbdlisub.dll;file;7168;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907639490;4096;16;0;0;2021-12-16T13:35:38.778025Z;2021-11-11T11:29:30.961582Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/kbdlisus.dll;file;7168;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907637290;4096;16;0;0;2021-12-16T13:35:38.781669Z;2021-11-11T11:29:31.007434Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/kbdlk41a.dll;file;7680;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907637440;4096;16;0;0;2021-12-16T13:35:38.785635Z;2021-11-11T11:29:31.007434Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/KBDLT.DLL;file;6656;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907637830;4096;16;0;0;2021-12-16T13:35:38.790308Z;2021-11-11T11:29:31.008411Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDLT1.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907637950;4096;16;0;0;2021-12-16T13:35:38.794588Z;2021-11-11T11:29:30.973535Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDLT2.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907638070;4096;16;0;0;2021-12-16T13:35:38.798897Z;2021-11-11T11:29:30.943626Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDLV.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907639370;4096;16;0;0;2021-12-16T13:35:38.802712Z;2021-11-11T11:29:30.996453Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDLV1.DLL;file;7680;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907636430;4096;16;0;0;2021-12-16T13:35:38.807668Z;2021-11-11T11:29:31.003432Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDLVST.DLL;file;8704;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907634940;4096;24;0;0;2021-12-16T13:35:38.811259Z;2021-11-11T11:29:30.956425Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDMAC.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907635090;4096;16;0;0;2021-12-16T13:35:38.815252Z;2021-11-11T11:29:30.964572Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDMACST.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907634820;4096;16;0;0;2021-12-16T13:35:38.819241Z;2021-11-11T11:29:30.969528Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDMAORI.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907635240;4096;16;0;0;2021-12-16T13:35:38.823256Z;2021-11-11T11:29:30.955428Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDMLT47.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907636410;4096;16;0;0;2021-12-16T13:35:38.827510Z;2021-11-11T11:29:30.979458Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDMLT48.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907635960;4096;16;0;0;2021-12-16T13:35:38.831518Z;2021-11-11T11:29:30.980457Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDMON.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907635920;4096;16;0;0;2021-12-16T13:35:38.835532Z;2021-11-11T11:29:30.994456Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDMONMO.DLL;file;7168;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;844424930926401;4096;16;0;0;2021-12-16T13:35:38.839788Z;2021-11-11T11:29:30.976538Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDMONST.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907636830;4096;16;0;0;2021-12-16T13:35:38.843982Z;2021-11-11T11:29:30.994456Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDMYAN.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907637980;4096;16;0;0;2021-12-16T13:35:38.847916Z;2021-11-11T11:29:30.955428Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDNE.DLL;file;7168;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907637450;4096;16;0;0;2021-12-16T13:35:38.852180Z;2021-11-11T11:29:31.002398Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/kbdnec.DLL;file;8192;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;844424930925968;4096;16;0;0;2021-12-16T13:35:38.856562Z;2021-11-11T11:29:31.007434Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/kbdnec95.DLL;file;8192;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907639280;4096;16;0;0;2021-12-16T13:35:38.860623Z;2021-11-11T11:29:30.971523Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/kbdnecat.DLL;file;10240;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907636360;4096;24;0;0;2021-12-16T13:35:38.864437Z;2021-11-11T11:29:30.956425Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/kbdnecnt.DLL;file;8704;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907637920;4096;24;0;0;2021-12-16T13:35:38.869404Z;2021-11-11T11:29:30.998441Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/KBDNEPR.DLL;file;7680;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907639410;4096;16;0;0;2021-12-16T13:35:38.873417Z;2021-11-11T11:29:31.001439Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/kbdnko.dll;file;6656;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907634680;4096;16;0;0;2021-12-16T13:35:38.877687Z;2021-11-11T11:29:30.990475Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDNO.DLL;file;6656;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1407374884346280;4096;16;0;0;2021-12-16T13:35:38.881663Z;2021-11-11T11:29:31.002398Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDNO1.DLL;file;8192;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907638500;4096;16;0;0;2021-12-16T13:35:38.885620Z;2021-11-11T11:29:30.985480Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDNSO.DLL;file;8192;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907637930;4096;16;0;0;2021-12-16T13:35:38.889573Z;2021-11-11T11:29:30.950607Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDNTL.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907637610;4096;16;0;0;2021-12-16T13:35:38.893995Z;2021-11-11T11:29:31.008411Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDOGHAM.DLL;file;6656;33206;2019-12-07T09:09:28.834657Z;;;2785144255;2;0;1125899907634890;4096;16;0;0;2021-12-16T13:35:38.898086Z;2021-11-11T11:29:30.960551Z;2019-12-07T09:09:28.694896Z +C:/Windows/SysWOW64/KBDOLCH.DLL;file;7168;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1407374884348540;4096;16;0;0;2021-12-16T13:35:38.902133Z;2021-11-11T11:29:30.979458Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDOLDIT.DLL;file;7168;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907637370;4096;16;0;0;2021-12-16T13:35:38.906089Z;2021-11-11T11:29:30.991459Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDOSA.DLL;file;7168;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907637730;4096;16;0;0;2021-12-16T13:35:38.910114Z;2021-11-11T11:29:30.973535Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/KBDOSM.DLL;file;6656;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907635890;4096;16;0;0;2021-12-16T13:35:38.914100Z;2021-11-11T11:29:30.984480Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDPASH.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907639480;4096;16;0;0;2021-12-16T13:35:38.918088Z;2021-11-11T11:29:30.988473Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/kbdphags.dll;file;7168;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907634670;4096;16;0;0;2021-12-16T13:35:38.923073Z;2021-11-11T11:29:30.965573Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDPL.DLL;file;7680;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907635510;4096;16;0;0;2021-12-16T13:35:38.927050Z;2021-11-11T11:29:30.951605Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDPL1.DLL;file;7168;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907637260;4096;16;0;0;2021-12-16T13:35:38.930692Z;2021-11-11T11:29:30.972521Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDPO.DLL;file;7680;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637510;4096;16;0;0;2021-12-16T13:35:38.934681Z;2021-11-11T11:29:30.987469Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDRO.DLL;file;8192;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907639020;4096;16;0;0;2021-12-16T13:35:38.938671Z;2021-11-11T11:29:31.009419Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDROPR.DLL;file;8704;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907635140;4096;24;0;0;2021-12-16T13:35:38.943237Z;2021-11-11T11:29:30.977507Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDROST.DLL;file;8704;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907638400;4096;24;0;0;2021-12-16T13:35:38.947120Z;2021-11-11T11:29:30.984480Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDRU.DLL;file;6656;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907637190;4096;16;0;0;2021-12-16T13:35:38.950961Z;2021-11-11T11:29:30.942628Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDRU1.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907636130;4096;16;0;0;2021-12-16T13:35:38.955923Z;2021-11-11T11:29:30.948613Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDRUM.DLL;file;8192;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907637730;4096;16;0;0;2021-12-16T13:35:38.959911Z;2021-11-11T11:29:30.986466Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDSF.DLL;file;7680;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907635820;4096;16;0;0;2021-12-16T13:35:38.964898Z;2021-11-11T11:29:31.001439Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/KBDSG.DLL;file;7680;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907635730;4096;16;0;0;2021-12-16T13:35:38.969885Z;2021-11-11T11:29:30.980457Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDSL.DLL;file;7680;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907638270;4096;16;0;0;2021-12-16T13:35:38.974880Z;2021-11-11T11:29:30.971523Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDSL1.DLL;file;8192;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907635010;4096;16;0;0;2021-12-16T13:35:38.979886Z;2021-11-11T11:29:30.965573Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDSMSFI.DLL;file;8704;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907639050;4096;24;0;0;2021-12-16T13:35:38.983875Z;2021-11-11T11:29:30.962547Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDSMSNO.DLL;file;8704;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907637250;4096;24;0;0;2021-12-16T13:35:38.988836Z;2021-11-11T11:29:30.961582Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDSN1.DLL;file;6656;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907637370;4096;16;0;0;2021-12-16T13:35:38.992823Z;2021-11-11T11:29:31.007434Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDSORA.DLL;file;7168;33206;2019-12-07T09:09:28.864812Z;;;2785144255;2;0;1125899907635890;4096;16;0;0;2021-12-16T13:35:38.996840Z;2021-11-11T11:29:30.960551Z;2019-12-07T09:09:28.864812Z +C:/Windows/SysWOW64/KBDSOREX.DLL;file;7680;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907634850;4096;16;0;0;2021-12-16T13:35:39.001176Z;2021-11-11T11:29:30.945621Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDSORS1.DLL;file;7680;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907636520;4096;16;0;0;2021-12-16T13:35:39.004853Z;2021-11-11T11:29:30.997448Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDSORST.DLL;file;8192;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907635630;4096;16;0;0;2021-12-16T13:35:39.009755Z;2021-11-11T11:29:31.008411Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDSP.DLL;file;7168;33206;2019-12-07T09:09:27.646435Z;;;2785144255;2;0;1125899907636660;4096;16;0;0;2021-12-16T13:35:39.013630Z;2021-11-11T11:29:30.992455Z;2019-12-07T09:09:27.646435Z +C:/Windows/SysWOW64/KBDSW.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907637180;4096;16;0;0;2021-12-16T13:35:39.017900Z;2021-11-11T11:29:31.002398Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDSW09.DLL;file;7680;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907636270;4096;16;0;0;2021-12-16T13:35:39.022500Z;2021-11-11T11:29:30.994456Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDSYR1.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907636840;4096;16;0;0;2021-12-16T13:35:39.026556Z;2021-11-11T11:29:30.977507Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDSYR2.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907634750;4096;16;0;0;2021-12-16T13:35:39.030318Z;2021-11-11T11:29:31.001439Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDTAILE.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907636650;4096;16;0;0;2021-12-16T13:35:39.034353Z;2021-11-11T11:29:31.005431Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDTAJIK.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907634780;4096;16;0;0;2021-12-16T13:35:39.038960Z;2021-11-11T11:29:30.978523Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDTAT.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1407374884347310;4096;16;0;0;2021-12-16T13:35:39.042847Z;2021-11-11T11:29:31.000440Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDTH0.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907639490;4096;16;0;0;2021-12-16T13:35:39.047698Z;2021-11-11T11:29:30.966536Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDTH1.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907638860;4096;16;0;0;2021-12-16T13:35:39.051012Z;2021-11-11T11:29:30.985480Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDTH2.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;844424930928713;4096;16;0;0;2021-12-16T13:35:39.055355Z;2021-11-11T11:29:30.985480Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDTH3.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907635590;4096;16;0;0;2021-12-16T13:35:39.060053Z;2021-11-11T11:29:30.995469Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDTIFI.DLL;file;7168;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637230;4096;16;0;0;2021-12-16T13:35:39.064507Z;2021-11-11T11:29:30.943626Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDTIFI2.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907635290;4096;16;0;0;2021-12-16T13:35:39.067991Z;2021-11-11T11:29:30.975512Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDTIPRC.DLL;file;7680;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907637100;4096;16;0;0;2021-12-16T13:35:39.073327Z;2021-11-11T11:29:31.008411Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDTIPRD.DLL;file;7680;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907634730;4096;16;0;0;2021-12-16T13:35:39.077207Z;2021-11-11T11:29:30.973535Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDTT102.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1407374884349190;4096;16;0;0;2021-12-16T13:35:39.081328Z;2021-11-11T11:29:31.005431Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDTUF.DLL;file;7680;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907637800;4096;16;0;0;2021-12-16T13:35:39.085303Z;2021-11-11T11:29:30.945621Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDTUQ.DLL;file;7680;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907635780;4096;16;0;0;2021-12-16T13:35:39.089832Z;2021-11-11T11:29:30.954428Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDTURME.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907636820;4096;16;0;0;2021-12-16T13:35:39.093440Z;2021-11-11T11:29:30.963544Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDTZM.DLL;file;7680;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637040;4096;16;0;0;2021-12-16T13:35:39.097532Z;2021-11-11T11:29:30.984480Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDUGHR.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907638400;4096;16;0;0;2021-12-16T13:35:39.101506Z;2021-11-11T11:29:30.952603Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDUGHR1.DLL;file;7168;33206;2019-12-07T09:09:27.708446Z;;;2785144255;2;0;1125899907635590;4096;16;0;0;2021-12-16T13:35:39.105277Z;2021-11-11T11:29:30.988473Z;2019-12-07T09:09:27.708446Z +C:/Windows/SysWOW64/KBDUK.DLL;file;6656;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907639040;4096;16;0;0;2021-12-16T13:35:39.110059Z;2021-11-11T11:29:30.971523Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDUKX.DLL;file;8192;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907636270;4096;16;0;0;2021-12-16T13:35:39.114163Z;2021-11-11T11:29:30.974545Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDUR.DLL;file;6656;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907636130;4096;16;0;0;2021-12-16T13:35:39.118002Z;2021-11-11T11:29:30.978523Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDUR1.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907636980;4096;16;0;0;2021-12-16T13:35:39.121992Z;2021-11-11T11:29:30.994456Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDURDU.DLL;file;6656;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;1125899907638500;4096;16;0;0;2021-12-16T13:35:39.126448Z;2021-11-11T11:29:30.964572Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDUS.DLL;file;8192;33206;2020-11-03T12:45:45.417611Z;;;2785144255;2;0;1125899907815920;4096;16;0;0;2021-12-16T13:35:39.131321Z;2021-11-11T11:29:33.713333Z;2020-11-03T12:45:45.417611Z +C:/Windows/SysWOW64/KBDUSA.DLL;file;7168;33206;2019-12-07T09:09:28.854585Z;;;2785144255;2;0;1125899907636390;4096;16;0;0;2021-12-16T13:35:39.135209Z;2021-11-11T11:29:30.940633Z;2019-12-07T09:09:28.854585Z +C:/Windows/SysWOW64/KBDUSL.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907638810;4096;16;0;0;2021-12-16T13:35:39.140358Z;2021-11-11T11:29:30.959554Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDUSR.DLL;file;7168;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1407374884345330;4096;16;0;0;2021-12-16T13:35:39.144561Z;2021-11-11T11:29:30.975512Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDUSX.DLL;file;7680;33206;2019-12-07T09:09:27.724048Z;;;2785144255;2;0;1125899907635360;4096;16;0;0;2021-12-16T13:35:39.148737Z;2021-11-11T11:29:30.989462Z;2019-12-07T09:09:27.724048Z +C:/Windows/SysWOW64/KBDUZB.DLL;file;7168;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907637150;4096;16;0;0;2021-12-16T13:35:39.152560Z;2021-11-11T11:29:31.006425Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDVNTC.DLL;file;7168;33206;2019-12-07T09:09:27.661679Z;;;2785144255;2;0;844424930925760;4096;16;0;0;2021-12-16T13:35:39.157023Z;2021-11-11T11:29:30.948613Z;2019-12-07T09:09:27.661679Z +C:/Windows/SysWOW64/KBDWOL.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907637130;4096;16;0;0;2021-12-16T13:35:39.160779Z;2021-11-11T11:29:30.966536Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDYAK.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907636550;4096;16;0;0;2021-12-16T13:35:39.164757Z;2021-11-11T11:29:30.999443Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDYBA.DLL;file;7168;33206;2019-12-07T09:09:27.677283Z;;;2785144255;2;0;1125899907638890;4096;16;0;0;2021-12-16T13:35:39.168742Z;2021-11-11T11:29:30.957557Z;2019-12-07T09:09:27.677283Z +C:/Windows/SysWOW64/KBDYCC.DLL;file;7168;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907635090;4096;16;0;0;2021-12-16T13:35:39.172722Z;2021-11-11T11:29:30.995469Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KBDYCL.DLL;file;8704;33206;2019-12-07T09:09:27.693253Z;;;2785144255;2;0;1125899907638520;4096;24;0;0;2021-12-16T13:35:39.177018Z;2021-11-11T11:29:30.998441Z;2019-12-07T09:09:27.693253Z +C:/Windows/SysWOW64/KerbClientShared.dll;file;152384;33206;2021-11-11T11:28:59.653496Z;;;2785144255;2;0;281474977879191;4096;304;0;0;2021-12-16T13:35:39.191694Z;2021-11-11T11:38:52.439533Z;2021-11-11T11:28:59.649506Z +C:/Windows/SysWOW64/kerberos.dll;file;834560;33206;2021-11-11T11:28:59.681419Z;;;2785144255;2;0;281474977879192;4096;1632;0;0;2021-12-16T13:35:39.211303Z;2021-11-11T11:38:52.590959Z;2021-11-11T11:28:59.658481Z +C:/Windows/SysWOW64/kernel.appcore.dll;file;52672;33206;2020-11-03T12:45:49.385465Z;;;2785144255;2;0;1125899907817260;4096;104;0;0;2021-12-16T13:35:39.211963Z;2021-11-11T11:29:33.749237Z;2020-11-03T12:45:49.385465Z +C:/Windows/SysWOW64/kernel32.dll;file;640824;33206;2021-11-11T11:28:57.454884Z;;;2785144255;2;0;281474977878956;4096;1256;0;0;2021-12-16T13:35:39.212249Z;2021-11-11T11:38:50.803126Z;2021-11-11T11:28:57.442912Z +C:/Windows/SysWOW64/KernelBase.dll;file;2180656;33206;2021-11-11T11:28:55.127775Z;;;2785144255;2;0;281474977878886;4096;4264;0;0;2021-12-16T13:35:39.212461Z;2021-11-11T11:38:53.395638Z;2021-11-11T11:28:55.070981Z +C:/Windows/SysWOW64/KeyboardFilterCore.dll;file;34632;33206;2021-05-18T11:00:06.198310Z;;;2785144255;2;0;7318349394495310;4096;72;0;0;2021-12-16T13:35:39.225428Z;2021-11-11T11:29:32.365157Z;2021-05-18T11:00:06.195039Z +C:/Windows/SysWOW64/KeyboardFilterShim.dll;file;45872;33206;2021-03-11T12:12:34.386358Z;;;2785144255;2;0;1407374884526630;4096;96;0;0;2021-12-16T13:35:39.243407Z;2021-11-11T11:29:32.364159Z;2021-03-11T12:12:34.370737Z +C:/Windows/SysWOW64/KeyCredMgr.dll;file;54272;33206;2021-10-03T19:02:17.522570Z;;;2785144255;2;0;1688849861186980;4096;112;0;0;2021-12-16T13:35:39.256380Z;2021-11-11T11:29:33.785173Z;2021-10-03T19:02:17.516065Z +C:/Windows/SysWOW64/keyiso.dll;file;66560;33206;2020-11-03T12:45:51.931808Z;;;2785144255;2;0;562949954397210;4096;136;0;0;2021-12-16T13:35:39.268315Z;2021-11-11T11:29:33.777163Z;2020-11-03T12:45:51.931808Z +C:/Windows/SysWOW64/keymgr.dll;file;46080;33206;2019-12-07T09:09:32.401382Z;;;2785144255;2;0;1125899907636870;4096;96;0;0;2021-12-16T13:35:39.282296Z;2021-11-11T11:29:33.814066Z;2019-12-07T09:09:32.401382Z +C:/Windows/SysWOW64/Keywords;directory;0;16822;2021-02-11T15:15:45.257983Z;;;2785144255;1;0;3940649674269970;4096;16;0;0;2021-12-16T13:36:01.175794Z;2021-02-11T15:15:45.257983Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Keywords/ti_cnn_en-US.table;file;781004;33206;2021-02-11T15:05:11.367181Z;;;2785144255;2;0;562949954318837;4096;1528;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2021-02-11T15:05:11.351559Z +C:/Windows/SysWOW64/Keywords/ti_cnn_ja-JP.table;file;777996;33206;2021-02-11T15:05:11.398434Z;;;2785144255;2;0;562949954318838;4096;1520;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2021-02-11T15:05:11.382803Z +C:/Windows/SysWOW64/Keywords/ti_cnn_zh-CN.table;file;799708;33206;2021-02-11T15:05:11.414043Z;;;2785144255;2;0;562949954318839;4096;1568;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2021-02-11T15:05:11.398434Z +C:/Windows/SysWOW64/Keywords/ti_dnn_de-DE.table;file;614476;33206;2019-12-07T09:09:11.840403Z;;;2785144255;2;0;1125899907637870;4096;1208;0;0;2021-10-16T00:20:01.145684Z;2021-11-15T13:07:17.573432Z;2019-12-07T09:09:11.840403Z +C:/Windows/SysWOW64/Keywords/ti_dnn_en-US.table;file;610332;33206;2019-12-07T09:09:11.840403Z;;;2785144255;2;0;1407374884348570;4096;1200;0;0;2021-10-16T00:20:01.145684Z;2021-11-15T13:07:17.573432Z;2019-12-07T09:09:11.840403Z +C:/Windows/SysWOW64/Keywords/ti_dnn_es.table;file;601196;33206;2019-12-07T09:09:11.840403Z;;;2785144255;2;0;1125899907635330;4096;1176;0;0;2021-10-16T00:20:01.145684Z;2021-11-15T13:07:17.573432Z;2019-12-07T09:09:11.840403Z +C:/Windows/SysWOW64/Keywords/ti_dnn_fast-fr-FR.table;file;608700;33206;2021-02-11T15:05:11.445254Z;;;2785144255;2;0;562949954318840;4096;1192;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2021-02-11T15:05:11.429634Z +C:/Windows/SysWOW64/Keywords/ti_dnn_fast_de-DE.table;file;614476;33206;2021-02-11T15:05:11.460878Z;;;2785144255;2;0;562949954318841;4096;1208;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2021-02-11T15:05:11.445254Z +C:/Windows/SysWOW64/Keywords/ti_dnn_fast_es-ES.table;file;601212;33206;2021-02-11T15:05:11.476499Z;;;2785144255;2;0;562949954318842;4096;1176;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2021-02-11T15:05:11.460878Z +C:/Windows/SysWOW64/Keywords/ti_dnn_fast_it-IT.table;file;606396;33206;2021-02-11T15:05:11.492150Z;;;2785144255;2;0;562949954318843;4096;1192;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.573432Z;2021-02-11T15:05:11.476499Z +C:/Windows/SysWOW64/Keywords/ti_dnn_fast_pt-BR.table;file;608700;33206;2021-02-11T15:05:11.523364Z;;;2785144255;2;0;562949954318844;4096;1192;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.573432Z;2021-02-11T15:05:11.507771Z +C:/Windows/SysWOW64/Keywords/ti_dnn_fr.table;file;608684;33206;2019-12-07T09:09:11.849051Z;;;2785144255;2;0;1125899907639200;4096;1192;0;0;2021-10-16T00:20:01.145684Z;2021-11-15T13:07:17.573432Z;2019-12-07T09:09:11.840403Z +C:/Windows/SysWOW64/Keywords/ti_dnn_it-IT.table;file;606380;33206;2019-12-07T09:09:11.849051Z;;;2785144255;2;0;1125899907638550;4096;1192;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2019-12-07T09:09:11.849051Z +C:/Windows/SysWOW64/Keywords/ti_dnn_ja-JP.table;file;605260;33206;2019-12-07T09:09:11.849051Z;;;2785144255;2;0;1125899907638620;4096;1184;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2019-12-07T09:09:11.849051Z +C:/Windows/SysWOW64/Keywords/ti_dnn_pt-BR.table;file;608684;33206;2019-12-07T09:09:11.849051Z;;;2785144255;2;0;1125899907636480;4096;1192;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2019-12-07T09:09:11.849051Z +C:/Windows/SysWOW64/Keywords/ti_dnn_zh-CN.table;file;769948;33206;2019-12-07T09:09:11.849051Z;;;2785144255;2;0;1125899907636580;4096;1504;0;0;2021-10-16T00:20:01.161309Z;2021-11-15T13:07:17.573432Z;2019-12-07T09:09:11.849051Z +C:/Windows/SysWOW64/Keywords/{6D6719CB-4254-413B-B71B-6B82D5DBBE36}1033.bin;file;1056;33206;2019-12-07T09:09:11.864181Z;;;2785144255;2;0;1125899907636640;4096;8;0;0;2021-10-16T00:20:01.192554Z;2021-11-15T13:07:17.581454Z;2019-12-07T09:09:11.864181Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}1031.bin;file;1195;33206;2021-02-11T15:05:11.523364Z;;;2785144255;2;0;562949954318846;4096;8;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.523364Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}1033.bin;file;675;33206;2021-02-11T15:05:11.523364Z;;;2785144255;2;0;562949954318845;4096;8;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.523364Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}1034.bin;file;1183;33206;2021-02-11T15:05:11.539017Z;;;2785144255;2;0;562949954318847;4096;8;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.539017Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}1036.bin;file;1195;33206;2021-02-11T15:05:11.539017Z;;;2785144255;2;0;562949954318848;4096;8;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.539017Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}1040.bin;file;1139;33206;2021-02-11T15:05:11.539017Z;;;2785144255;2;0;562949954318849;4096;8;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.539017Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}1041.bin;file;779;33206;2021-02-11T15:05:11.539017Z;;;2785144255;2;0;562949954318850;4096;8;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.539017Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}1046.bin;file;1363;33206;2021-02-11T15:05:11.554638Z;;;2785144255;2;0;562949954318851;4096;8;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.554638Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}16393.bin;file;675;33206;2021-02-11T15:05:11.570259Z;;;2785144255;2;0;562949954318858;4096;8;0;0;2021-10-16T00:20:01.192554Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.570259Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}2052.bin;file;767;33206;2021-02-11T15:05:11.554638Z;;;2785144255;2;0;562949954318852;4096;8;0;0;2021-10-16T00:20:01.176930Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.554638Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}2057.bin;file;675;33206;2021-02-11T15:05:11.554638Z;;;2785144255;2;0;562949954318853;4096;8;0;0;2021-10-16T00:20:01.192554Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.554638Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}2058.bin;file;1183;33206;2021-02-11T15:05:11.554638Z;;;2785144255;2;0;562949954318854;4096;8;0;0;2021-10-16T00:20:01.192554Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.554638Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}3081.bin;file;675;33206;2021-02-11T15:05:11.570259Z;;;2785144255;2;0;562949954318855;4096;8;0;0;2021-10-16T00:20:01.192554Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.570259Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}3084.bin;file;1195;33206;2021-02-11T15:05:11.570259Z;;;2785144255;2;0;562949954318856;4096;8;0;0;2021-10-16T00:20:01.192554Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.570259Z +C:/Windows/SysWOW64/Keywords/{A5A7C794-3D59-41DF-915F-19ACDA526FC9}4105.bin;file;675;33206;2021-02-11T15:05:11.570259Z;;;2785144255;2;0;562949954318857;4096;8;0;0;2021-10-16T00:20:01.192554Z;2021-11-15T13:07:17.581454Z;2021-02-11T15:05:11.570259Z +C:/Windows/SysWOW64/kmddsp.tsp;file;38912;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907637460;4096;80;0;0;2021-12-16T13:35:39.295469Z;2021-11-11T11:29:33.817058Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/ko-KR;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;3377699720848660;4096;8;0;0;2021-12-16T13:36:01.175794Z;2020-11-03T12:35:52.826114Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/ko-KR/APHostRes.dll.mui;file;10752;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648810;4096;24;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.529279Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/ko-KR/cdosys.dll.mui;file;43008;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014750;4096;88;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/ko-KR/comctl32.dll.mui;file;5632;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;5348024558172290;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:19.973906Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/ko-KR/quickassist.exe.mui;file;3072;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619420;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/ko-KR/SyncRes.dll.mui;file;17920;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648740;4096;40;0;0;2019-12-07T14:53:37.844785Z;2020-11-03T12:35:52.498036Z;2019-12-07T14:53:37.844785Z +C:/Windows/SysWOW64/ko-KR/windows.ui.xaml.dll.mui;file;12800;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907635870;4096;32;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:43.343839Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/KOBDrvAPIIF.DLL;file;90112;33206;2020-07-17T07:40:21.229014Z;;;2785144255;1;0;844424930298519;4096;176;0;0;2021-12-16T13:35:39.316417Z;2021-11-29T09:32:53.193114Z;2019-11-20T13:34:56.392052Z +C:/Windows/SysWOW64/korean.uce;file;12876;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907629080;4096;32;0;0;2021-12-16T13:35:39.319100Z;2020-11-03T12:35:38.922734Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/ksproxy.ax;file;234496;33206;2021-01-15T09:27:38.270235Z;;;2785144255;2;0;13792273859444800;4096;464;0;0;2021-12-16T13:35:39.320071Z;2021-11-11T11:29:34.242017Z;2021-01-15T09:27:38.270235Z +C:/Windows/SysWOW64/kstvtune.ax;file;89600;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907630320;4096;176;0;0;2021-12-16T13:35:39.333617Z;2021-11-11T11:29:34.248997Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/ksuser.dll;file;20328;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907637520;4096;40;0;0;2021-12-16T13:35:39.334130Z;2021-11-11T11:29:33.712335Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/Kswdmcap.ax;file;116224;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907628970;4096;232;0;0;2021-12-16T13:35:39.334420Z;2021-11-11T11:29:34.248Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/ksxbar.ax;file;53248;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907628480;4096;104;0;0;2021-12-16T13:35:39.347846Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/ktmutil.exe;file;15360;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907628810;4096;32;0;0;2021-12-16T13:35:39.357784Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/ktmw32.dll;file;20992;33206;2020-11-03T12:45:53.290872Z;;;2785144255;2;0;562949954397895;4096;48;0;0;2021-12-16T13:35:39.369751Z;2021-11-11T11:29:30.995469Z;2020-11-03T12:45:53.290872Z +C:/Windows/SysWOW64/l2gpstore.dll;file;57856;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907637380;4096;120;0;0;2021-12-16T13:35:39.382753Z;2021-11-11T11:29:33.708346Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/l2nacp.dll;file;52736;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907638650;4096;104;0;0;2021-12-16T13:35:39.396172Z;2021-11-11T11:29:33.709343Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/L2SecHC.dll;file;162304;33206;2021-10-03T19:02:00.711307Z;;;2785144255;2;0;1688849861186620;4096;320;0;0;2021-12-16T13:35:39.412113Z;2021-11-11T11:29:33.710341Z;2021-10-03T19:02:00.699161Z +C:/Windows/SysWOW64/l3codeca.acm;file;69120;33206;2019-12-07T14:54:43.969234Z;;;2785144255;2;0;1125899907618460;4096;136;0;0;2021-12-16T13:35:39.413282Z;2021-11-11T11:29:32.482835Z;2019-12-07T09:10:11.990066Z +C:/Windows/SysWOW64/l3codecp.acm;file;189440;33206;2019-12-07T14:54:43.969234Z;;;2785144255;2;0;1125899907618440;4096;376;0;0;2021-12-16T13:35:39.428188Z;2021-11-11T11:29:32.480839Z;2019-12-07T09:10:11.990066Z +C:/Windows/SysWOW64/label.exe;file;15360;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907630210;4096;32;0;0;2021-12-16T13:35:39.436920Z;2021-11-11T11:29:34.203158Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/LanguageOverlayUtil.dll;file;134800;33206;2020-11-03T12:45:45.230148Z;;;2785144255;2;0;1125899907815890;4096;264;0;0;2021-12-16T13:35:39.452347Z;2021-11-11T11:29:33.707349Z;2020-11-03T12:45:45.230148Z +C:/Windows/SysWOW64/LAPRXY.DLL;file;10240;33206;2019-12-07T14:54:46.066237Z;;;2785144255;2;0;1125899907618580;4096;24;0;0;2021-12-16T13:35:39.464817Z;2021-11-11T11:29:32.502705Z;2019-12-07T09:10:14.710340Z +C:/Windows/SysWOW64/LaunchTM.exe;file;10240;33206;2021-10-03T19:02:15.415272Z;;;2785144255;2;0;1688849861186950;4096;24;0;0;2021-12-16T13:35:39.474730Z;2021-11-11T11:29:33.761205Z;2021-10-03T19:02:15.410837Z +C:/Windows/SysWOW64/LaunchWinApp.exe;file;34304;33206;2021-11-11T11:28:57.439893Z;;;2785144255;2;0;281474977878955;4096;72;0;0;2021-12-16T13:35:39.501659Z;2021-11-11T11:38:52.092268Z;2021-11-11T11:28:57.437899Z +C:/Windows/SysWOW64/lcphrase.tbl;file;211938;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907630100;4096;416;0;0;2021-12-16T13:35:39.504652Z;2020-11-03T12:35:39.625693Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/lcptr.tbl;file;24114;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907629820;4096;48;0;0;2021-12-16T13:35:39.507646Z;2020-11-03T12:35:39.485111Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/Lenovo;directory;0;16822;2020-11-03T12:50:21.425812Z;;;2785144255;1;0;1970324837784900;4096;0;0;0;2021-12-16T13:36:01.175794Z;2020-11-03T12:50:21.425812Z;2019-09-17T00:35:14.360234Z +C:/Windows/SysWOW64/Lenovo/PowerMgr;directory;0;16822;2021-10-14T08:40:30.990142Z;;;2785144255;1;0;1970324837784900;4096;24;0;0;2021-12-16T13:36:01.176791Z;2021-10-14T08:40:30.990142Z;2019-09-17T00:35:14.360234Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/AR;directory;0;16822;2021-10-14T07:03:55.080409Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.176791Z;2021-10-14T07:03:55.080409Z;2019-09-17T00:35:14.500826Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/AR/PWMPDFV1.INI;file;1462;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206080;4096;8;0;0;2021-10-14T07:03:55.080409Z;2021-10-14T07:03:55.080409Z;2020-08-05T11:48:45.683471Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/AR/PWMRT32V.dll;file;356536;33206;2021-07-11T21:48:34Z;;;2785144255;1;0;32088147345114600;4096;704;0;0;2021-10-14T07:03:55.080409Z;2021-10-14T07:03:55.080409Z;2021-07-11T21:48:34Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ar-SA;directory;0;16822;2021-10-14T07:03:55.118160Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.176791Z;2021-10-14T07:03:55.118160Z;2019-09-17T00:35:14.516448Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ar-SA/LEPToastLnc.resources.dll;file;20184;33206;2021-07-11T21:48:22Z;;;2785144255;1;0;47287796087490800;4096;40;0;0;2021-10-14T07:03:55.118160Z;2021-10-14T07:03:55.118160Z;2021-07-11T21:48:22Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/BR;directory;0;16822;2021-10-14T07:03:54.864311Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.176791Z;2021-10-14T07:03:54.864311Z;2019-09-17T00:35:14.422721Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/BR/PWMPDFV1.INI;file;1504;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206020;4096;8;0;0;2021-10-14T07:03:54.864311Z;2021-10-14T07:03:54.864311Z;2020-08-05T11:48:45.683471Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/BR/PWMRT32V.dll;file;364240;33206;2021-07-11T21:48:36Z;;;2785144255;1;0;21673573206817600;4096;712;0;0;2021-10-14T07:03:54.864311Z;2021-10-14T07:03:54.864311Z;2021-07-11T21:48:36Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/CR;directory;0;16822;2021-10-14T07:03:54.964549Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.176791Z;2021-10-14T07:03:54.964549Z;2019-09-17T00:35:14.453962Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/CR/PWMPDFV1.INI;file;1458;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206050;4096;8;0;0;2021-10-14T07:03:54.964549Z;2021-10-14T07:03:54.964549Z;2020-08-05T11:48:45.683471Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/CR/PWMRT32V.dll;file;359640;33206;2021-07-11T21:48:38Z;;;2785144255;1;0;78531518502371100;4096;704;0;0;2021-10-14T07:03:54.964549Z;2021-10-14T07:03:54.964549Z;2021-07-11T21:48:38Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/cs-CZ;directory;0;16822;2021-10-14T07:03:55.118160Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.176791Z;2021-10-14T07:03:55.118160Z;2019-09-17T00:35:14.516448Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/cs-CZ/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:47:50Z;;;2785144255;1;0;47569271064201500;4096;40;0;0;2021-10-14T07:03:55.118160Z;2021-10-14T07:03:55.118160Z;2021-07-11T21:47:50Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/CZ;directory;0;16822;2021-10-14T07:03:54.980170Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.176791Z;2021-10-14T07:03:54.980170Z;2019-09-17T00:35:14.469584Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/CZ/PWMPDFV1.INI;file;1456;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206050;4096;8;0;0;2021-10-14T07:03:54.980170Z;2021-10-14T07:03:54.980170Z;2020-08-05T11:48:45.683471Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/CZ/PWMRT32V.dll;file;358616;33206;2021-07-11T21:48:40Z;;;2785144255;1;0;60517119992889200;4096;704;0;0;2021-10-14T07:03:54.964549Z;2021-10-14T07:03:54.964549Z;2021-07-11T21:48:40Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/da-DK;directory;0;16822;2021-10-14T07:03:55.118160Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.176791Z;2021-10-14T07:03:55.118160Z;2019-09-17T00:35:14.516448Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/da-DK/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:47:52Z;;;2785144255;1;0;45598946227227200;4096;40;0;0;2021-10-14T07:03:55.118160Z;2021-10-14T07:03:55.133787Z;2021-07-11T21:47:52Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/de-DE;directory;0;16822;2021-10-14T07:03:55.133787Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.176791Z;2021-10-14T07:03:55.133787Z;2019-09-17T00:35:14.516448Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/de-DE/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:47:52Z;;;2785144255;1;0;57139420272364200;4096;40;0;0;2021-10-14T07:03:55.133787Z;2021-10-14T07:03:55.133787Z;2021-07-11T21:47:52Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/DK;directory;0;16822;2021-10-14T07:03:54.933306Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:54.933306Z;2019-09-17T00:35:14.453962Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/DK/PWMPDFV1.INI;file;1467;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206050;4096;8;0;0;2021-10-14T07:03:54.933306Z;2021-10-14T07:03:54.933306Z;2020-08-05T11:48:45.683471Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/DK/PWMRT32V.dll;file;362200;33206;2021-07-11T21:48:40Z;;;2785144255;1;0;37436171902615100;4096;712;0;0;2021-10-14T07:03:54.933306Z;2021-10-14T07:03:54.933306Z;2021-07-11T21:48:40Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/EasyResume.exe;file;2351320;33206;2021-07-11T21:47:18Z;;;2785144255;1;0;63613344736703300;4096;4600;0;0;2021-12-16T12:05:58.225580Z;2021-10-14T07:03:54.679429Z;2020-08-05T11:48:45.298148Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/el-GR;directory;0;16822;2021-10-14T07:03:55.133787Z;;;2785144255;1;0;1970324837784910;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:55.133787Z;2019-09-17T00:35:14.516448Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/el-GR/LEPToastLnc.resources.dll;file;20664;33206;2021-07-11T21:47:58Z;;;2785144255;1;0;44754521297095600;4096;48;0;0;2021-10-14T07:03:55.133787Z;2021-10-14T07:03:55.133787Z;2021-07-11T21:47:58Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/en-US;directory;0;16822;2021-10-14T07:03:55.149407Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:55.149407Z;2019-09-17T00:35:14.516448Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/en-US/LEPToastLnc.resources.dll;file;20184;33206;2021-07-11T21:48:34Z;;;2785144255;1;0;54606145481968800;4096;40;0;0;2021-10-14T07:03:55.149407Z;2021-10-14T07:03:55.149407Z;2021-07-11T21:48:34Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/es-ES;directory;0;16822;2021-10-14T07:03:55.149407Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:55.149407Z;2019-09-17T00:35:14.532113Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/es-ES/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:47:54Z;;;2785144255;1;0;66146619527105900;4096;40;0;0;2021-10-14T07:03:55.149407Z;2021-10-14T07:03:55.149407Z;2021-07-11T21:47:54Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/EventLogger.dll;file;90328;33206;2021-07-11T21:47:20Z;;;2785144255;1;0;67272519433941900;4096;184;0;0;2021-12-16T12:04:50.601748Z;2021-10-14T07:03:54.695051Z;2021-07-11T21:47:20Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/FI;directory;0;16822;2021-10-14T07:03:54.917680Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:54.917680Z;2019-09-17T00:35:14.438342Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/FI/PWMPDFV1.INI;file;1487;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206040;4096;8;0;0;2021-10-14T07:03:54.917680Z;2021-10-14T07:03:54.917680Z;2020-08-05T11:48:45.683471Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/FI/PWMRT32V.dll;file;362200;33206;2021-07-11T21:48:42Z;;;2785144255;1;0;47287796087487800;4096;712;0;0;2021-10-14T07:03:54.917680Z;2021-10-14T07:03:54.917680Z;2021-07-11T21:48:42Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/fi-FI;directory;0;16822;2021-10-14T07:03:55.149407Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:55.149407Z;2019-09-17T00:35:14.532113Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/fi-FI/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:47:54Z;;;2785144255;1;0;35184372088933800;4096;40;0;0;2021-10-14T07:03:55.149407Z;2021-10-14T07:03:55.149407Z;2021-07-11T21:47:54Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/FR;directory;0;16822;2021-10-14T07:03:54.817441Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:54.817441Z;2019-09-17T00:35:14.407098Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/FR/PWMPDFV1.INI;file;1513;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206000;4096;8;0;0;2021-10-14T07:03:54.817441Z;2021-10-14T07:03:54.817441Z;2020-08-05T11:48:45.683471Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/FR/PWMRT32V.dll;file;372440;33206;2021-07-11T21:48:46Z;;;2785144255;1;0;35747322042349300;4096;728;0;0;2021-10-14T07:03:54.810920Z;2021-10-14T07:03:54.810920Z;2021-07-11T21:48:46Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/fr-FR;directory;0;16822;2021-10-14T07:03:55.165029Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:55.165029Z;2019-09-17T00:35:14.532113Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/fr-FR/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:47:56Z;;;2785144255;1;0;50665495808019900;4096;40;0;0;2021-10-14T07:03:55.165029Z;2021-10-14T07:03:55.165029Z;2021-07-11T21:47:56Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/GK;directory;0;16822;2021-10-14T07:03:54.980170Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:54.980170Z;2019-09-17T00:35:14.469584Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/GK/PWMPDFV1.INI;file;1461;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206060;4096;8;0;0;2021-10-14T07:03:54.980170Z;2021-10-14T07:03:54.980170Z;2020-08-05T11:48:45.683471Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/GK/PWMRT32V.dll;file;365784;33206;2021-07-11T21:48:48Z;;;2785144255;1;0;54887620458676300;4096;720;0;0;2021-10-14T07:03:54.980170Z;2021-10-14T07:03:54.980170Z;2021-07-11T21:48:48Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/GR;directory;0;16822;2021-10-14T07:03:54.833067Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:54.833067Z;2019-09-17T00:35:14.407098Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/GR/PWMPDFV1.INI;file;1491;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206000;4096;8;0;0;2021-12-16T13:35:52.656474Z;2021-10-14T07:03:54.833067Z;2020-08-05T11:48:45.683471Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/GR/PWMRT32V.dll;file;371928;33206;2021-07-11T21:48:50Z;;;2785144255;1;0;58265320179201900;4096;728;0;0;2021-12-16T12:04:49.753681Z;2021-10-14T07:03:54.817441Z;2021-07-11T21:48:50Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/HE;directory;0;16822;2021-10-14T07:03:55.096031Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:55.096031Z;2019-09-17T00:35:14.500826Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/HE/PWMPDFV1.INI;file;1419;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206080;4096;8;0;0;2021-10-14T07:03:55.096031Z;2021-10-14T07:03:55.096031Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/HE/PWMRT32V.dll;file;348376;33206;2021-07-11T21:48:52Z;;;2785144255;1;0;51228445761439300;4096;688;0;0;2021-10-14T07:03:55.096031Z;2021-10-14T07:03:55.096031Z;2021-07-11T21:48:52Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/he-IL;directory;0;16822;2021-10-14T07:03:55.165029Z;;;2785144255;1;0;1970324837784920;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:55.165029Z;2019-09-17T00:35:14.532113Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/he-IL/LEPToastLnc.resources.dll;file;20184;33206;2021-07-11T21:48:02Z;;;2785144255;1;0;51791395714862600;4096;40;0;0;2021-10-14T07:03:55.165029Z;2021-10-14T07:03:55.165029Z;2021-07-11T21:48:02Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/hr-HR;directory;0;16822;2021-10-14T07:03:55.180651Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:55.180651Z;2019-09-17T00:35:14.532113Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/hr-HR/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:47:58Z;;;2785144255;1;0;42221246506700400;4096;40;0;0;2021-10-14T07:03:55.180651Z;2021-10-14T07:03:55.180651Z;2021-07-11T21:47:58Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/HU;directory;0;16822;2021-10-14T07:03:54.995791Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.177789Z;2021-10-14T07:03:54.995791Z;2019-09-17T00:35:14.469584Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/HU/PWMPDFV1.INI;file;1454;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206060;4096;8;0;0;2021-10-14T07:03:54.995791Z;2021-10-14T07:03:54.995791Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/HU/PWMRT32V.dll;file;363224;33206;2021-07-11T21:48:56Z;;;2785144255;1;0;51791395714859100;4096;712;0;0;2021-10-14T07:03:54.995791Z;2021-10-14T07:03:54.995791Z;2021-07-11T21:48:56Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/hu-HU;directory;0;16822;2021-10-14T07:03:55.180651Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:55.180651Z;2019-09-17T00:35:14.532113Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/hu-HU/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:48:00Z;;;2785144255;1;0;56576470318944000;4096;40;0;0;2021-10-14T07:03:55.180651Z;2021-10-14T07:03:55.180651Z;2021-07-11T21:48:00Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/InstHelper.dll;file;156888;33206;2021-07-11T21:47:22Z;;;2785144255;1;0;70368744177759000;4096;312;0;0;2021-10-14T07:03:54.663806Z;2021-10-14T07:03:54.663806Z;2021-07-11T21:47:22Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/IT;directory;0;16822;2021-10-14T07:03:54.848897Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:54.848897Z;2019-09-17T00:35:14.422721Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/IT/PWMPDFV1.INI;file;1524;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206010;4096;8;0;0;2021-10-14T07:03:54.848897Z;2021-10-14T07:03:54.848897Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/IT/PWMRT32V.dll;file;368856;33206;2021-07-11T21:48:56Z;;;2785144255;1;0;26740122787608600;4096;728;0;0;2021-10-14T07:03:54.833067Z;2021-10-14T07:03:54.833067Z;2021-07-11T21:48:56Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/it-IT;directory;0;16822;2021-10-14T07:03:55.180651Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:55.180651Z;2019-09-17T00:35:14.532113Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/it-IT/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:48:04Z;;;2785144255;1;0;52072870691573500;4096;40;0;0;2021-10-14T07:03:55.180651Z;2021-10-14T07:03:55.180651Z;2021-07-11T21:48:04Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ja-JP;directory;0;16822;2021-10-14T07:03:55.196273Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:55.196273Z;2019-09-17T00:35:14.532113Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ja-JP/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:48:06Z;;;2785144255;1;0;68398419340791700;4096;40;0;0;2021-10-14T07:03:55.196273Z;2021-10-14T07:03:55.196273Z;2021-07-11T21:48:06Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/JP;directory;0;16822;2021-10-14T07:03:54.795298Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:54.795298Z;2019-09-17T00:35:14.407098Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/JP/PWMPDFV1.INI;file;1401;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791205990;4096;8;0;0;2021-10-14T07:03:54.795298Z;2021-10-14T07:03:54.795298Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/JP/PWMRT32V.dll;file;337112;33206;2021-07-11T21:48:58Z;;;2785144255;1;0;18858823439709900;4096;664;0;0;2021-10-14T07:03:54.779677Z;2021-10-14T07:03:54.779677Z;2021-07-11T21:48:58Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ko-KR;directory;0;16822;2021-10-14T07:03:55.196273Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:55.196273Z;2019-09-17T00:35:14.547690Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ko-KR/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:48:06Z;;;2785144255;1;0;41095346599858100;4096;40;0;0;2021-10-14T07:03:55.196273Z;2021-10-14T07:03:55.196273Z;2021-07-11T21:48:06Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/KR;directory;0;16822;2021-10-14T07:03:54.895552Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:54.895552Z;2019-09-17T00:35:14.438342Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/KR/PWMPDFV1.INI;file;1436;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206020;4096;8;0;0;2021-10-14T07:03:54.895552Z;2021-10-14T07:03:54.895552Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/KR/PWMRT32V.dll;file;337112;33206;2021-07-11T21:49:00Z;;;2785144255;1;0;9851624184970310;4096;664;0;0;2021-10-14T07:03:54.895552Z;2021-10-14T07:03:54.895552Z;2021-07-11T21:49:00Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/Lenovo.ImController.EventLogging.dll;file;43960;33206;2021-07-11T21:47:24Z;;;2785144255;1;0;20547673299973100;4096;88;0;0;2021-10-14T07:03:54.717186Z;2021-10-14T07:03:54.717186Z;2021-07-11T21:47:24Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/Lenovo.Modern.CoreTypes.dll;file;207288;33206;2021-07-11T21:47:28Z;;;2785144255;1;0;23643898043790300;4096;408;0;0;2021-10-14T07:03:54.717186Z;2021-10-14T07:03:54.717186Z;2021-07-11T21:47:28Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/Lenovo.Modern.ImController.ImClient.dll;file;97720;33206;2021-07-11T21:47:30Z;;;2785144255;1;0;69242844270916600;4096;192;0;0;2021-10-14T07:03:54.717186Z;2021-10-14T07:03:54.717186Z;2021-07-11T21:47:30Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/Lenovo.Modern.Utilities.dll;file;134048;33206;2021-07-11T21:47:30Z;;;2785144255;1;0;32651097298531400;4096;264;0;0;2021-10-14T07:03:54.732814Z;2021-10-14T07:03:54.732814Z;2021-07-11T21:47:30Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/LEPToastLnc.exe;file;215736;33206;2021-07-11T21:47:34Z;;;2785144255;1;0;31243722414978300;4096;424;0;0;2021-10-14T07:03:54.732814Z;2021-10-14T07:03:54.732814Z;2021-07-11T21:47:34Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/nb-NO;directory;0;16822;2021-10-14T07:03:55.196273Z;;;2785144255;1;0;1970324837784930;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:55.196273Z;2019-09-17T00:35:14.547690Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/nb-NO/LEPToastLnc.resources.dll;file;20184;33206;2021-07-11T21:48:10Z;;;2785144255;1;0;56294995342233600;4096;40;0;0;2021-10-14T07:03:55.196273Z;2021-10-14T07:03:55.196273Z;2021-07-11T21:48:10Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/NE;directory;0;16822;2021-10-14T07:03:54.933306Z;;;2785144255;1;0;1688849861074280;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:54.933306Z;2019-09-17T00:35:14.438342Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/NE/PWMPDFV1.INI;file;1476;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206040;4096;8;0;0;2021-10-14T07:03:54.933306Z;2021-10-14T07:03:54.933306Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/NE/PWMRT32V.dll;file;368344;33206;2021-07-11T21:49:02Z;;;2785144255;1;0;60235645016178100;4096;720;0;0;2021-10-14T07:03:54.917680Z;2021-10-14T07:03:54.917680Z;2021-07-11T21:49:02Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/nl-NL;directory;0;16822;2021-10-14T07:03:55.211921Z;;;2785144255;1;0;1970324837784940;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:55.211921Z;2019-09-17T00:35:14.547690Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/nl-NL/LEPToastLnc.resources.dll;file;20184;33206;2021-07-11T21:48:08Z;;;2785144255;1;0;20547673299980300;4096;40;0;0;2021-10-14T07:03:55.211921Z;2021-10-14T07:03:55.211921Z;2021-07-11T21:48:08Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/NO;directory;0;16822;2021-10-14T07:03:54.948927Z;;;2785144255;1;0;1688849861074280;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:54.948927Z;2019-09-17T00:35:14.453962Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/NO/PWMPDFV1.INI;file;1460;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206050;4096;8;0;0;2021-10-14T07:03:54.948927Z;2021-10-14T07:03:54.948927Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/NO/PWMRT32V.dll;file;359128;33206;2021-07-11T21:49:02Z;;;2785144255;1;0;59954170039467600;4096;704;0;0;2021-10-14T07:03:54.948927Z;2021-10-14T07:03:54.948927Z;2021-07-11T21:49:02Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PL;directory;0;16822;2021-10-14T07:03:54.995791Z;;;2785144255;1;0;1970324837784940;4096;0;0;0;2021-12-16T13:36:01.178787Z;2021-10-14T07:03:54.995791Z;2019-09-17T00:35:14.469584Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PL/PWMPDFV1.INI;file;1460;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206060;4096;8;0;0;2021-10-14T07:03:54.995791Z;2021-10-14T07:03:54.995791Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PL/PWMRT32V.dll;file;362696;33206;2021-07-11T21:49:06Z;;;2785144255;1;0;36310271995773200;4096;712;0;0;2021-10-14T07:03:54.995791Z;2021-10-14T07:03:54.995791Z;2021-07-11T21:49:06Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/pl-PL;directory;0;16822;2021-10-14T07:03:55.218426Z;;;2785144255;1;0;1970324837784940;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:55.218426Z;2019-09-17T00:35:14.547690Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/pl-PL/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:48:12Z;;;2785144255;1;0;68961369294213200;4096;40;0;0;2021-10-14T07:03:55.218426Z;2021-10-14T07:03:55.218426Z;2021-07-11T21:48:12Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PowerBaseModule.man;file;5730;33206;2020-10-13T00:44:30Z;;;2785144255;1;0;1970324837071800;4096;16;0;0;2021-10-14T07:03:56.452619Z;2021-10-14T07:03:54.710680Z;2020-10-13T00:44:30Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PowerMgr.exe;file;112824;33206;2021-07-11T21:47:36Z;;;2785144255;1;0;38562071809452100;4096;224;0;0;2021-12-16T12:04:46.639026Z;2021-10-14T07:03:54.616938Z;2021-07-11T21:47:36Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PowerMgrInst.exe;file;62136;33206;2021-07-11T21:47:38Z;;;2785144255;1;0;55450570412094400;4096;128;0;0;2021-10-14T07:03:54.695051Z;2021-10-14T07:03:54.695051Z;2021-07-11T21:47:38Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PowerMgrUninstall.xml;file;4010;33206;2020-10-13T00:44:30Z;;;2785144255;1;0;1970324837071780;4096;8;0;0;2021-10-14T07:03:54.616938Z;2021-10-14T07:03:54.616938Z;2020-10-13T00:44:30Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PT;directory;0;16822;2021-10-14T07:03:54.964549Z;;;2785144255;1;0;1970324837784940;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:54.964549Z;2019-09-17T00:35:14.453962Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PT/PWMPDFV1.INI;file;1508;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206050;4096;8;0;0;2021-10-14T07:03:54.948927Z;2021-10-14T07:03:54.964549Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PT/PWMRT32V.dll;file;365768;33206;2021-07-11T21:49:08Z;;;2785144255;1;0;85568392920137400;4096;720;0;0;2021-10-14T07:03:54.948927Z;2021-10-14T07:03:54.948927Z;2021-07-11T21:49:08Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/pt-BR;directory;0;16822;2021-10-14T07:03:55.218426Z;;;2785144255;1;0;1970324837784940;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:55.218426Z;2019-09-17T00:35:14.547690Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/pt-BR/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:47:48Z;;;2785144255;1;0;66428094503817300;4096;40;0;0;2021-10-14T07:03:55.218426Z;2021-10-14T07:03:55.218426Z;2021-07-11T21:47:48Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/pt-PT;directory;0;16822;2021-10-14T07:03:55.218426Z;;;2785144255;1;0;1970324837784940;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:55.218426Z;2019-09-17T00:35:14.547690Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/pt-PT/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:48:12Z;;;2785144255;1;0;64457769666842800;4096;40;0;0;2021-10-14T07:03:55.218426Z;2021-10-14T07:03:55.218426Z;2021-07-11T21:48:12Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PWMIF32V.dll;file;732856;33206;2021-07-11T21:47:40Z;;;2785144255;1;0;59391220086043400;4096;1432;0;0;2021-12-16T12:04:50.407046Z;2021-10-14T07:03:54.663806Z;2020-08-05T11:48:45.436134Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PWMPDFV2.INI;file;27733;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791205980;4096;56;0;0;2021-12-16T13:35:52.656474Z;2021-10-14T07:03:54.732814Z;2020-08-05T11:48:45.482997Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/PWMTR32V.dll;file;5410488;33206;2021-07-11T21:47:42Z;;;2785144255;1;0;47006321110774400;4096;10568;0;0;2021-12-16T12:04:47.644296Z;2021-10-14T07:03:54.648185Z;2021-07-11T21:47:42Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/RO;directory;0;16822;2021-10-14T07:03:55.017920Z;;;2785144255;1;0;1970324837784940;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:55.017920Z;2019-09-17T00:35:14.485205Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/RO/PWMPDFV1.INI;file;1446;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206060;4096;8;0;0;2021-10-14T07:03:55.017920Z;2021-10-14T07:03:55.017920Z;2020-08-05T11:48:45.699092Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/RO/PWMRT32V.dll;file;361160;33206;2021-07-11T21:49:10Z;;;2785144255;1;0;40813871623143700;4096;712;0;0;2021-10-14T07:03:55.017920Z;2021-10-14T07:03:55.017920Z;2021-07-11T21:49:10Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ro-RO;directory;0;16822;2021-10-14T07:03:55.234051Z;;;2785144255;1;0;1970324837784940;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:55.234051Z;2019-09-17T00:35:14.547690Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ro-RO/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:48:14Z;;;2785144255;1;0;33495522228670600;4096;40;0;0;2021-10-14T07:03:55.234051Z;2021-10-14T07:03:55.234051Z;2021-07-11T21:48:14Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/RU;directory;0;16822;2021-10-14T07:03:55.033545Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:55.033545Z;2019-09-17T00:35:14.485205Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/RU/PWMPDFV1.INI;file;1463;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206070;4096;8;0;0;2021-10-14T07:03:55.033545Z;2021-10-14T07:03:55.033545Z;2020-08-05T11:48:45.714713Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/RU/PWMRT32V.dll;file;362696;33206;2021-07-11T21:49:10Z;;;2785144255;1;0;52354345668280800;4096;712;0;0;2021-10-14T07:03:55.033545Z;2021-10-14T07:03:55.033545Z;2021-07-11T21:49:10Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ru-RU;directory;0;16822;2021-10-14T07:03:55.234051Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:55.234051Z;2019-09-17T00:35:14.563344Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/ru-RU/LEPToastLnc.resources.dll;file;20696;33206;2021-07-11T21:48:22Z;;;2785144255;1;0;30117822508143000;4096;48;0;0;2021-10-14T07:03:55.234051Z;2021-10-14T07:03:55.234051Z;2021-07-11T21:48:22Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SC;directory;0;16822;2021-10-14T07:03:54.795298Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:54.795298Z;2019-09-17T00:35:14.407098Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SC/PWMPDFV1.INI;file;1395;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206000;4096;8;0;0;2021-10-14T07:03:54.795298Z;2021-10-14T07:03:54.795298Z;2020-08-05T11:48:45.714713Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SC/PWMRT32V.dll;file;327368;33206;2021-07-11T21:49:12Z;;;2785144255;1;0;33214047251953400;4096;640;0;0;2021-10-14T07:03:54.795298Z;2021-10-14T07:03:54.795298Z;2021-07-11T21:49:12Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SH;directory;0;16822;2021-10-14T07:03:55.033545Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:55.033545Z;2019-09-17T00:35:14.485205Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SH/PWMPDFV1.INI;file;1456;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206070;4096;8;0;0;2021-10-14T07:03:55.033545Z;2021-10-14T07:03:55.033545Z;2020-08-05T11:48:45.714713Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SH/PWMRT32V.dll;file;360648;33206;2021-07-11T21:49:12Z;;;2785144255;1;0;58265320179204700;4096;712;0;0;2021-10-14T07:03:55.033545Z;2021-10-14T07:03:55.033545Z;2021-07-11T21:49:12Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SK;directory;0;16822;2021-10-14T07:03:55.049232Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.179784Z;2021-10-14T07:03:55.049232Z;2019-09-17T00:35:14.485205Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SK/PWMPDFV1.INI;file;1458;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206070;4096;8;0;0;2021-10-14T07:03:55.049232Z;2021-10-14T07:03:55.049232Z;2020-08-05T11:48:45.714713Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SK/PWMRT32V.dll;file;360136;33206;2021-07-11T21:49:14Z;;;2785144255;1;0;58265320179204900;4096;704;0;0;2021-10-14T07:03:55.049232Z;2021-10-14T07:03:55.049232Z;2021-07-11T21:49:14Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/sk-SK;directory;0;16822;2021-10-14T07:03:55.234051Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:55.234051Z;2019-09-17T00:35:14.563344Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/sk-SK/LEPToastLnc.resources.dll;file;20184;33206;2021-07-11T21:48:28Z;;;2785144255;1;0;62768919806579200;4096;40;0;0;2021-10-14T07:03:55.234051Z;2021-10-14T07:03:55.234051Z;2021-07-11T21:48:28Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SL;directory;0;16822;2021-10-14T07:03:55.064788Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:55.064788Z;2019-09-17T00:35:14.500826Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SL/PWMPDFV1.INI;file;1446;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206070;4096;8;0;0;2021-10-14T07:03:55.064788Z;2021-10-14T07:03:55.064788Z;2020-08-05T11:48:45.721217Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SL/PWMRT32V.dll;file;359624;33206;2021-07-11T21:49:14Z;;;2785144255;1;0;37436171902616600;4096;704;0;0;2021-10-14T07:03:55.049232Z;2021-10-14T07:03:55.049232Z;2021-07-11T21:49:14Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/sl-SI;directory;0;16822;2021-10-14T07:03:55.249699Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:55.249699Z;2019-09-17T00:35:14.563344Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/sl-SI/LEPToastLnc.resources.dll;file;20184;33206;2021-07-11T21:48:26Z;;;2785144255;1;0;29273397578011200;4096;40;0;0;2021-10-14T07:03:55.249699Z;2021-10-14T07:03:55.249699Z;2021-07-11T21:48:26Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SmartShutdown.exe;file;222904;33206;2021-07-11T21:47:44Z;;;2785144255;1;0;52072870691566500;4096;440;0;0;2021-10-14T07:03:54.679429Z;2021-10-14T07:03:54.695051Z;2021-07-11T21:47:44Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SP;directory;0;16822;2021-10-14T07:03:54.864311Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:54.864311Z;2019-09-17T00:35:14.422721Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SP/PWMPDFV1.INI;file;1490;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206010;4096;8;0;0;2021-10-14T07:03:54.864311Z;2021-10-14T07:03:54.864311Z;2020-08-05T11:48:45.721217Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SP/PWMRT32V.dll;file;368328;33206;2021-07-11T21:49:16Z;;;2785144255;1;0;43065671436827200;4096;720;0;0;2021-10-14T07:03:54.848897Z;2021-10-14T07:03:54.848897Z;2021-07-11T21:49:16Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/sr-Latn-RS;directory;0;16822;2021-10-14T07:03:55.249699Z;;;2785144255;1;0;1970324837784950;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:55.249699Z;2019-09-17T00:35:14.563344Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/sr-Latn-RS/LEPToastLnc.resources.dll;file;20160;33206;2021-07-11T21:48:18Z;;;2785144255;1;0;43347146413544100;4096;40;0;0;2021-10-14T07:03:55.249699Z;2021-10-14T07:03:55.249699Z;2021-07-11T21:48:18Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SV;directory;0;16822;2021-10-14T07:03:54.911175Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:54.911175Z;2019-09-17T00:35:14.438342Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SV/PWMPDFV1.INI;file;1454;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206030;4096;8;0;0;2021-10-14T07:03:54.911175Z;2021-10-14T07:03:54.911175Z;2020-08-05T11:48:45.721217Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/SV/PWMRT32V.dll;file;360648;33206;2021-07-11T21:49:16Z;;;2785144255;1;0;50384020831304800;4096;712;0;0;2021-10-14T07:03:54.895552Z;2021-10-14T07:03:54.895552Z;2021-07-11T21:49:16Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/sv-SE;directory;0;16822;2021-10-14T07:03:55.249699Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:55.249699Z;2019-09-17T00:35:14.563344Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/sv-SE/LEPToastLnc.resources.dll;file;20184;33206;2021-07-11T21:48:24Z;;;2785144255;1;0;45317471250518800;4096;40;0;0;2021-10-14T07:03:55.249699Z;2021-10-14T07:03:55.249699Z;2021-07-11T21:48:24Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/TC;directory;0;16822;2021-10-14T07:03:54.879931Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:54.879931Z;2019-09-17T00:35:14.422721Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/TC/PWMPDFV1.INI;file;1397;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206020;4096;8;0;0;2021-10-14T07:03:54.879931Z;2021-10-14T07:03:54.879931Z;2020-08-05T11:48:45.721217Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/TC/PWMRT32V.dll;file;327368;33206;2021-07-11T21:49:18Z;;;2785144255;1;0;36310271995771900;4096;640;0;0;2021-10-14T07:03:54.879931Z;2021-10-14T07:03:54.879931Z;2021-07-11T21:49:18Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/tr-TR;directory;0;16822;2021-10-14T07:03:55.265296Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:55.265296Z;2019-09-17T00:35:14.563344Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/tr-TR/LEPToastLnc.resources.dll;file;20176;33206;2021-07-11T21:48:30Z;;;2785144255;1;0;44473046320386800;4096;40;0;0;2021-10-14T07:03:55.265296Z;2021-10-14T07:03:55.265296Z;2021-07-11T21:48:30Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/TU;directory;0;16822;2021-10-14T07:03:55.064788Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:55.064788Z;2019-09-17T00:35:14.500826Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/TU/PWMPDFV1.INI;file;1453;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206080;4096;8;0;0;2021-10-14T07:03:55.064788Z;2021-10-14T07:03:55.064788Z;2020-08-05T11:48:45.721217Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/TU/PWMRT32V.dll;file;358600;33206;2021-07-11T21:49:18Z;;;2785144255;1;0;43910096366961800;4096;704;0;0;2021-10-14T07:03:55.064788Z;2021-10-14T07:03:55.064788Z;2021-07-11T21:49:18Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/UA;directory;0;16822;2021-10-14T07:03:55.118160Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:55.118160Z;2019-09-17T00:35:14.516448Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/UA/PWMPDFV1.INI;file;1509;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791206080;4096;8;0;0;2021-10-14T07:03:55.118160Z;2021-10-14T07:03:55.118160Z;2020-08-05T11:48:45.721217Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/UA/PWMRT32V.dll;file;368840;33206;2021-07-11T21:49:22Z;;;2785144255;1;0;36591746972485600;4096;728;0;0;2021-10-14T07:03:55.111651Z;2021-10-14T07:03:55.111651Z;2021-07-11T21:49:22Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/uk-UA;directory;0;16822;2021-10-14T07:03:55.265296Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.180783Z;2021-10-14T07:03:55.265296Z;2019-09-17T00:35:14.563344Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/uk-UA/LEPToastLnc.resources.dll;file;20664;33206;2021-07-11T21:48:32Z;;;2785144255;1;0;56013520365523700;4096;48;0;0;2021-10-14T07:03:55.265296Z;2021-10-14T07:03:55.265296Z;2021-07-11T21:48:32Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/US;directory;0;16822;2021-10-14T07:03:54.779677Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.181779Z;2021-10-14T07:03:54.779677Z;2019-09-17T00:35:14.391477Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/US/PWMPDFV1.INI;file;1453;33206;2020-05-18T22:54:16Z;;;2785144255;1;0;2533274791205990;4096;8;0;0;2021-10-14T07:03:54.779677Z;2021-10-14T07:03:54.779677Z;2020-08-05T11:48:45.721217Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/US/PWMRT32V.dll;file;359624;33206;2021-07-11T21:49:22Z;;;2785144255;1;0;30962247438268000;4096;704;0;0;2021-10-14T07:03:54.764053Z;2021-10-14T07:03:54.764053Z;2021-07-11T21:49:22Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/zh-CN;directory;0;16822;2021-10-14T07:03:55.265296Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.181779Z;2021-10-14T07:03:55.265296Z;2019-09-17T00:35:14.578932Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/zh-CN/LEPToastLnc.resources.dll;file;20152;33206;2021-07-11T21:47:48Z;;;2785144255;1;0;32369622321828700;4096;40;0;0;2021-10-14T07:03:55.265296Z;2021-10-14T07:03:55.265296Z;2021-07-11T21:47:48Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/zh-TW;directory;0;16822;2021-10-14T07:03:55.280918Z;;;2785144255;1;0;1970324837784960;4096;0;0;0;2021-12-16T13:36:01.181779Z;2021-10-14T07:03:55.280918Z;2019-09-17T00:35:14.578932Z +C:/Windows/SysWOW64/Lenovo/PowerMgr/zh-TW/LEPToastLnc.resources.dll;file;20184;33206;2021-07-11T21:48:30Z;;;2785144255;1;0;52917295621706600;4096;40;0;0;2021-10-14T07:03:55.280918Z;2021-10-14T07:03:55.280918Z;2021-07-11T21:48:30Z +C:/Windows/SysWOW64/libmfxhw32.dll;file;257056;33206;2021-09-12T23:09:08Z;;;2785144255;2;0;3940649674230270;4096;504;0;0;2021-12-16T13:35:39.529612Z;2021-12-11T15:59:53.982050Z;2021-10-31T08:18:41.302054Z +C:/Windows/SysWOW64/license.rtf;file;159908;33206;2019-03-19T04:46:33.350165Z;;;2785144255;1;0;281474976742299;4096;320;0;0;2021-12-16T13:35:39.543547Z;2020-11-03T12:52:03.269473Z;2020-11-03T12:52:02.394538Z +C:/Windows/SysWOW64/LicenseManager.dll;file;873296;33206;2021-04-17T10:34:34.874049Z;;;2785144255;2;0;844424930951391;4096;1712;0;0;2021-12-16T13:35:39.561500Z;2021-11-11T11:29:33.753227Z;2021-04-17T10:34:34.796713Z +C:/Windows/SysWOW64/LicenseManagerApi.dll;file;74240;33206;2021-04-17T10:34:34.343461Z;;;2785144255;2;0;844424930951387;4096;152;0;0;2021-12-16T13:35:39.576459Z;2021-11-11T11:29:33.732282Z;2021-04-17T10:34:34.333451Z +C:/Windows/SysWOW64/Licenses;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;7881299348219160;4096;0;0;0;2021-12-16T13:36:01.181779Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Licenses/neutral;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;7318349394797850;4096;0;0;0;2021-12-16T13:36:01.181779Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Licenses/neutral/OEM;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;8162774324929820;4096;0;0;0;2021-12-16T13:36:01.181779Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/Licenses/neutral/OEM/Professional;directory;0;16822;2021-10-16T08:02:15.603229Z;;;2785144255;1;0;6473924464665880;4096;0;0;0;2021-12-16T13:36:01.181779Z;2021-10-16T08:02:15.603229Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/Licenses/neutral/OEM/Professional/de-license.rtf;file;116321;33206;2021-10-16T00:20:52.731919Z;;;2785144255;2;0;281474977856388;4096;232;0;0;2021-11-11T11:27:28.970356Z;2021-12-16T12:06:18.231712Z;2021-10-16T00:20:52.731919Z +C:/Windows/SysWOW64/Licenses/neutral/OEM/Professional/license.rtf;file;116321;33206;2021-10-16T00:20:52.731919Z;;;2785144255;2;0;281474977856387;4096;232;0;0;2021-11-11T11:27:28.966367Z;2021-12-16T12:06:18.231712Z;2021-10-16T00:20:52.731919Z +C:/Windows/SysWOW64/Licenses/neutral/Volume;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;7036874418087200;4096;0;0;0;2021-12-16T13:36:01.181779Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/Licenses/neutral/Volume/Professional;directory;0;16822;2019-12-07T14:54:52.672191Z;;;2785144255;1;0;7318349394797850;4096;0;0;0;2021-12-16T13:36:01.181779Z;2020-11-03T12:35:52.826114Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/Licenses/neutral/Volume/Professional/license.rtf;file;539;33206;2019-12-07T09:10:28.788955Z;;;2785144255;2;0;14355223813013000;4096;8;0;0;2021-11-11T11:27:29.766333Z;2021-12-16T12:06:18.231712Z;2019-12-07T09:10:28.788955Z +C:/Windows/SysWOW64/Licenses/neutral/_Default;directory;0;16822;2019-12-07T14:54:52.672191Z;;;2785144255;1;0;6755399441376540;4096;0;0;0;2021-12-16T13:36:01.181779Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Licenses/neutral/_Default/Professional;directory;0;16822;2021-10-16T08:02:15.587175Z;;;2785144255;1;0;5348024557823260;4096;0;0;0;2021-12-16T13:36:01.181779Z;2021-10-16T08:02:15.587175Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/Licenses/neutral/_Default/Professional/de-license.rtf;file;116321;33206;2021-10-16T00:20:52.716299Z;;;2785144255;2;0;281474977856384;4096;232;0;0;2021-11-11T11:27:26.438472Z;2021-12-16T12:06:18.227712Z;2021-10-16T00:20:52.716299Z +C:/Windows/SysWOW64/Licenses/neutral/_Default/Professional/license.rtf;file;116321;33206;2021-10-16T00:20:52.716299Z;;;2785144255;2;0;281474977856383;4096;232;0;0;2021-11-11T11:27:26.434213Z;2021-12-16T12:06:18.231712Z;2021-10-16T00:20:52.700644Z +C:/Windows/SysWOW64/LicensingDiagSpp.dll;file;287744;33206;2021-02-11T15:05:11.924123Z;;;2785144255;2;0;562949954318873;4096;568;0;0;2021-12-16T13:35:39.590458Z;2021-11-11T11:29:33.728293Z;2021-02-11T15:05:11.908534Z +C:/Windows/SysWOW64/LicensingWinRT.dll;file;646472;33206;2021-10-03T19:02:00.871708Z;;;2785144255;2;0;1688849861186630;4096;1264;0;0;2021-12-16T13:35:39.609387Z;2021-11-11T11:29:33.717322Z;2021-10-03T19:02:00.836370Z +C:/Windows/SysWOW64/licmgr10.dll;file;26624;33206;2019-12-07T09:10:00.537776Z;;;2785144255;2;0;1125899907630800;4096;56;0;0;2021-12-16T13:35:39.623336Z;2021-11-11T11:29:34.229083Z;2019-12-07T09:10:00.537776Z +C:/Windows/SysWOW64/linkinfo.dll;file;23552;33206;2020-11-03T12:45:54.306229Z;;;2785144255;2;0;562949954398516;4096;48;0;0;2021-12-16T13:35:39.624332Z;2021-11-11T11:29:33.809077Z;2020-11-03T12:45:54.306229Z +C:/Windows/SysWOW64/loadperf.dll;file;100864;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907639090;4096;200;0;0;2021-12-16T13:35:39.636301Z;2021-11-11T11:29:33.794117Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/locale.nls;file;819496;33206;2019-12-07T09:08:48.551744Z;;;2785144255;4;0;20266198323597800;4096;1608;0;0;2021-12-16T13:35:39.637298Z;2020-11-03T12:35:14.959454Z;2019-12-07T09:08:48.535053Z +C:/Windows/SysWOW64/localsec.dll;file;438272;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907627950;4096;856;0;0;2021-12-16T13:35:39.658281Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/LocationApi.dll;file;323584;33206;2021-01-15T09:27:38.020292Z;;;2785144255;2;0;16325548649840600;4096;632;0;0;2021-12-16T13:35:39.675231Z;2021-11-11T11:29:34.218116Z;2021-01-15T09:27:38.020292Z +C:/Windows/SysWOW64/LocationFrameworkInternalPS.dll;file;45056;33206;2019-12-07T09:09:27.552640Z;;;2785144255;2;0;1125899907638430;4096;88;0;0;2021-12-16T13:35:39.689189Z;2021-11-11T11:29:33.799135Z;2019-12-07T09:09:27.552640Z +C:/Windows/SysWOW64/LocationFrameworkPS.dll;file;27960;33206;2019-12-07T09:09:27.552640Z;;;2785144255;2;0;1125899907636240;4096;56;0;0;2021-12-16T13:35:39.702630Z;2021-11-11T11:29:33.791164Z;2019-12-07T09:09:27.552640Z +C:/Windows/SysWOW64/LockAppBroker.dll;file;354816;33206;2021-03-11T12:12:19.363944Z;;;2785144255;2;0;844424931103395;4096;696;0;0;2021-12-16T13:35:39.720582Z;2021-11-11T11:29:30.981483Z;2021-03-11T12:12:19.357439Z +C:/Windows/SysWOW64/LockScreenData.dll;file;249856;33206;2021-01-15T09:27:21.162779Z;;;2785144255;2;0;14355223812863100;4096;488;0;0;2021-12-16T13:35:39.736541Z;2021-11-11T11:29:30.953600Z;2021-01-15T09:27:21.162779Z +C:/Windows/SysWOW64/lodctr.exe;file;43008;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907635780;4096;88;0;0;2021-12-16T13:35:39.747511Z;2021-11-11T11:29:33.787167Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/logagent.exe;file;88064;33206;2021-01-15T09:27:48.490056Z;;;2785144255;2;0;14918173766288600;4096;176;0;0;2021-12-16T13:35:39.773478Z;2021-11-11T11:29:32.502705Z;2021-01-15T09:27:48.490056Z +C:/Windows/SysWOW64/LogFiles;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;4785074604401950;4096;0;0;0;2021-12-16T13:36:01.182775Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/LogFiles/LSA;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;3096224744138020;4096;0;0;0;2021-12-16T13:36:01.182775Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/LogFiles/SAM;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;3659174697559330;4096;0;0;0;2021-12-16T13:36:01.182775Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/LogFiles/Windows Portable Devices;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;4785074604401960;4096;0;0;0;2021-12-16T13:36:01.182775Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/loghours.dll;file;64000;33206;2019-12-07T09:10:04.069297Z;;;2785144255;2;0;1125899907630510;4096;128;0;0;2021-12-16T13:35:39.788401Z;2021-11-11T11:29:34.237030Z;2019-12-07T09:10:04.069297Z +C:/Windows/SysWOW64/logman.exe;file;98816;33206;2020-11-03T12:46:02.694988Z;;;2785144255;2;0;562949954400522;4096;200;0;0;2021-12-16T13:35:39.800961Z;2021-11-11T11:29:34.234037Z;2020-11-03T12:46:02.694988Z +C:/Windows/SysWOW64/logoncli.dll;file;190048;33206;2020-11-11T20:25:29.945328Z;;;2785144255;2;0;844424931073660;4096;376;0;0;2021-12-16T13:35:39.802929Z;2021-11-11T11:29:33.759211Z;2020-11-11T20:25:29.930564Z +C:/Windows/SysWOW64/lpk.dll;file;2560;33206;2021-11-11T11:29:00.548197Z;;;2785144255;2;0;281474977879229;4096;8;0;0;2021-12-16T13:35:39.802929Z;2021-11-11T11:38:53.314574Z;2021-11-11T11:29:00.547202Z +C:/Windows/SysWOW64/lsmproxy.dll;file;24576;33206;2019-12-07T09:10:04.225445Z;;;2785144255;2;0;1125899907628180;4096;48;0;0;2021-12-16T13:35:39.814896Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:10:04.225445Z +C:/Windows/SysWOW64/lt-LT;directory;0;16822;2021-05-18T17:31:36.353194Z;;;2785144255;1;0;3377699720848680;4096;0;0;0;2021-12-16T13:36:01.182775Z;2021-05-18T17:31:36.353194Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/lt-LT/comctl32.dll.mui;file;6144;33206;2021-05-18T10:59:27.733077Z;;;2785144255;2;0;1688849861151840;4096;16;0;0;2021-05-18T17:31:36.353194Z;2021-05-18T17:31:36.353194Z;2021-05-18T10:59:27.730699Z +C:/Windows/SysWOW64/lt-LT/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619340;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/lt-LT/SyncRes.dll.mui;file;29696;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648590;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.435552Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/lt-LT/windows.ui.xaml.dll.mui;file;18432;33206;2021-05-18T10:59:03.688639Z;;;2785144255;4;0;2533274791283030;4096;40;0;0;2021-05-18T17:31:35.520054Z;2021-05-18T17:31:36.353194Z;2021-05-18T10:59:03.687499Z +C:/Windows/SysWOW64/luainstall.dll;file;55096;33206;2021-01-15T09:27:09.525559Z;;;2785144255;2;0;3659174697820290;4096;112;0;0;2021-12-16T13:35:39.829885Z;2021-11-11T11:29:33.709343Z;2021-01-15T09:27:09.525559Z +C:/Windows/SysWOW64/luiapi.dll;file;28672;33206;2019-12-07T09:09:11.817330Z;;;2785144255;2;0;1125899907637130;4096;56;0;0;2021-12-16T13:35:39.842849Z;2021-11-11T11:29:33.706351Z;2019-12-07T09:09:11.817330Z +C:/Windows/SysWOW64/lusrmgr.msc;file;144998;33206;2019-12-07T09:09:13.739223Z;;;2785144255;2;0;1125899907637410;4096;288;0;0;2021-12-16T13:35:39.848806Z;2020-12-12T13:07:52.001462Z;2019-12-07T09:09:13.739223Z +C:/Windows/SysWOW64/lv-LV;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;6192449487955240;4096;0;0;0;2021-12-16T13:36:01.182775Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/lv-LV/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;5348024558172280;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:19.973906Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/lv-LV/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619310;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.439645Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/lv-LV/SyncRes.dll.mui;file;30208;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648620;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/lv-LV/windows.ui.xaml.dll.mui;file;17408;33206;2021-06-10T14:01:34.406110Z;;;2785144255;4;0;281474977764493;4096;40;0;0;2021-06-10T14:01:41.669260Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:34.406110Z +C:/Windows/SysWOW64/lz32.dll;file;2560;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;1125899907637870;4096;8;0;0;2021-12-16T13:35:39.852795Z;2021-11-11T11:29:33.783178Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/l_intl.nls;file;9926;33206;2019-12-07T09:08:49.269518Z;;;2785144255;4;0;1125899907514260;4096;24;0;0;2021-12-16T13:35:39.370750Z;2020-11-03T12:35:20.551896Z;2019-12-07T09:08:49.269518Z +C:/Windows/SysWOW64/Magnification.dll;file;42496;33206;2019-12-07T09:09:21.739970Z;;;2785144255;2;0;1125899907636980;4096;88;0;0;2021-12-16T13:35:39.869751Z;2021-11-11T11:29:33.772176Z;2019-12-07T09:09:21.739970Z +C:/Windows/SysWOW64/Magnify.exe;file;518656;33206;2021-10-16T00:21:17.252436Z;;;2785144255;2;0;281474977857377;4096;1016;0;0;2021-12-16T13:35:39.900005Z;2021-11-11T11:29:33.770182Z;2021-10-16T00:21:17.236780Z +C:/Windows/SysWOW64/MailContactsCalendarSync;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;3096224744138020;4096;0;0;0;2021-12-16T13:36:01.182775Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:53:40.610694Z +C:/Windows/SysWOW64/MailContactsCalendarSync/LiveDomainList.txt;file;33460;33206;2019-04-18T18:47:00Z;;;2785144255;2;0;1125899907648740;4096;72;0;0;2021-02-22T08:01:24.220464Z;2021-02-22T08:01:24.220464Z;2019-12-07T14:53:38.016783Z +C:/Windows/SysWOW64/main.cpl;file;57856;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907639370;4096;120;0;0;2021-12-16T13:35:39.914929Z;2021-11-11T11:29:33.812069Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/makecab.exe;file;68096;33206;2019-12-07T09:09:25.333427Z;;;2785144255;2;0;1125899907637150;4096;136;0;0;2021-12-16T13:35:39.927896Z;2021-11-11T11:29:33.769184Z;2019-12-07T09:09:25.333427Z +C:/Windows/SysWOW64/MapConfiguration.dll;file;427520;33206;2021-01-15T09:27:14.952794Z;;;2785144255;2;0;24488322974438200;4096;840;0;0;2021-12-16T13:35:39.943853Z;2021-11-11T11:29:33.734277Z;2021-01-15T09:27:14.937170Z +C:/Windows/SysWOW64/MapControlCore.dll;file;187904;33206;2019-12-07T09:09:17.927329Z;;;2785144255;2;0;1125899907637810;4096;368;0;0;2021-12-16T13:35:39.961806Z;2021-11-11T11:29:33.731285Z;2019-12-07T09:09:17.927329Z +C:/Windows/SysWOW64/MapControlStringsRes.dll;file;2560;33206;2019-12-07T09:09:17.927329Z;;;2785144255;2;0;1125899907639490;4096;8;0;0;2021-12-16T13:35:39.964799Z;2021-11-11T11:29:33.736273Z;2019-12-07T09:09:17.927329Z +C:/Windows/SysWOW64/MapGeocoder.dll;file;1987072;33206;2021-01-15T09:27:15.062111Z;;;2785144255;2;0;19140298416935800;4096;3888;0;0;2021-12-16T13:35:39.985740Z;2021-11-11T11:29:33.733279Z;2021-01-15T09:27:15.030896Z +C:/Windows/SysWOW64/mapi32.dll;file;127488;33206;2020-11-03T12:45:46.495519Z;;;2785144255;2;0;3940649674923070;4096;256;0;0;2021-12-16T13:35:40.007191Z;2021-11-11T11:29:33.718319Z;2020-11-03T12:45:46.495519Z +C:/Windows/SysWOW64/mapistub.dll;file;127488;33206;2020-11-03T12:45:46.495519Z;;;2785144255;2;0;3940649674923070;4096;256;0;0;2021-12-16T13:35:40.027136Z;2021-11-11T11:29:33.717322Z;2020-11-03T12:45:46.495519Z +C:/Windows/SysWOW64/MapRouter.dll;file;2433024;33206;2021-10-03T19:02:11.230121Z;;;2785144255;2;0;1688849861186910;4096;4752;0;0;2021-12-16T13:35:40.067796Z;2021-11-11T11:29:33.743254Z;2021-10-03T19:02:11.072644Z +C:/Windows/SysWOW64/MapsBtSvc.dll;file;95744;33206;2021-01-15T09:27:14.952794Z;;;2785144255;2;0;16607023626539900;4096;192;0;0;2021-12-16T13:35:40.082606Z;2021-11-11T11:29:33.736273Z;2021-01-15T09:27:14.952794Z +C:/Windows/SysWOW64/mavinject.exe;file;147280;33206;2021-10-03T19:03:05.819756Z;;;2785144255;2;0;1688849861187760;4096;288;0;0;2021-12-16T13:35:40.109529Z;2021-11-11T11:29:32.343215Z;2021-10-03T19:03:05.808603Z +C:/Windows/SysWOW64/MbaeApi.dll;file;738816;33206;2021-01-15T09:27:15.155870Z;;;2785144255;2;0;18577348463514500;4096;1448;0;0;2021-12-16T13:35:40.127079Z;2021-11-11T11:29:34.228087Z;2021-01-15T09:27:15.140249Z +C:/Windows/SysWOW64/MbaeApiPublic.dll;file;930304;33206;2021-07-07T12:58:44.705352Z;;;2785144255;2;0;281474977790755;4096;1824;0;0;2021-12-16T13:35:40.144253Z;2021-11-11T11:29:34.217084Z;2021-07-07T12:58:44.689737Z +C:/Windows/SysWOW64/mbsmsapi.dll;file;475648;33206;2021-01-15T09:27:15.171491Z;;;2785144255;2;0;13510798882722600;4096;936;0;0;2021-12-16T13:35:40.160923Z;2021-11-11T11:29:34.224102Z;2021-01-15T09:27:15.155870Z +C:/Windows/SysWOW64/mbussdapi.dll;file;69120;33206;2021-01-15T09:27:15.171491Z;;;2785144255;2;0;28991922601808700;4096;136;0;0;2021-12-16T13:35:40.175443Z;2021-11-11T11:29:34.228087Z;2021-01-15T09:27:15.171491Z +C:/Windows/SysWOW64/mcbuilder.exe;file;80896;33206;2019-12-07T09:09:29.114855Z;;;2785144255;2;0;1125899907636490;4096;160;0;0;2021-12-16T13:35:40.209400Z;2021-11-11T11:29:30.971523Z;2019-12-07T09:09:29.114855Z +C:/Windows/SysWOW64/MCCSEngineShared.dll;file;140288;33206;2021-01-15T09:27:50.233723Z;;;2785144255;2;0;21673573207345300;4096;280;0;0;2021-12-16T13:35:40.223475Z;2021-11-11T11:29:35.503592Z;2021-01-15T09:27:50.231729Z +C:/Windows/SysWOW64/mciavi32.dll;file;84480;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907630180;4096;168;0;0;2021-12-16T13:35:40.239485Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/mcicda.dll;file;38400;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907638120;4096;80;0;0;2021-12-16T13:35:40.252241Z;2021-11-11T11:29:33.702363Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/mciqtz32.dll;file;38400;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907628000;4096;80;0;0;2021-12-16T13:35:40.265603Z;2021-11-11T11:29:34.253035Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/mciseq.dll;file;24064;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907638440;4096;48;0;0;2021-12-16T13:35:40.278639Z;2021-11-11T11:29:33.699370Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/mciwave.dll;file;25088;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907635040;4096;56;0;0;2021-12-16T13:35:40.291412Z;2021-11-11T11:29:33.704357Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/MCRecvSrc.dll;file;896000;33206;2021-10-03T19:02:51.595102Z;;;2785144255;2;0;1688849861187660;4096;1752;0;0;2021-12-16T13:35:40.306637Z;2021-11-11T11:29:34.202158Z;2021-10-03T19:02:51.530532Z +C:/Windows/SysWOW64/mdminst.dll;file;61440;33206;2019-12-07T09:10:04.257180Z;;;2785144255;2;0;1125899907629260;4096;120;0;0;2021-12-16T13:35:40.319945Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:04.257180Z +C:/Windows/SysWOW64/mdmlocalmanagement.dll;file;48128;33206;2021-02-11T15:05:16.183573Z;;;2785144255;2;0;562949954319161;4096;96;0;0;2021-12-16T13:35:40.332538Z;2021-11-11T11:29:33.795115Z;2021-02-11T15:05:16.183573Z +C:/Windows/SysWOW64/mdmregistration.dll;file;296960;33206;2021-10-16T00:21:17.114410Z;;;2785144255;2;0;281474977857368;4096;584;0;0;2021-12-16T13:35:40.335028Z;2021-11-11T11:29:33.771179Z;2021-10-16T00:21:17.114410Z +C:/Windows/SysWOW64/MessagingDataModel2.dll;file;837632;33206;2021-01-15T09:27:15.702584Z;;;2785144255;2;0;12947848929308800;4096;1640;0;0;2021-12-16T13:35:40.350811Z;2021-11-11T11:29:33.749237Z;2021-01-15T09:27:15.686963Z +C:/Windows/SysWOW64/mf.dll;file;538144;33206;2021-10-16T00:21:33.994771Z;;;2785144255;2;0;281474977858059;4096;1056;0;0;2021-12-16T13:35:40.351929Z;2021-11-11T11:29:32.465372Z;2021-10-16T00:21:33.979190Z +C:/Windows/SysWOW64/mf3216.dll;file;46592;33206;2020-11-03T12:45:52.119276Z;;;2785144255;2;0;1688849861239880;4096;96;0;0;2021-12-16T13:35:40.364897Z;2021-11-11T11:29:33.792123Z;2020-11-03T12:45:52.119276Z +C:/Windows/SysWOW64/mfAACEnc.dll;file;118952;33206;2019-12-07T14:54:42.954280Z;;;2785144255;2;0;1125899907618360;4096;240;0;0;2021-12-16T13:35:40.381142Z;2021-11-11T11:29:34.303852Z;2019-12-07T09:10:13.835255Z +C:/Windows/SysWOW64/mfasfsrcsnk.dll;file;1301592;33206;2021-10-03T19:03:19.925654Z;;;2785144255;2;0;102175416546005000;4096;2544;0;0;2021-12-16T13:35:40.400968Z;2021-11-11T11:29:34.300859Z;2021-10-03T19:03:19.840860Z +C:/Windows/SysWOW64/mfaudiocnv.dll;file;140288;33206;2021-01-15T09:27:48.208872Z;;;2785144255;2;0;12666373952603400;4096;280;0;0;2021-12-16T13:35:40.414902Z;2021-11-11T11:29:34.302854Z;2021-01-15T09:27:48.208872Z +C:/Windows/SysWOW64/mfc100.dll;file;4397384;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244433;4096;8592;0;0;2021-12-16T13:35:40.443837Z;2021-12-03T14:03:13.350113Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100chs.dll;file;36176;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244434;4096;72;0;0;2021-12-16T13:35:40.450132Z;2021-12-03T14:03:13.365740Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100cht.dll;file;36176;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244435;4096;72;0;0;2021-12-16T13:35:40.455889Z;2021-12-03T14:03:13.365740Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100deu.dll;file;64336;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244436;4096;128;0;0;2021-12-16T13:35:40.465861Z;2021-12-03T14:03:13.365740Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100enu.dll;file;55120;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244437;4096;112;0;0;2021-12-16T13:35:40.475863Z;2021-12-03T14:03:13.365740Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100esn.dll;file;63824;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244438;4096;128;0;0;2021-12-16T13:35:40.486199Z;2021-12-03T14:03:13.365740Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100fra.dll;file;64336;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244439;4096;128;0;0;2021-12-16T13:35:40.496172Z;2021-12-03T14:03:13.365740Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100ita.dll;file;62288;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244440;4096;128;0;0;2021-12-16T13:35:40.506325Z;2021-12-03T14:03:13.365740Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100jpn.dll;file;43856;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244441;4096;88;0;0;2021-12-16T13:35:40.511091Z;2021-12-03T14:03:13.365740Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100kor.dll;file;43344;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244442;4096;88;0;0;2021-12-16T13:35:40.517485Z;2021-12-03T14:03:13.365740Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100rus.dll;file;60752;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244443;4096;120;0;0;2021-12-16T13:35:40.522202Z;2021-12-03T14:03:13.381362Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc100u.dll;file;4422992;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244444;4096;8640;0;0;2021-12-16T13:35:40.552760Z;2021-12-03T14:03:13.396983Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfc110.dll;file;4421192;33206;2013-06-09T18:53:16Z;;;2785144255;1;0;23925373020692400;4096;8640;0;0;2021-12-16T13:35:40.582694Z;2021-11-08T13:18:43.174435Z;2013-06-09T18:53:16Z +C:/Windows/SysWOW64/mfc110u.dll;file;4456520;33206;2013-06-09T18:53:16Z;;;2785144255;1;0;35747322042540000;4096;8712;0;0;2021-12-16T13:35:40.629618Z;2021-11-08T13:18:43.168456Z;2013-06-09T18:53:16Z +C:/Windows/SysWOW64/mfc120.dll;file;4424344;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894980;4096;8648;0;0;2021-12-16T13:35:40.660193Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120chs.dll;file;46248;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894980;4096;96;0;0;2021-12-16T13:35:40.666110Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120cht.dll;file;46248;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894980;4096;96;0;0;2021-12-16T13:35:40.671978Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120deu.dll;file;74920;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;844424930184326;4096;152;0;0;2021-12-16T13:35:40.681804Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120enu.dll;file;65192;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;844424930184327;4096;128;0;0;2021-12-16T13:35:40.691892Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120esn.dll;file;73896;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;844424930184330;4096;152;0;0;2021-12-16T13:35:40.701625Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120fra.dll;file;74920;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894990;4096;152;0;0;2021-12-16T13:35:40.712519Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120ita.dll;file;72872;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894990;4096;144;0;0;2021-12-16T13:35:40.722811Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120jpn.dll;file;53928;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894990;4096;112;0;0;2021-12-16T13:35:40.727604Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120kor.dll;file;53416;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894990;4096;112;0;0;2021-12-16T13:35:40.734255Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120rus.dll;file;70824;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;844424930184339;4096;144;0;0;2021-12-16T13:35:40.739780Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc120u.dll;file;4449952;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906895000;4096;8696;0;0;2021-12-16T13:35:40.769550Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfc140.dll;file;4750104;33206;2019-09-27T19:04:10Z;;;2785144255;1;0;562949954955042;4096;9280;0;0;2021-12-16T13:35:40.801558Z;2021-12-03T14:03:10.017502Z;2019-09-27T19:04:10Z +C:/Windows/SysWOW64/mfc140chs.dll;file;47384;33206;2019-09-27T19:04:08Z;;;2785144255;1;0;281474978244387;4096;96;0;0;2021-12-16T13:35:40.807085Z;2021-12-03T14:03:10.017502Z;2019-09-27T19:04:08Z +C:/Windows/SysWOW64/mfc140cht.dll;file;47384;33206;2019-09-27T19:04:18Z;;;2785144255;1;0;281474978244388;4096;96;0;0;2021-12-16T13:35:40.813480Z;2021-12-03T14:03:10.017502Z;2019-09-27T19:04:18Z +C:/Windows/SysWOW64/mfc140deu.dll;file;76056;33206;2019-09-27T19:04:16Z;;;2785144255;1;0;281474978244389;4096;152;0;0;2021-12-16T13:35:40.823708Z;2021-12-03T14:03:10.017502Z;2019-09-27T19:04:16Z +C:/Windows/SysWOW64/mfc140enu.dll;file;66328;33206;2019-09-27T19:04:10Z;;;2785144255;1;0;281474978244390;4096;136;0;0;2021-12-16T13:35:40.833555Z;2021-12-03T14:03:10.017502Z;2019-09-27T19:04:10Z +C:/Windows/SysWOW64/mfc140esn.dll;file;75032;33206;2019-09-27T19:04:06Z;;;2785144255;1;0;281474978244391;4096;152;0;0;2021-12-16T13:35:40.843527Z;2021-12-03T14:03:10.033095Z;2019-09-27T19:04:06Z +C:/Windows/SysWOW64/mfc140fra.dll;file;76056;33206;2019-09-27T19:04:08Z;;;2785144255;1;0;281474978244392;4096;152;0;0;2021-12-16T13:35:40.854498Z;2021-12-03T14:03:10.033095Z;2019-09-27T19:04:08Z +C:/Windows/SysWOW64/mfc140ita.dll;file;74008;33206;2019-09-27T19:04:14Z;;;2785144255;1;0;281474978244393;4096;152;0;0;2021-12-16T13:35:40.864507Z;2021-12-03T14:03:10.048718Z;2019-09-27T19:04:14Z +C:/Windows/SysWOW64/mfc140jpn.dll;file;55576;33206;2019-09-27T19:04:18Z;;;2785144255;1;0;281474978244394;4096;112;0;0;2021-12-16T13:35:40.871453Z;2021-12-03T14:03:10.048718Z;2019-09-27T19:04:18Z +C:/Windows/SysWOW64/mfc140kor.dll;file;54552;33206;2019-09-27T19:04:12Z;;;2785144255;1;0;281474978244395;4096;112;0;0;2021-12-16T13:35:40.877438Z;2021-12-03T14:03:10.048718Z;2019-09-27T19:04:12Z +C:/Windows/SysWOW64/mfc140rus.dll;file;71960;33206;2019-09-27T19:04:18Z;;;2785144255;1;0;281474978244396;4096;144;0;0;2021-12-16T13:35:40.883115Z;2021-12-03T14:03:10.048718Z;2019-09-27T19:04:18Z +C:/Windows/SysWOW64/mfc140u.dll;file;5043992;33206;2019-09-27T19:04:20Z;;;2785144255;1;0;562949954955053;4096;9856;0;0;2021-12-16T13:35:40.937839Z;2021-12-03T14:03:10.086522Z;2019-09-27T19:04:20Z +C:/Windows/SysWOW64/mfc40.dll;file;924944;33206;2019-12-07T09:09:13.739223Z;;;2785144255;2;0;1125899907636340;4096;1808;0;0;2021-12-16T13:35:40.949921Z;2021-11-11T11:29:33.723306Z;2019-12-07T09:09:13.739223Z +C:/Windows/SysWOW64/mfc40u.dll;file;924944;33206;2019-12-07T09:09:13.755253Z;;;2785144255;2;0;1125899907638200;4096;1808;0;0;2021-12-16T13:35:40.961888Z;2021-11-11T11:29:33.720314Z;2019-12-07T09:09:13.739223Z +C:/Windows/SysWOW64/mfc42.dll;file;1171456;33206;2019-12-07T09:09:13.755253Z;;;2785144255;2;0;1125899907635100;4096;2288;0;0;2021-12-16T13:35:40.961888Z;2021-11-11T11:29:33.719317Z;2019-12-07T09:09:13.755253Z +C:/Windows/SysWOW64/mfc42u.dll;file;1159168;33206;2019-12-07T09:09:13.755253Z;;;2785144255;2;0;1125899907638700;4096;2264;0;0;2021-12-16T13:35:40.962887Z;2021-11-11T11:29:33.727295Z;2019-12-07T09:09:13.755253Z +C:/Windows/SysWOW64/MFCaptureEngine.dll;file;600616;33206;2021-04-17T10:35:44.042076Z;;;2785144255;2;0;844424930952136;4096;1176;0;0;2021-12-16T13:35:40.979256Z;2021-11-11T11:29:34.301895Z;2021-04-17T10:35:43.983646Z +C:/Windows/SysWOW64/mfcm100.dll;file;81744;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244445;4096;160;0;0;2021-12-16T13:35:40.990241Z;2021-12-03T14:03:13.412604Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfcm100u.dll;file;81744;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244446;4096;160;0;0;2021-12-16T13:35:40.999121Z;2021-12-03T14:03:13.412604Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/mfcm110.dll;file;83016;33206;2013-06-09T18:53:16Z;;;2785144255;1;0;43065671437017100;4096;168;0;0;2021-12-16T13:35:41.009904Z;2021-11-08T13:18:43.192433Z;2013-06-09T18:53:16Z +C:/Windows/SysWOW64/mfcm110u.dll;file;83024;33206;2013-06-09T18:53:16Z;;;2785144255;1;0;40813871623331800;4096;168;0;0;2021-12-16T13:35:41.019586Z;2021-11-08T13:18:43.190433Z;2013-06-09T18:53:16Z +C:/Windows/SysWOW64/mfcm120.dll;file;83104;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906895000;4096;168;0;0;2021-12-16T13:35:41.028599Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfcm120u.dll;file;83104;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;844424930184346;4096;168;0;0;2021-12-16T13:35:41.038842Z;2020-11-03T12:52:03.269473Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/mfcm140.dll;file;92952;33206;2019-09-27T19:05:06Z;;;2785144255;1;0;562949954955054;4096;184;0;0;2021-12-16T13:35:41.048946Z;2021-12-03T14:03:10.102148Z;2019-09-27T19:05:06Z +C:/Windows/SysWOW64/mfcm140u.dll;file;92952;33206;2019-09-27T19:04:06Z;;;2785144255;1;0;562949954955055;4096;184;0;0;2021-12-16T13:35:41.059546Z;2021-12-03T14:03:10.102148Z;2019-09-27T19:04:06Z +C:/Windows/SysWOW64/mfcore.dll;file;3568976;33206;2021-11-11T11:29:14.037446Z;;;2785144255;2;0;281474977879658;4096;6976;0;0;2021-12-16T13:35:41.059546Z;2021-11-11T11:38:51.230742Z;2021-11-11T11:29:13.956626Z +C:/Windows/SysWOW64/mfcsubs.dll;file;28672;33206;2019-12-07T09:09:22.208345Z;;;2785144255;2;0;1125899907638630;4096;56;0;0;2021-12-16T13:35:41.072272Z;2021-11-11T11:29:33.771179Z;2019-12-07T09:09:22.208345Z +C:/Windows/SysWOW64/mfds.dll;file;747856;33206;2021-04-17T10:35:46.712810Z;;;2785144255;2;0;844424930952145;4096;1464;0;0;2021-12-16T13:35:41.088957Z;2021-11-11T11:29:34.302854Z;2021-04-17T10:35:46.655677Z +C:/Windows/SysWOW64/mfdvdec.dll;file;171520;33206;2019-12-07T14:54:40.407255Z;;;2785144255;2;0;1125899907618630;4096;336;0;0;2021-12-16T13:35:41.100924Z;2021-11-11T11:29:32.498716Z;2019-12-07T09:10:14.288474Z +C:/Windows/SysWOW64/mferror.dll;file;70656;33206;2019-12-07T14:54:45.204226Z;;;2785144255;2;0;1125899907618540;4096;144;0;0;2021-12-16T13:35:41.133282Z;2021-11-11T11:29:34.300859Z;2019-12-07T09:10:11.945490Z +C:/Windows/SysWOW64/mfh263enc.dll;file;43520;33206;2019-12-07T14:54:37.500301Z;;;2785144255;2;0;1125899907618470;4096;88;0;0;2021-12-16T13:35:41.145156Z;2021-11-11T11:29:34.303852Z;2019-12-07T09:10:13.852059Z +C:/Windows/SysWOW64/mfh264enc.dll;file;603136;33206;2021-05-18T11:00:11.113491Z;;;2785144255;2;0;43065671436765800;4096;1184;0;0;2021-12-16T13:35:41.146154Z;2021-11-11T11:29:34.303852Z;2021-05-18T11:00:11.108104Z +C:/Windows/SysWOW64/mfksproxy.dll;file;237568;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907628250;4096;464;0;0;2021-12-16T13:35:41.146154Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/MFMediaEngine.dll;file;3663872;33206;2021-11-11T11:29:14.335142Z;;;2785144255;2;0;281474977879661;4096;7160;0;0;2021-12-16T13:35:41.147162Z;2021-11-11T11:38:50.602451Z;2021-11-11T11:29:14.246426Z +C:/Windows/SysWOW64/mfmjpegdec.dll;file;83968;33206;2021-11-11T11:29:14.996746Z;;;2785144255;2;0;281474977879833;4096;168;0;0;2021-12-16T13:35:41.160033Z;2021-11-11T11:38:53.233603Z;2021-11-11T11:29:14.994752Z +C:/Windows/SysWOW64/mfmkvsrcsnk.dll;file;994816;33206;2021-10-16T00:21:34.530284Z;;;2785144255;2;0;281474977858066;4096;1944;0;0;2021-12-16T13:35:41.183705Z;2021-11-11T11:29:34.302854Z;2021-10-16T00:21:34.510145Z +C:/Windows/SysWOW64/mfmp4srcsnk.dll;file;1887776;33206;2021-10-03T19:03:20.480283Z;;;2785144255;2;0;1688849861188040;4096;3688;0;0;2021-12-16T13:35:41.183705Z;2021-11-11T11:29:34.301895Z;2021-10-03T19:03:20.341120Z +C:/Windows/SysWOW64/mfmpeg2srcsnk.dll;file;1014896;33206;2021-10-03T19:03:21.248224Z;;;2785144255;2;0;1688849861188040;4096;1984;0;0;2021-12-16T13:35:41.200938Z;2021-11-11T11:29:34.302854Z;2021-10-03T19:03:21.188931Z +C:/Windows/SysWOW64/mfnetcore.dll;file;913136;33206;2021-01-15T09:27:47.724611Z;;;2785144255;2;0;7881299348522210;4096;1784;0;0;2021-12-16T13:35:41.217767Z;2021-11-11T11:29:34.300859Z;2021-01-15T09:27:47.708990Z +C:/Windows/SysWOW64/mfnetsrc.dll;file;1335656;33206;2021-10-03T19:03:20.614129Z;;;2785144255;2;0;1688849861188040;4096;2616;0;0;2021-12-16T13:35:41.236237Z;2021-11-11T11:29:34.300859Z;2021-10-03T19:03:20.522233Z +C:/Windows/SysWOW64/mfperfhelper.dll;file;1075528;33206;2019-12-07T14:54:42.016241Z;;;2785144255;2;0;1125899907618550;4096;2104;0;0;2021-12-16T13:35:41.236237Z;2021-11-11T11:29:34.301895Z;2019-12-07T09:10:11.915414Z +C:/Windows/SysWOW64/mfplat.dll;file;1541240;33206;2021-01-15T09:27:47.787097Z;;;2785144255;2;0;12666373952603400;4096;3016;0;0;2021-12-16T13:35:41.236237Z;2021-11-11T11:29:34.301895Z;2021-01-15T09:27:47.771475Z +C:/Windows/SysWOW64/MFPlay.dll;file;460696;33206;2021-01-15T09:27:47.474671Z;;;2785144255;2;0;9570149208786130;4096;904;0;0;2021-12-16T13:35:41.251940Z;2021-11-11T11:29:32.465037Z;2021-01-15T09:27:47.474671Z +C:/Windows/SysWOW64/mfpmp.exe;file;40480;33206;2019-12-07T14:54:41.016308Z;;;2785144255;2;0;1125899907618400;4096;80;0;0;2021-12-16T13:35:41.263809Z;2021-11-15T13:07:17.593528Z;2019-12-07T09:10:11.902342Z +C:/Windows/SysWOW64/mfps.dll;file;129096;33206;2021-11-11T11:29:14.061395Z;;;2785144255;2;0;281474977879659;4096;256;0;0;2021-12-16T13:35:41.276637Z;2021-11-11T11:38:53.182999Z;2021-11-11T11:29:14.058355Z +C:/Windows/SysWOW64/mfreadwrite.dll;file;760760;33206;2021-01-15T09:27:47.818339Z;;;2785144255;2;0;11821949022471400;4096;1488;0;0;2021-12-16T13:35:41.277635Z;2021-11-11T11:29:34.301895Z;2021-01-15T09:27:47.802718Z +C:/Windows/SysWOW64/mfsensorgroup.dll;file;353264;33206;2021-10-16T00:21:30.424131Z;;;2785144255;2;0;281474977857993;4096;696;0;0;2021-12-16T13:35:41.277635Z;2021-11-11T11:29:34.244011Z;2021-10-16T00:21:30.424131Z +C:/Windows/SysWOW64/mfsrcsnk.dll;file;1424968;33206;2021-04-17T10:35:44.938201Z;;;2785144255;2;0;844424930952140;4096;2784;0;0;2021-12-16T13:35:41.295448Z;2021-11-11T11:29:34.300859Z;2021-04-17T10:35:44.799400Z +C:/Windows/SysWOW64/mfsvr.dll;file;1181728;33206;2021-10-16T00:21:34.500108Z;;;2785144255;2;0;281474977858065;4096;2312;0;0;2021-12-16T13:35:41.296447Z;2021-11-11T11:29:34.301895Z;2021-10-16T00:21:34.469749Z +C:/Windows/SysWOW64/mftranscode.dll;file;331768;33206;2019-12-07T14:54:36.172257Z;;;2785144255;2;0;1125899907618650;4096;648;0;0;2021-12-16T13:35:41.312129Z;2021-11-11T11:29:34.301895Z;2019-12-07T09:10:11.975868Z +C:/Windows/SysWOW64/mfvdsp.dll;file;81016;33206;2021-01-15T09:27:48.349463Z;;;2785144255;2;0;19984723347080400;4096;160;0;0;2021-12-16T13:35:41.324993Z;2021-11-11T11:29:32.481837Z;2021-01-15T09:27:48.333842Z +C:/Windows/SysWOW64/mfvfw.dll;file;37888;33206;2019-12-07T14:54:46.130785Z;;;2785144255;2;0;1125899907618500;4096;80;0;0;2021-12-16T13:35:41.337623Z;2021-11-11T11:29:32.495724Z;2019-12-07T09:10:14.272861Z +C:/Windows/SysWOW64/MFWMAAEC.DLL;file;398336;33206;2019-12-07T14:54:45.875214Z;;;2785144255;2;0;1125899907618510;4096;784;0;0;2021-12-16T13:35:41.338128Z;2021-11-11T11:29:32.482835Z;2019-12-07T09:10:11.990066Z +C:/Windows/SysWOW64/mfxplugin32_hw.dll;file;13499688;33206;2021-09-12T23:12:00Z;;;2785144255;2;0;6755399441339340;4096;26368;0;0;2021-12-16T13:35:41.360687Z;2021-12-11T15:59:54.004176Z;2021-10-31T08:18:40.769340Z +C:/Windows/SysWOW64/mgmtapi.dll;file;18944;33206;2019-12-07T09:09:13.597569Z;;;2785144255;2;0;1125899907635810;4096;40;0;0;2021-12-16T13:35:41.373655Z;2021-11-11T11:29:33.721311Z;2019-12-07T09:09:13.597569Z +C:/Windows/SysWOW64/mi.dll;file;101376;33206;2020-11-03T12:45:46.667315Z;;;2785144255;2;0;3377699721501790;4096;200;0;0;2021-12-16T13:35:41.385504Z;2021-11-11T11:29:33.729290Z;2020-11-03T12:45:46.667315Z +C:/Windows/SysWOW64/mibincodec.dll;file;73216;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;2251799814119120;4096;144;0;0;2021-12-16T13:35:41.397471Z;2021-11-11T11:29:33.716325Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/Microsoft.Bluetooth.Proxy.dll;file;163840;33206;2021-01-15T09:27:18.317715Z;;;2785144255;2;0;18577348463522400;4096;320;0;0;2021-12-16T13:35:41.412404Z;2021-11-11T11:29:33.771179Z;2021-01-15T09:27:18.317715Z +C:/Windows/SysWOW64/Microsoft.Management.Infrastructure.Native.Unmanaged.dll;file;14336;33206;2020-11-03T12:46:14.739343Z;;;2785144255;2;0;562949954403957;4096;32;0;0;2021-12-16T13:35:41.423741Z;2021-11-11T11:29:34.236070Z;2020-11-03T12:46:14.739343Z +C:/Windows/SysWOW64/Microsoft.Uev.AppAgent.dll;file;1650512;33206;2021-11-11T11:29:11.699873Z;;;2785144255;2;0;281474977879646;4096;3224;0;0;2021-12-16T13:35:41.450396Z;2021-11-11T11:38:51.737662Z;2021-11-11T11:29:11.661976Z +C:/Windows/SysWOW64/Microsoft.Uev.Office2010CustomActions.dll;file;36352;33206;2021-07-07T12:58:54.520957Z;;;2785144255;2;0;281474977791341;4096;72;0;0;2021-12-16T13:35:41.462638Z;2021-12-16T12:06:18.143713Z;2021-07-07T12:58:54.520957Z +C:/Windows/SysWOW64/Microsoft.Uev.Office2013CustomActions.dll;file;512000;33206;2021-10-03T19:03:06.187610Z;;;2785144255;2;0;1688849861187770;4096;1000;0;0;2021-12-16T13:35:41.482406Z;2021-12-16T12:06:18.143713Z;2021-10-03T19:03:06.153899Z +C:/Windows/SysWOW64/MicrosoftAccountTokenProvider.dll;file;167424;33206;2021-01-15T09:27:21.131537Z;;;2785144255;2;0;9851624185492630;4096;328;0;0;2021-12-16T13:35:41.495583Z;2021-11-11T11:29:30.982489Z;2021-01-15T09:27:21.115915Z +C:/Windows/SysWOW64/MicrosoftAccountWAMExtension.dll;file;379904;33206;2021-10-03T19:02:04.190375Z;;;2785144255;2;0;1688849861186660;4096;744;0;0;2021-12-16T13:35:41.511092Z;2021-11-11T11:29:33.731285Z;2021-10-03T19:02:04.163345Z +C:/Windows/SysWOW64/midimap.dll;file;18944;33206;2020-11-03T12:45:45.261419Z;;;2785144255;2;0;1125899907815900;4096;40;0;0;2021-12-16T13:35:41.511092Z;2021-11-11T11:29:33.700367Z;2020-11-03T12:45:45.261419Z +C:/Windows/SysWOW64/migisol.dll;file;118584;33206;2020-11-03T12:45:54.196910Z;;;2785144255;2;0;562949954398502;4096;232;0;0;2021-12-16T13:35:41.527051Z;2021-11-11T11:29:33.815064Z;2020-11-03T12:45:54.196910Z +C:/Windows/SysWOW64/migration;directory;0;16822;2021-11-11T11:38:44.511352Z;;;2785144255;1;0;2251799814006060;4096;8;0;0;2021-12-16T13:36:01.182775Z;2021-11-11T11:38:44.511352Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/migration/audmigplugin.dll;file;58704;33206;2021-01-15T09:27:09.141488Z;;;2785144255;2;0;3940649674530920;4096;120;0;0;2021-01-15T09:30:31.735288Z;2021-11-11T11:29:33.701365Z;2021-01-15T09:27:09.141488Z +C:/Windows/SysWOW64/migration/bthmigplugin.dll;file;94008;33206;2021-01-15T09:27:18.833208Z;;;2785144255;2;0;8725724278649500;4096;184;0;0;2021-01-15T09:30:27.253444Z;2021-11-11T11:29:33.779158Z;2021-01-15T09:27:18.833208Z +C:/Windows/SysWOW64/migration/CntrtextMig.dll;file;149816;33206;2021-01-15T09:27:19.487689Z;;;2785144255;2;0;9570149208781550;4096;296;0;0;2021-01-15T09:30:28.994395Z;2021-11-11T11:29:33.804091Z;2021-01-15T09:27:19.472090Z +C:/Windows/SysWOW64/migration/commig.dll;file;143872;33206;2021-01-15T09:27:19.005067Z;;;2785144255;2;0;10414574138913500;4096;288;0;0;2021-01-15T09:30:28.525756Z;2021-11-11T11:29:33.764197Z;2021-01-15T09:27:19.005067Z +C:/Windows/SysWOW64/migration/de-DE;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;3377699720848680;4096;0;0;0;2021-12-16T13:36:01.182775Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/migration/de-DE/ShMig.dll.mui;file;4096;33206;2019-12-07T14:51:00.877058Z;;;2785144255;4;0;1688849861030410;4096;8;0;0;2019-12-07T14:51:00.877058Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:51:00.877058Z +C:/Windows/SysWOW64/migration/de-DE/SxsMigPlugin.dll.mui;file;2560;33206;2019-12-07T14:51:02.346023Z;;;2785144255;2;0;25051272927678900;4096;8;0;0;2019-12-07T14:51:02.346023Z;2020-11-03T12:35:14.959454Z;2019-12-07T14:51:02.346023Z +C:/Windows/SysWOW64/migration/en-US;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;5066549581112620;4096;0;0;0;2021-12-16T13:36:01.182775Z;2020-11-03T12:41:50.298074Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/migration/en-US/ShMig.dll.mui;file;4096;33206;2020-11-03T12:41:40.581569Z;;;2785144255;4;0;1125899907691590;4096;8;0;0;2020-11-03T12:41:40.690919Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.581569Z +C:/Windows/SysWOW64/migration/en-US/SxsMigPlugin.dll.mui;file;2560;33206;2020-11-03T12:41:41.143969Z;;;2785144255;2;0;1125899907692150;4096;8;0;0;2020-11-03T12:41:41.268939Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:41.128347Z +C:/Windows/SysWOW64/migration/hwvidmigplugin.dll;file;60752;33206;2021-01-15T09:27:38.270235Z;;;2785144255;2;0;11821949022470200;4096;120;0;0;2021-01-15T09:30:27.144060Z;2021-11-11T11:29:34.253035Z;2021-01-15T09:27:38.270235Z +C:/Windows/SysWOW64/migration/imjpmig.dll;file;120632;33206;2019-12-07T09:10:45.742723Z;;;2785144255;2;0;1125899907630940;4096;240;0;0;2020-11-03T12:35:40.031849Z;2021-11-11T11:29:34.123584Z;2019-12-07T09:10:45.742723Z +C:/Windows/SysWOW64/migration/imkrmig.dll;file;87864;33206;2019-12-07T09:10:45.773965Z;;;2785144255;2;0;1125899907633190;4096;176;0;0;2020-11-03T12:35:41.516102Z;2021-11-11T11:29:34.126576Z;2019-12-07T09:10:45.773965Z +C:/Windows/SysWOW64/migration/MapsMigPlugin.dll;file;82248;33206;2021-01-15T09:27:18.161510Z;;;2785144255;2;0;4222124651278950;4096;168;0;0;2021-01-15T09:30:26.006440Z;2021-11-11T11:29:33.766192Z;2021-01-15T09:27:18.161510Z +C:/Windows/SysWOW64/migration/modemmigplugin.dll;file;137728;33206;2021-01-15T09:27:38.832600Z;;;2785144255;2;0;10414574138916900;4096;272;0;0;2021-01-15T09:30:29.738225Z;2021-11-11T11:29:34.245008Z;2021-01-15T09:27:38.832600Z +C:/Windows/SysWOW64/migration/msctfmig.dll;file;168768;33206;2021-02-11T15:05:11.924123Z;;;2785144255;2;0;562949954318874;4096;336;0;0;2021-02-11T15:15:54.534241Z;2021-11-11T11:29:33.722309Z;2021-02-11T15:05:11.924123Z +C:/Windows/SysWOW64/migration/netiomig.dll;file;69448;33206;2021-01-15T09:27:21.412721Z;;;2785144255;2;0;13792273859441800;4096;136;0;0;2021-01-15T09:30:31.010667Z;2021-11-11T11:29:33.802096Z;2021-01-15T09:27:21.412721Z +C:/Windows/SysWOW64/migration/scmdmigplugin.dll;file;58880;33206;2021-01-15T09:27:22.092897Z;;;2785144255;2;0;16607023626548500;4096;120;0;0;2021-01-15T09:30:28.806939Z;2021-11-11T11:29:33.805088Z;2021-01-15T09:27:22.092897Z +C:/Windows/SysWOW64/migration/shmig.dll;file;165176;33206;2020-11-03T12:45:54.290642Z;;;2785144255;2;0;562949954398513;4096;328;0;0;2020-11-03T12:45:54.290642Z;2021-11-11T11:29:33.815064Z;2020-11-03T12:45:54.290642Z +C:/Windows/SysWOW64/migration/sppmig.dll;file;198144;33206;2020-11-03T12:45:45.714451Z;;;2785144255;2;0;1125899907815960;4096;392;0;0;2020-11-03T12:47:44.538355Z;2021-11-11T11:29:33.728293Z;2020-11-03T12:45:45.714451Z +C:/Windows/SysWOW64/migration/SxsMigPlugin.dll;file;108360;33206;2021-01-15T09:27:09.931714Z;;;2785144255;2;0;9288674232038610;4096;216;0;0;2021-01-15T09:30:31.135658Z;2021-11-11T11:29:33.725301Z;2021-01-15T09:27:09.931714Z +C:/Windows/SysWOW64/migration/TableTextServiceMig.dll;file;61960;33206;2019-12-07T09:10:04.162952Z;;;2785144255;2;0;1125899907628530;4096;128;0;0;2020-11-03T12:35:38.704036Z;2021-11-11T11:29:34.248Z;2019-12-07T09:10:04.162952Z +C:/Windows/SysWOW64/migration/WininetPlugin.dll;file;35328;33206;2021-10-03T19:02:18.580768Z;;;2785144255;2;0;1688849861187000;4096;72;0;0;2021-10-03T19:51:52.162115Z;2021-11-11T11:29:33.798140Z;2021-10-03T19:02:18.577230Z +C:/Windows/SysWOW64/migration/WMIMigrationPlugin.dll;file;662856;33206;2021-11-11T11:28:57.522831Z;;;2785144255;2;0;281474977878966;4096;1296;0;0;2021-11-11T11:38:53.415816Z;2021-11-11T11:38:53.415816Z;2021-11-11T11:28:57.513697Z +C:/Windows/SysWOW64/migration/WpcMigration.Uplevel.dll;file;177152;33206;2021-05-18T10:59:06.899627Z;;;2785144255;2;0;2251799814572410;4096;352;0;0;2021-05-18T17:31:42.714836Z;2021-11-11T11:29:33.704357Z;2021-05-18T10:59:06.891671Z +C:/Windows/SysWOW64/migration/WSearchMigPlugin.dll;file;105808;33206;2021-10-03T19:02:10.094116Z;;;2785144255;2;0;1688849861186900;4096;208;0;0;2021-10-03T19:51:47.954762Z;2021-11-11T11:29:33.740262Z;2021-10-03T19:02:10.090224Z +C:/Windows/SysWOW64/migration/WsUpgrade.dll;file;172032;33206;2021-02-11T15:05:12.767676Z;;;2785144255;2;0;562949954318885;4096;336;0;0;2021-02-11T15:15:52.167656Z;2021-11-11T11:29:33.727295Z;2021-02-11T15:05:12.767676Z +C:/Windows/SysWOW64/miguiresource.dll;file;182784;33206;2019-12-07T09:10:00.444993Z;;;2785144255;2;0;1125899907628270;4096;360;0;0;2021-12-16T13:35:41.542231Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:10:00.444993Z +C:/Windows/SysWOW64/migwiz;directory;0;16822;2020-11-03T12:48:17.515014Z;;;2785144255;1;0;5066549581112620;4096;0;0;0;2021-12-16T13:36:01.182775Z;2020-11-03T12:48:17.515014Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/migwiz/unbcl.dll;file;836408;33206;2020-11-03T12:45:51.135130Z;;;2785144255;2;0;562949954396583;4096;1640;0;0;2020-11-03T12:45:51.135130Z;2021-11-11T11:29:33.767189Z;2020-11-03T12:45:51.135130Z +C:/Windows/SysWOW64/mimefilt.dll;file;33792;33206;2019-12-07T09:09:32.380631Z;;;2785144255;2;0;1125899907637850;4096;72;0;0;2021-12-16T13:35:41.555181Z;2021-11-11T11:29:33.808081Z;2019-12-07T09:09:32.380631Z +C:/Windows/SysWOW64/mimofcodec.dll;file;118272;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;2251799814119140;4096;232;0;0;2021-12-16T13:35:41.568135Z;2021-11-11T11:29:33.715328Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/MinstoreEvents.dll;file;17408;33206;2019-12-07T09:09:22.161729Z;;;2785144255;2;0;1125899907637200;4096;40;0;0;2021-12-16T13:35:41.573158Z;2021-11-11T11:29:33.778160Z;2019-12-07T09:09:22.161729Z +C:/Windows/SysWOW64/MiracastReceiver.dll;file;913920;33206;2021-01-15T09:27:12.340153Z;;;2785144255;2;0;2533274790986890;4096;1792;0;0;2021-12-16T13:35:41.591074Z;2021-11-11T11:29:33.734277Z;2021-01-15T09:27:12.324521Z +C:/Windows/SysWOW64/MiracastReceiverExt.dll;file;57856;33206;2021-01-15T09:27:34.459535Z;;;2785144255;2;0;12947848929312200;4096;120;0;0;2021-12-16T13:35:41.604835Z;2021-11-11T11:29:34.205151Z;2021-01-15T09:27:34.459535Z +C:/Windows/SysWOW64/MirrorDrvCompat.dll;file;32256;33206;2019-12-07T09:10:05.507228Z;;;2785144255;2;0;1125899907629030;4096;64;0;0;2021-12-16T13:35:41.617076Z;2021-11-11T11:29:34.242017Z;2019-12-07T09:10:05.507228Z +C:/Windows/SysWOW64/mispace.dll;file;2489680;33206;2021-10-16T00:21:27.752137Z;;;2785144255;2;0;281474977857755;4096;4864;0;0;2021-12-16T13:35:41.638635Z;2021-11-11T11:29:34.242017Z;2021-10-16T00:21:27.698806Z +C:/Windows/SysWOW64/MitigationConfiguration.dll;file;72192;33206;2020-12-09T00:08:29.092447Z;;;2785144255;2;0;844424930505823;4096;144;0;0;2021-12-16T13:35:41.651513Z;2021-11-11T11:29:33.805088Z;2020-12-09T00:08:29.076866Z +C:/Windows/SysWOW64/miutils.dll;file;190976;33206;2020-11-03T12:45:46.667315Z;;;2785144255;2;0;3377699721501790;4096;376;0;0;2021-12-16T13:35:41.665501Z;2021-11-11T11:29:33.715328Z;2020-11-03T12:45:46.667315Z +C:/Windows/SysWOW64/MixedRealityRuntime.dll;file;104824;33206;2021-01-15T09:27:48.677511Z;;;2785144255;2;0;16044073673131300;4096;208;0;0;2021-12-16T13:35:41.680112Z;2021-11-11T11:29:32.522618Z;2021-01-15T09:27:48.677511Z +C:/Windows/SysWOW64/MixedRealityRuntime.json;file;112;33206;2019-12-07T09:10:14.757675Z;;;2785144255;2;0;1125899907618540;4096;0;0;0;2021-12-16T13:35:41.682109Z;2021-02-22T08:01:24.320034Z;2019-12-07T09:10:14.757675Z +C:/Windows/SysWOW64/mlang.dat;file;673088;33206;2019-12-07T09:09:04.425916Z;;;2785144255;4;0;20266198323598200;4096;1320;0;0;2021-12-16T13:35:41.682441Z;2021-02-22T08:01:24.320034Z;2019-12-07T09:09:04.425916Z +C:/Windows/SysWOW64/mlang.dll;file;198656;33206;2021-01-15T09:27:21.318992Z;;;2785144255;2;0;10977524092335300;4096;392;0;0;2021-12-16T13:35:41.682812Z;2021-11-11T11:29:33.803093Z;2021-01-15T09:27:21.303371Z +C:/Windows/SysWOW64/mmc.exe;file;1411072;33206;2021-01-15T09:27:37.957808Z;;;2785144255;2;0;12103423999180800;4096;2760;0;0;2021-12-16T13:35:41.748870Z;2021-11-11T11:29:34.220113Z;2021-01-15T09:27:37.926565Z +C:/Windows/SysWOW64/mmc.exe.config;file;3103;33206;2019-12-07T09:12:45.091091Z;;;2785144255;1;0;1125899907629870;4096;8;0;0;2021-12-16T13:35:41.750807Z;2020-11-03T12:35:39.500724Z;2019-12-07T09:15:00.174414Z +C:/Windows/SysWOW64/mmcbase.dll;file;138752;33206;2019-12-07T09:10:02.209825Z;;;2785144255;2;0;1125899907628240;4096;272;0;0;2021-12-16T13:35:41.764577Z;2021-11-11T11:29:34.227087Z;2019-12-07T09:10:02.209825Z +C:/Windows/SysWOW64/mmcndmgr.dll;file;1704960;33206;2021-01-15T09:27:38.004671Z;;;2785144255;2;0;15481123719708700;4096;3336;0;0;2021-12-16T13:35:41.785714Z;2021-11-11T11:29:34.231045Z;2021-01-15T09:27:37.973428Z +C:/Windows/SysWOW64/mmcshext.dll;file;118784;33206;2021-01-15T09:27:37.957808Z;;;2785144255;2;0;13229323906023400;4096;232;0;0;2021-12-16T13:35:41.803665Z;2021-11-11T11:29:34.217084Z;2021-01-15T09:27:37.957808Z +C:/Windows/SysWOW64/MMDevAPI.dll;file;421496;33206;2021-06-10T14:01:36.784774Z;;;2785144255;2;0;281474977764826;4096;824;0;0;2021-12-16T13:35:41.803665Z;2021-11-11T11:29:33.704357Z;2021-06-10T14:01:36.778270Z +C:/Windows/SysWOW64/mmgaclient.dll;file;1342464;33206;2021-01-15T09:27:18.239601Z;;;2785144255;2;0;21392098230629000;4096;2624;0;0;2021-12-16T13:35:41.822017Z;2021-11-11T11:29:33.759211Z;2021-01-15T09:27:18.223953Z +C:/Windows/SysWOW64/mmgaproxystub.dll;file;62976;33206;2019-12-07T09:09:21.085256Z;;;2785144255;2;0;1125899907638490;4096;128;0;0;2021-12-16T13:35:41.834014Z;2021-11-11T11:29:33.769184Z;2019-12-07T09:09:21.085256Z +C:/Windows/SysWOW64/mmgaserver.exe;file;1029632;33206;2021-01-15T09:27:18.223953Z;;;2785144255;2;0;4785074604700270;4096;2016;0;0;2021-12-16T13:35:41.848881Z;2021-11-11T11:29:33.768187Z;2021-01-15T09:27:18.208334Z +C:/Windows/SysWOW64/mmres.dll;file;3584;33206;2019-12-07T09:09:21.770852Z;;;2785144255;2;0;1125899907638960;4096;8;0;0;2021-12-16T13:35:41.851858Z;2021-11-11T11:29:33.765194Z;2019-12-07T09:09:21.770852Z +C:/Windows/SysWOW64/mmsys.cpl;file;446976;33206;2021-01-15T09:27:18.817563Z;;;2785144255;2;0;16607023626547900;4096;880;0;0;2021-12-16T13:35:41.867843Z;2021-11-11T11:29:33.761205Z;2021-01-15T09:27:18.817563Z +C:/Windows/SysWOW64/mobilenetworking.dll;file;17920;33206;2020-11-03T12:45:48.948061Z;;;2785144255;2;0;562949954395907;4096;40;0;0;2021-12-16T13:35:41.879628Z;2021-11-11T11:29:33.739265Z;2020-11-03T12:45:48.948061Z +C:/Windows/SysWOW64/mobsync.exe;file;93696;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907629650;4096;184;0;0;2021-12-16T13:35:41.896301Z;2021-11-11T11:29:34.236070Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/mode.com;file;26624;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907630360;4096;56;0;0;2021-12-16T13:35:41.906971Z;2020-11-03T12:35:39.735045Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/modemui.dll;file;169984;33206;2019-12-07T09:10:04.257180Z;;;2785144255;2;0;1125899907630620;4096;336;0;0;2021-12-16T13:35:41.924900Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:10:04.257180Z +C:/Windows/SysWOW64/more.com;file;24576;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907630460;4096;48;0;0;2021-12-16T13:35:41.934908Z;2020-11-03T12:35:39.797529Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/moricons.dll;file;2560;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907629330;4096;8;0;0;2021-12-16T13:35:41.938905Z;2021-11-11T11:29:34.240064Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/MosHostClient.dll;file;68096;33206;2021-01-15T09:27:14.952794Z;;;2785144255;2;0;12103423999169400;4096;136;0;0;2021-12-16T13:35:41.953708Z;2021-11-11T11:29:33.741259Z;2021-01-15T09:27:14.952794Z +C:/Windows/SysWOW64/MosStorage.dll;file;69632;33206;2019-12-07T09:09:17.927329Z;;;2785144255;2;0;1125899907637240;4096;136;0;0;2021-12-16T13:35:41.968641Z;2021-11-11T11:29:33.744251Z;2019-12-07T09:09:17.927329Z +C:/Windows/SysWOW64/mountvol.exe;file;15360;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907628690;4096;32;0;0;2021-12-16T13:35:41.978678Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/MP3DMOD.DLL;file;90328;33206;2019-12-07T14:54:43.469246Z;;;2785144255;2;0;1125899907618490;4096;184;0;0;2021-12-16T13:35:41.980318Z;2021-11-11T11:29:34.304849Z;2019-12-07T09:10:13.852059Z +C:/Windows/SysWOW64/MP43DECD.DLL;file;263920;33206;2021-10-03T19:03:21.465256Z;;;2785144255;2;0;1688849861188040;4096;520;0;0;2021-12-16T13:35:41.994483Z;2021-11-11T11:29:32.499713Z;2021-10-03T19:03:21.457396Z +C:/Windows/SysWOW64/MP4SDECD.DLL;file;343408;33206;2020-11-03T12:46:08.990386Z;;;2785144255;2;0;562949954402335;4096;672;0;0;2021-12-16T13:35:42.008238Z;2021-11-11T11:29:34.304849Z;2020-11-03T12:46:08.990386Z +C:/Windows/SysWOW64/Mpeg2Data.ax;file;75776;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907627900;4096;152;0;0;2021-12-16T13:35:42.021168Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/mpg2splt.ax;file;204800;33206;2020-11-03T12:46:03.491675Z;;;2785144255;2;0;562949954401103;4096;400;0;0;2021-12-16T13:35:42.035674Z;2021-11-11T11:29:34.245008Z;2020-11-03T12:46:03.491675Z +C:/Windows/SysWOW64/MPG4DECD.DLL;file;264432;33206;2021-10-03T19:03:21.484653Z;;;2785144255;2;0;1688849861188050;4096;520;0;0;2021-12-16T13:35:42.050455Z;2021-11-11T11:29:32.500710Z;2021-10-03T19:03:21.476462Z +C:/Windows/SysWOW64/mpr.dll;file;93488;33206;2020-11-03T12:45:52.088033Z;;;2785144255;2;0;7881299348874300;4096;184;0;0;2021-12-16T13:35:42.050455Z;2021-11-11T11:29:34.249996Z;2020-11-03T12:45:52.088033Z +C:/Windows/SysWOW64/mprapi.dll;file;436224;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907630780;4096;856;0;0;2021-12-16T13:35:42.064914Z;2021-11-11T11:29:34.201157Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/mprddm.dll;file;775680;33206;2021-11-11T11:29:01.159352Z;;;2785144255;2;0;281474977879244;4096;1520;0;0;2021-12-16T13:35:42.082739Z;2021-11-11T11:38:52.389025Z;2021-11-11T11:29:01.144392Z +C:/Windows/SysWOW64/mprdim.dll;file;431104;33206;2021-11-11T11:29:01.174346Z;;;2785144255;2;0;281474977879245;4096;848;0;0;2021-12-16T13:35:42.099954Z;2021-11-11T11:38:50.664971Z;2021-11-11T11:29:01.166333Z +C:/Windows/SysWOW64/mprext.dll;file;12800;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907637010;4096;32;0;0;2021-12-16T13:35:42.111521Z;2021-11-11T11:29:33.802096Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/mprmsg.dll;file;113664;33206;2021-10-16T00:21:19.180595Z;;;2785144255;2;0;281474977857655;4096;224;0;0;2021-12-16T13:35:42.122331Z;2021-11-11T11:29:33.813066Z;2021-10-16T00:21:19.180595Z +C:/Windows/SysWOW64/MRINFO.EXE;file;14336;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907628100;4096;32;0;0;2021-12-16T13:35:42.131518Z;2021-11-11T11:29:34.201157Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/MrmCoreR.dll;file;785080;33206;2021-10-16T00:21:16.302771Z;;;2785144255;2;0;281474977857343;4096;1536;0;0;2021-12-16T13:35:42.134696Z;2021-11-11T11:29:33.746245Z;2021-10-16T00:21:16.296233Z +C:/Windows/SysWOW64/MrmDeploy.dll;file;246320;33206;2019-12-07T09:09:18.060978Z;;;2785144255;2;0;1125899907638570;4096;488;0;0;2021-12-16T13:35:42.150753Z;2021-11-11T11:29:33.755222Z;2019-12-07T09:09:18.060978Z +C:/Windows/SysWOW64/MrmIndexer.dll;file;604160;33206;2021-01-15T09:27:21.303371Z;;;2785144255;2;0;8725724278650020;4096;1184;0;0;2021-12-16T13:35:42.167693Z;2021-11-11T11:29:30.969528Z;2021-01-15T09:27:21.287750Z +C:/Windows/SysWOW64/mrt100.dll;file;28320;33206;2019-12-07T09:09:18.083266Z;;;2785144255;2;0;1125899907635340;4096;56;0;0;2021-12-16T13:35:42.192767Z;2021-11-11T11:29:33.755222Z;2019-12-07T09:09:18.083266Z +C:/Windows/SysWOW64/mrt_map.dll;file;30368;33206;2019-12-07T09:09:18.083266Z;;;2785144255;2;0;1125899907638880;4096;64;0;0;2021-12-16T13:35:42.181910Z;2021-11-11T11:29:33.754225Z;2019-12-07T09:09:18.083266Z +C:/Windows/SysWOW64/ms3dthumbnailprovider.dll;file;44544;33206;2021-01-15T09:27:21.475225Z;;;2785144255;2;0;11821949022467300;4096;88;0;0;2021-12-16T13:35:42.204552Z;2021-11-11T11:29:33.808081Z;2021-01-15T09:27:21.475225Z +C:/Windows/SysWOW64/msaatext.dll;file;121856;33206;2021-01-15T09:27:21.428342Z;;;2785144255;2;0;7036874418386110;4096;240;0;0;2021-12-16T13:35:42.218122Z;2021-11-11T11:29:33.812069Z;2021-01-15T09:27:21.428342Z +C:/Windows/SysWOW64/MSAC3ENC.DLL;file;200192;33206;2019-12-07T14:54:35.985096Z;;;2785144255;2;0;1125899907618660;4096;392;0;0;2021-12-16T13:35:42.232138Z;2021-11-11T11:29:32.483865Z;2019-12-07T09:10:11.990066Z +C:/Windows/SysWOW64/msacm32.dll;file;93472;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907635460;4096;184;0;0;2021-12-16T13:35:42.232992Z;2021-11-11T11:29:33.711338Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/msacm32.drv;file;23552;33206;2020-11-03T12:45:45.277011Z;;;2785144255;2;0;1125899907815900;4096;48;0;0;2021-12-16T13:35:42.233267Z;2021-11-11T11:29:33.706351Z;2020-11-03T12:45:45.277011Z +C:/Windows/SysWOW64/msadp32.acm;file;30128;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907637720;4096;64;0;0;2021-12-16T13:35:42.234093Z;2021-11-11T11:29:33.705354Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/msafd.dll;file;2560;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907637970;4096;8;0;0;2021-12-16T13:35:42.237848Z;2021-11-11T11:29:33.722309Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/MSAJApi.dll;file;2499584;33206;2019-12-07T09:09:17.426963Z;;;2785144255;2;0;1125899907628990;4096;4888;0;0;2021-12-16T13:35:42.259172Z;2021-11-11T11:29:34.214092Z;2019-12-07T09:09:17.426963Z +C:/Windows/SysWOW64/MSAlacDecoder.dll;file;46592;33206;2021-01-15T09:27:48.411949Z;;;2785144255;2;0;16888498603263200;4096;96;0;0;2021-12-16T13:35:42.272244Z;2021-11-11T11:29:34.304849Z;2021-01-15T09:27:48.411949Z +C:/Windows/SysWOW64/MSAlacEncoder.dll;file;57856;33206;2021-01-15T09:27:48.333842Z;;;2785144255;2;0;12666373952603400;4096;120;0;0;2021-12-16T13:35:42.284363Z;2021-11-11T11:29:32.485826Z;2021-01-15T09:27:48.333842Z +C:/Windows/SysWOW64/MSAMRNBDecoder.dll;file;127488;33206;2019-12-07T14:54:38.157260Z;;;2785144255;2;0;1125899907618510;4096;256;0;0;2021-12-16T13:35:42.297446Z;2021-11-11T11:29:34.304849Z;2019-12-07T09:10:14.272861Z +C:/Windows/SysWOW64/MSAMRNBEncoder.dll;file;201728;33206;2019-12-07T14:54:38.157260Z;;;2785144255;2;0;1125899907618600;4096;400;0;0;2021-12-16T13:35:42.311430Z;2021-11-11T11:29:34.304849Z;2019-12-07T09:10:14.272861Z +C:/Windows/SysWOW64/MSAMRNBSink.dll;file;29696;33206;2019-12-07T14:54:38.157260Z;;;2785144255;2;0;1125899907618520;4096;64;0;0;2021-12-16T13:35:42.323008Z;2021-11-11T11:29:34.304849Z;2019-12-07T09:10:14.272861Z +C:/Windows/SysWOW64/MSAMRNBSource.dll;file;89600;33206;2019-12-07T14:54:38.157260Z;;;2785144255;2;0;1125899907618440;4096;176;0;0;2021-12-16T13:35:42.335848Z;2021-11-11T11:29:34.304849Z;2019-12-07T09:10:14.272861Z +C:/Windows/SysWOW64/msasn1.dll;file;50616;33206;2020-11-03T12:45:51.900570Z;;;2785144255;2;0;562949954397202;4096;104;0;0;2021-12-16T13:35:42.335848Z;2021-11-11T11:29:33.766192Z;2020-11-03T12:45:51.900570Z +C:/Windows/SysWOW64/MSAudDecMFT.dll;file;453952;33206;2020-11-03T12:46:09.006039Z;;;2785144255;2;0;562949954402336;4096;888;0;0;2021-12-16T13:35:42.352816Z;2021-11-11T11:29:34.304849Z;2020-11-03T12:46:08.990386Z +C:/Windows/SysWOW64/msaudite.dll;file;155136;33206;2020-11-11T20:25:25.736479Z;;;2785144255;2;0;844424931073588;4096;304;0;0;2021-12-16T13:35:42.361799Z;2021-11-11T11:29:33.709343Z;2020-11-11T20:25:25.734447Z +C:/Windows/SysWOW64/msauserext.dll;file;18944;33206;2020-11-03T12:45:53.228355Z;;;2785144255;2;0;562949954397883;4096;40;0;0;2021-12-16T13:35:42.374455Z;2021-11-11T11:29:30.943626Z;2020-11-03T12:45:53.228355Z +C:/Windows/SysWOW64/mscandui.dll;file;233984;33206;2019-12-07T09:09:13.667398Z;;;2785144255;2;0;1407374884346820;4096;464;0;0;2021-12-16T13:35:42.389715Z;2021-11-11T11:29:33.716325Z;2019-12-07T09:09:13.667398Z +C:/Windows/SysWOW64/mscat32.dll;file;11776;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;1125899907637500;4096;24;0;0;2021-12-16T13:35:42.401061Z;2021-11-11T11:29:33.795115Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/msclmd.dll;file;206848;33206;2019-12-07T09:12:45.107686Z;;;2785144255;1;0;1125899907637550;4096;408;0;0;2021-12-16T13:35:42.413784Z;2020-11-03T12:35:44.609167Z;2019-12-07T09:15:00.205948Z +C:/Windows/SysWOW64/mscms.dll;file;594464;33206;2021-01-15T09:27:13.542984Z;;;2785144255;2;0;10133099162174700;4096;1168;0;0;2021-12-16T13:35:42.414747Z;2021-11-11T11:29:33.795115Z;2021-01-15T09:27:13.542984Z +C:/Windows/SysWOW64/mscoree.dll;file;314880;33206;2019-12-07T09:10:05.600989Z;;;2785144255;2;0;1125899907627080;4096;616;0;0;2021-12-16T13:35:42.414747Z;2021-11-11T11:29:32.052094Z;2019-12-07T09:10:05.600989Z +C:/Windows/SysWOW64/mscorier.dll;file;19968;33206;2019-12-07T09:10:05.600989Z;;;2785144255;2;0;1125899907626570;4096;40;0;0;2021-12-16T13:35:42.415744Z;2021-11-11T11:29:32.055506Z;2019-12-07T09:10:05.600989Z +C:/Windows/SysWOW64/mscories.dll;file;83832;33206;2019-12-07T09:10:05.600989Z;;;2785144255;2;0;1125899907627790;4096;168;0;0;2021-12-16T13:35:42.432697Z;2021-11-11T11:29:32.052331Z;2019-12-07T09:10:05.600989Z +C:/Windows/SysWOW64/mscpx32r.dLL;file;2560;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907628670;4096;8;0;0;2021-12-16T13:35:42.436687Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/mscpxl32.dLL;file;14848;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907629430;4096;32;0;0;2021-12-16T13:35:42.447658Z;2021-11-11T11:29:34.231045Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/msctf.dll;file;858880;33206;2021-10-03T19:02:01.061678Z;;;2785144255;2;0;1688849861186630;4096;1680;0;0;2021-12-16T13:35:42.447658Z;2021-11-11T11:29:33.787167Z;2021-10-03T19:02:01.003876Z +C:/Windows/SysWOW64/msctfime.ime;file;8704;33206;2019-12-07T09:09:13.667398Z;;;2785144255;2;0;1125899907636090;4096;24;0;0;2021-12-16T13:35:42.449249Z;2020-11-03T12:35:43.531295Z;2019-12-07T09:09:13.667398Z +C:/Windows/SysWOW64/MsCtfMonitor.dll;file;72192;33206;2020-11-03T12:45:46.292431Z;;;2785144255;2;0;4222124651633700;4096;144;0;0;2021-12-16T13:35:42.461982Z;2021-11-11T11:29:33.728293Z;2020-11-03T12:45:46.292431Z +C:/Windows/SysWOW64/msctfp.dll;file;91648;33206;2020-11-03T12:45:46.292431Z;;;2785144255;2;0;4222124651633700;4096;184;0;0;2021-12-16T13:35:42.474754Z;2021-11-11T11:29:33.714330Z;2020-11-03T12:45:46.292431Z +C:/Windows/SysWOW64/msctfui.dll;file;87040;33206;2019-12-07T09:09:13.677341Z;;;2785144255;2;0;1125899907639190;4096;176;0;0;2021-12-16T13:35:42.487991Z;2021-11-11T11:29:33.724303Z;2019-12-07T09:09:13.677341Z +C:/Windows/SysWOW64/msctfuimanager.dll;file;676864;33206;2021-01-15T09:27:10.041350Z;;;2785144255;2;0;9007199255328030;4096;1328;0;0;2021-12-16T13:35:42.514527Z;2021-11-11T11:29:33.717322Z;2021-01-15T09:27:10.041350Z +C:/Windows/SysWOW64/msdadiag.dll;file;146944;33206;2019-12-07T09:10:02.117309Z;;;2785144255;2;0;1125899907628300;4096;288;0;0;2021-12-16T13:35:42.534066Z;2021-11-11T11:29:34.217084Z;2019-12-07T09:10:02.117309Z +C:/Windows/SysWOW64/msdart.dll;file;121344;33206;2019-12-07T09:09:29.088570Z;;;2785144255;2;0;1125899907635270;4096;240;0;0;2021-12-16T13:35:42.550104Z;2021-11-11T11:29:30.950607Z;2019-12-07T09:09:29.088570Z +C:/Windows/SysWOW64/msdatsrc.tlb;file;5120;33206;2019-12-07T09:10:02.146090Z;;;2785144255;2;0;1125899907630500;4096;16;0;0;2021-12-16T13:35:42.552943Z;2020-11-03T12:35:39.813151Z;2019-12-07T09:10:02.146090Z +C:/Windows/SysWOW64/msdelta.dll;file;427536;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;2251799814119180;4096;840;0;0;2021-12-16T13:35:42.556115Z;2021-11-11T11:29:33.797110Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/msdmo.dll;file;28896;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907634660;4096;64;0;0;2021-12-16T13:35:42.557111Z;2021-11-11T11:29:33.708346Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/MSDRM;directory;0;16822;2019-12-07T09:15:00.909171Z;;;2785144255;1;0;3096224744138030;4096;0;0;0;2021-12-16T13:36:01.183773Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/MSDRM/MsoIrmProtector.doc;file;24064;33206;2019-12-07T09:09:21.302568Z;;;2785144255;2;0;1125899907634950;4096;48;0;0;2021-02-22T08:01:24.505767Z;2021-02-22T08:01:24.505767Z;2019-12-07T09:09:21.302568Z +C:/Windows/SysWOW64/MSDRM/MsoIrmProtector.ppt;file;8704;33206;2019-12-07T09:09:21.302568Z;;;2785144255;2;0;1407374884349530;4096;24;0;0;2021-02-22T08:01:24.505998Z;2021-02-22T08:01:24.505998Z;2019-12-07T09:09:21.302568Z +C:/Windows/SysWOW64/MSDRM/MsoIrmProtector.xls;file;13824;33206;2019-12-07T09:09:21.302568Z;;;2785144255;2;0;1125899907639020;4096;32;0;0;2021-02-22T08:01:24.506273Z;2021-02-22T08:01:24.506273Z;2019-12-07T09:09:21.302568Z +C:/Windows/SysWOW64/msdrm.dll;file;438272;33206;2019-12-07T09:09:11.968292Z;;;2785144255;2;0;1125899907639090;4096;856;0;0;2021-12-16T13:35:42.571930Z;2021-11-11T11:29:33.700367Z;2019-12-07T09:09:11.968292Z +C:/Windows/SysWOW64/msdt.exe;file;344064;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907628260;4096;672;0;0;2021-12-16T13:35:42.602874Z;2021-11-11T11:29:34.248997Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/Msdtc;;;;;;;;;;;;;;;;; +C:/Windows/SysWOW64/msdtcprx.dll;file;706560;33206;2019-12-07T09:09:57.865923Z;;;2785144255;2;0;1125899907629070;4096;1384;0;0;2021-12-16T13:35:42.621512Z;2021-11-11T11:29:34.202158Z;2019-12-07T09:09:57.865923Z +C:/Windows/SysWOW64/msdtcspoffln.dll;file;12800;33206;2019-12-07T09:09:57.865923Z;;;2785144255;2;0;1125899907629200;4096;32;0;0;2021-12-16T13:35:42.632556Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.865923Z +C:/Windows/SysWOW64/msdtcuiu.dll;file;263168;33206;2021-01-15T09:27:34.522020Z;;;2785144255;2;0;36591746973007300;4096;520;0;0;2021-12-16T13:35:42.647941Z;2021-11-11T11:29:34.213094Z;2021-01-15T09:27:34.522020Z +C:/Windows/SysWOW64/msdtcVSp1res.dll;file;22528;33206;2019-12-07T09:09:22.208345Z;;;2785144255;2;0;1125899907634770;4096;48;0;0;2021-12-16T13:35:42.653951Z;2021-11-11T11:29:33.771179Z;2019-12-07T09:09:22.208345Z +C:/Windows/SysWOW64/MSDvbNP.ax;file;66560;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907630470;4096;136;0;0;2021-12-16T13:35:42.665892Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/msdxm.ocx;file;5632;33206;2021-10-16T00:21:37.948115Z;;;2785144255;2;0;281474977858426;4096;16;0;0;2021-12-16T13:35:42.676158Z;2021-11-11T11:29:35.571412Z;2021-10-16T00:21:37.948115Z +C:/Windows/SysWOW64/msdxm.tlb;file;44032;33206;2019-12-06T18:27:00Z;;;2785144255;2;0;1125899907619600;4096;88;0;0;2021-12-16T13:35:42.681549Z;2021-11-15T13:07:18.033808Z;2019-12-07T14:52:21.126178Z +C:/Windows/SysWOW64/msexch40.dll;file;409600;33206;2019-12-07T09:10:02.195070Z;;;2785144255;2;0;1125899907630460;4096;800;0;0;2021-12-16T13:35:42.699919Z;2021-11-11T11:29:34.230049Z;2019-12-07T09:10:02.195070Z +C:/Windows/SysWOW64/msexcl40.dll;file;341504;33206;2020-11-03T12:46:02.523189Z;;;2785144255;2;0;562949954400505;4096;672;0;0;2021-12-16T13:35:42.718329Z;2021-11-11T11:29:34.224102Z;2020-11-03T12:46:02.523189Z +C:/Windows/SysWOW64/msfeeds.dll;file;667648;33206;2021-11-11T11:29:08.099349Z;;;2785144255;2;0;281474977879572;4096;1304;0;0;2021-12-16T13:35:42.720348Z;2021-11-11T11:38:50.543626Z;2021-11-11T11:29:08.089375Z +C:/Windows/SysWOW64/msfeedsbs.dll;file;64000;33206;2019-12-07T09:10:00.554367Z;;;2785144255;2;0;1125899907628920;4096;128;0;0;2021-12-16T13:35:42.732675Z;2021-11-11T11:29:34.222071Z;2019-12-07T09:10:00.554367Z +C:/Windows/SysWOW64/msfeedssync.exe;file;13312;33206;2019-12-07T09:10:00.554367Z;;;2785144255;2;0;1125899907630810;4096;32;0;0;2021-12-16T13:35:42.742536Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:10:00.554367Z +C:/Windows/SysWOW64/MSFlacDecoder.dll;file;385536;33206;2021-11-11T11:29:14.425745Z;;;2785144255;2;0;281474977879663;4096;760;0;0;2021-12-16T13:35:42.756495Z;2021-11-11T11:38:51.129725Z;2021-11-11T11:29:14.418086Z +C:/Windows/SysWOW64/MSFlacEncoder.dll;file;239616;33206;2021-01-15T09:27:48.333842Z;;;2785144255;2;0;21392098230633700;4096;472;0;0;2021-12-16T13:35:42.770791Z;2021-11-11T11:29:32.484830Z;2021-01-15T09:27:48.333842Z +C:/Windows/SysWOW64/msftedit.dll;file;2734592;33206;2021-10-16T00:21:15.948463Z;;;2785144255;2;0;281474977857331;4096;5344;0;0;2021-12-16T13:35:42.771970Z;2021-11-11T11:29:33.805088Z;2021-10-16T00:21:15.879491Z +C:/Windows/SysWOW64/msg711.acm;file;22928;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907635810;4096;48;0;0;2021-12-16T13:35:42.773033Z;2021-11-11T11:29:33.704357Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/msgsm32.acm;file;36344;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907635970;4096;72;0;0;2021-12-16T13:35:42.773822Z;2021-11-11T11:29:33.701365Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/MSHEIF.dll;file;28160;33206;2021-06-10T14:01:54.893578Z;;;2785144255;2;0;281474977765921;4096;56;0;0;2021-12-16T13:35:42.785575Z;2021-11-11T11:29:34.302854Z;2021-06-10T14:01:54.893578Z +C:/Windows/SysWOW64/mshta.exe;file;13312;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907627930;4096;32;0;0;2021-12-16T13:35:42.810257Z;2021-11-11T11:29:34.218116Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/mshtml.dll;file;18084352;33206;2021-11-11T11:29:09.252044Z;;;2785144255;2;0;281474977879576;4096;35328;0;0;2021-12-16T13:35:42.815025Z;2021-11-11T11:38:51.392250Z;2021-11-11T11:29:08.782488Z +C:/Windows/SysWOW64/mshtml.tlb;file;2755584;33206;2021-10-03T19:02:54.045586Z;;;2785144255;2;0;1688849861187670;4096;5384;0;0;2021-12-16T13:35:42.831955Z;2021-12-16T12:06:18.167712Z;2021-10-03T19:02:53.949858Z +C:/Windows/SysWOW64/MshtmlDac.dll;file;62976;33206;2019-12-07T09:10:00.537776Z;;;2785144255;2;0;1125899907630240;4096;128;0;0;2021-12-16T13:35:42.844667Z;2021-11-11T11:29:34.227087Z;2019-12-07T09:10:00.537776Z +C:/Windows/SysWOW64/mshtmled.dll;file;79872;33206;2021-01-15T09:27:35.068767Z;;;2785144255;2;0;5629499534835240;4096;160;0;0;2021-12-16T13:35:42.858632Z;2021-11-11T11:29:34.232043Z;2021-01-15T09:27:35.068767Z +C:/Windows/SysWOW64/mshtmler.dll;file;49152;33206;2019-12-07T09:10:00.522274Z;;;2785144255;2;0;1125899907628360;4096;96;0;0;2021-12-16T13:35:42.866717Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:10:00.522274Z +C:/Windows/SysWOW64/msi.dll;file;2663936;33206;2021-11-11T11:29:09.963336Z;;;2785144255;2;0;281474977879586;4096;5208;0;0;2021-12-16T13:35:42.867714Z;2021-11-11T11:38:50.765279Z;2021-11-11T11:29:09.917458Z +C:/Windows/SysWOW64/msidcrl40.dll;file;13312;33206;2020-11-03T12:45:53.244016Z;;;2785144255;2;0;562949954397886;4096;32;0;0;2021-12-16T13:35:42.877687Z;2021-11-11T11:29:30.970526Z;2020-11-03T12:45:53.244016Z +C:/Windows/SysWOW64/msident.dll;file;51200;33206;2019-12-07T09:09:29.110333Z;;;2785144255;2;0;1125899907636140;4096;104;0;0;2021-12-16T13:35:42.894642Z;2021-11-11T11:29:30.941631Z;2019-12-07T09:09:29.110333Z +C:/Windows/SysWOW64/msidle.dll;file;9728;33206;2019-12-07T09:09:29.110333Z;;;2785144255;2;0;1125899907638410;4096;24;0;0;2021-12-16T13:35:42.905641Z;2021-11-11T11:29:30.948613Z;2019-12-07T09:09:29.110333Z +C:/Windows/SysWOW64/msidntld.dll;file;5120;33206;2019-12-07T09:09:29.110333Z;;;2785144255;2;0;1125899907637110;4096;16;0;0;2021-12-16T13:35:42.909435Z;2021-11-11T11:29:30.978523Z;2019-12-07T09:09:29.110333Z +C:/Windows/SysWOW64/msieftp.dll;file;232960;33206;2021-11-11T11:28:57.261700Z;;;2785144255;2;0;281474977878952;4096;456;0;0;2021-12-16T13:35:42.929385Z;2021-11-11T11:38:52.051608Z;2021-11-11T11:28:57.259704Z +C:/Windows/SysWOW64/msiexec.exe;file;59904;33206;2019-12-07T09:10:02.225387Z;;;2785144255;2;0;1125899907628180;4096;120;0;0;2021-12-16T13:35:42.957875Z;2021-11-11T11:29:34.237030Z;2019-12-07T09:10:02.225387Z +C:/Windows/SysWOW64/msihnd.dll;file;323072;33206;2019-12-07T09:10:02.225387Z;;;2785144255;2;0;1125899907629960;4096;632;0;0;2021-12-16T13:35:42.976879Z;2021-11-11T11:29:34.240064Z;2019-12-07T09:10:02.225387Z +C:/Windows/SysWOW64/msiltcfg.dll;file;17408;33206;2019-12-07T09:10:02.225387Z;;;2785144255;2;0;1125899907628350;4096;40;0;0;2021-12-16T13:35:42.988325Z;2021-11-11T11:29:34.239061Z;2019-12-07T09:10:02.225387Z +C:/Windows/SysWOW64/msimg32.dll;file;7168;33206;2020-11-03T12:45:52.119276Z;;;2785144255;2;0;2251799814661190;4096;16;0;0;2021-12-16T13:35:42.988767Z;2021-11-11T11:29:33.794117Z;2020-11-03T12:45:52.119276Z +C:/Windows/SysWOW64/msimsg.dll;file;26112;33206;2021-11-11T11:29:09.980719Z;;;2785144255;2;0;281474977879587;4096;56;0;0;2021-12-16T13:35:42.995751Z;2021-11-11T11:38:51.603335Z;2021-11-11T11:29:09.979719Z +C:/Windows/SysWOW64/msimtf.dll;file;36864;33206;2019-12-07T09:09:13.677341Z;;;2785144255;2;0;1125899907638180;4096;72;0;0;2021-12-16T13:35:42.995751Z;2021-11-11T11:29:33.722309Z;2019-12-07T09:09:13.677341Z +C:/Windows/SysWOW64/msinfo32.exe;file;338432;33206;2021-07-16T09:18:10.189375Z;;;2785144255;2;0;281474977817275;4096;664;0;0;2021-12-16T13:35:43.049136Z;2021-11-11T11:29:31.747355Z;2021-07-16T09:18:10.173755Z +C:/Windows/SysWOW64/msisip.dll;file;64000;33206;2021-10-16T00:21:30.408511Z;;;2785144255;2;0;281474977857991;4096;128;0;0;2021-12-16T13:35:43.050391Z;2021-11-11T11:29:34.238065Z;2021-10-16T00:21:30.392888Z +C:/Windows/SysWOW64/msIso.dll;file;252928;33206;2021-10-16T00:21:18.786863Z;;;2785144255;2;0;281474977857641;4096;496;0;0;2021-12-16T13:35:43.052389Z;2021-11-11T11:29:33.784180Z;2021-10-16T00:21:18.786863Z +C:/Windows/SysWOW64/msiwer.dll;file;9728;33206;2019-12-07T09:10:02.225387Z;;;2785144255;2;0;1125899907630580;4096;24;0;0;2021-12-16T13:35:43.063220Z;2021-11-11T11:29:34.236070Z;2019-12-07T09:10:02.225387Z +C:/Windows/SysWOW64/msjet40.dll;file;1317376;33206;2021-10-16T00:21:30.392888Z;;;2785144255;2;0;281474977857990;4096;2576;0;0;2021-12-16T13:35:43.082532Z;2021-11-11T11:29:34.225100Z;2021-10-16T00:21:30.367218Z +C:/Windows/SysWOW64/msjetoledb40.dll;file;518144;33206;2019-12-07T09:10:02.195070Z;;;2785144255;2;0;1125899907629520;4096;1016;0;0;2021-12-16T13:35:43.100442Z;2021-11-11T11:29:34.232043Z;2019-12-07T09:10:02.195070Z +C:/Windows/SysWOW64/msjint40.dll;file;8704;33206;2019-12-07T09:10:02.195070Z;;;2785144255;2;0;1125899907628380;4096;24;0;0;2021-12-16T13:35:43.111361Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:02.195070Z +C:/Windows/SysWOW64/msjter40.dll;file;83968;33206;2019-12-07T09:10:02.178772Z;;;2785144255;2;0;1125899907629740;4096;168;0;0;2021-12-16T13:35:43.126308Z;2021-11-11T11:29:34.228087Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/msjtes40.dll;file;290816;33206;2019-12-07T09:10:02.195070Z;;;2785144255;2;0;1125899907628790;4096;568;0;0;2021-12-16T13:35:43.143244Z;2021-11-11T11:29:34.233040Z;2019-12-07T09:10:02.195070Z +C:/Windows/SysWOW64/mskeyprotcli.dll;file;135168;33206;2020-11-03T12:45:50.416514Z;;;2785144255;2;0;562949954396495;4096;264;0;0;2021-12-16T13:35:43.156992Z;2021-11-11T11:29:34.235034Z;2020-11-03T12:45:50.416514Z +C:/Windows/SysWOW64/mskeyprotect.dll;file;49664;33206;2021-10-03T19:02:13.761614Z;;;2785144255;2;0;1688849861186920;4096;104;0;0;2021-12-16T13:35:43.156992Z;2021-11-11T11:29:33.791164Z;2021-10-03T19:02:13.754920Z +C:/Windows/SysWOW64/msls31.dll;file;183808;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907637030;4096;360;0;0;2021-12-16T13:35:43.159634Z;2021-11-11T11:29:33.813066Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/msltus40.dll;file;241152;33206;2020-11-03T12:46:02.538773Z;;;2785144255;2;0;562949954400506;4096;472;0;0;2021-12-16T13:35:43.176617Z;2021-11-11T11:29:34.223103Z;2020-11-03T12:46:02.538773Z +C:/Windows/SysWOW64/msmpeg2adec.dll;file;860488;33206;2019-12-07T14:54:42.094240Z;;;2785144255;2;0;1125899907618420;4096;1688;0;0;2021-12-16T13:35:43.191726Z;2021-11-11T11:29:32.498716Z;2019-12-07T09:10:14.288474Z +C:/Windows/SysWOW64/MSMPEG2ENC.DLL;file;801792;33206;2019-12-07T14:54:39.094249Z;;;2785144255;2;0;1125899907618470;4096;1568;0;0;2021-12-16T13:35:43.208877Z;2021-11-11T11:29:32.484830Z;2019-12-07T09:10:11.990066Z +C:/Windows/SysWOW64/msmpeg2vdec.dll;file;2339248;33206;2021-11-11T11:29:14.402006Z;;;2785144255;2;0;281474977879662;4096;4576;0;0;2021-12-16T13:35:43.208877Z;2021-11-11T11:38:51.949746Z;2021-11-11T11:29:14.358081Z +C:/Windows/SysWOW64/MSNP.ax;file;213504;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907629440;4096;424;0;0;2021-12-16T13:35:43.223776Z;2021-11-11T11:29:34.241020Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/msobjs.dll;file;63488;33206;2020-11-11T20:25:25.745466Z;;;2785144255;2;0;844424931073589;4096;128;0;0;2021-12-16T13:35:43.232669Z;2021-11-11T11:29:33.710341Z;2020-11-11T20:25:25.742877Z +C:/Windows/SysWOW64/msoert2.dll;file;97280;33206;2021-04-17T10:35:21.824306Z;;;2785144255;2;0;844424930952043;4096;192;0;0;2021-12-16T13:35:43.245488Z;2021-11-11T11:29:34.230049Z;2021-04-17T10:35:21.819465Z +C:/Windows/SysWOW64/MSOpusDecoder.dll;file;142336;33206;2021-01-15T09:27:48.443192Z;;;2785144255;2;0;19703248370369800;4096;280;0;0;2021-12-16T13:35:43.259546Z;2021-11-11T11:29:34.304849Z;2021-01-15T09:27:48.427604Z +C:/Windows/SysWOW64/msorc32r.dll;file;2560;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907628340;4096;8;0;0;2021-12-16T13:35:43.262920Z;2021-11-11T11:29:34.224102Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/msorcl32.dll;file;160256;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907629840;4096;320;0;0;2021-12-16T13:35:43.276476Z;2021-11-11T11:29:34.225100Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/mspaint.exe;file;743424;33206;2019-12-06T19:39:00Z;;;2785144255;2;0;18295873486874400;4096;1456;0;0;2021-12-16T13:35:43.305768Z;2020-11-03T12:35:25.128947Z;2019-12-07T14:53:46.301047Z +C:/Windows/SysWOW64/mspatcha.dll;file;44560;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;2251799814119200;4096;88;0;0;2021-12-16T13:35:43.317702Z;2021-11-11T11:29:33.790129Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/mspatchc.dll;file;64000;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;1125899907638220;4096;128;0;0;2021-12-16T13:35:43.329882Z;2021-11-11T11:29:33.793120Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/mspbde40.dll;file;376320;33206;2019-12-07T09:10:02.195070Z;;;2785144255;2;0;1125899907630440;4096;736;0;0;2021-12-16T13:35:43.347658Z;2021-11-11T11:29:34.223103Z;2019-12-07T09:10:02.195070Z +C:/Windows/SysWOW64/MSPhotography.dll;file;1431040;33206;2021-06-10T14:01:54.608483Z;;;2785144255;2;0;281474977765916;4096;2800;0;0;2021-12-16T13:35:43.363632Z;2021-11-11T11:29:34.300859Z;2021-06-10T14:01:54.593075Z +C:/Windows/SysWOW64/msports.dll;file;46592;33206;2019-12-07T09:10:04.257180Z;;;2785144255;2;0;1125899907630320;4096;96;0;0;2021-12-16T13:35:43.379589Z;2021-11-11T11:29:34.253035Z;2019-12-07T09:10:04.257180Z +C:/Windows/SysWOW64/msra.exe;file;76800;33206;2021-07-16T09:18:14.079403Z;;;2785144255;2;0;281474977817493;4096;152;0;0;2021-12-16T13:35:43.394550Z;2021-11-11T11:29:31.450023Z;2021-07-16T09:18:14.079403Z +C:/Windows/SysWOW64/MsraLegacy.tlb;file;7680;33206;2021-07-16T09:18:13.678454Z;;;2785144255;2;0;281474977817344;4096;16;0;0;2021-12-16T13:35:43.397542Z;2021-07-16T09:20:01.858200Z;2021-07-16T09:18:13.678454Z +C:/Windows/SysWOW64/msrating.dll;file;10240;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907638310;4096;24;0;0;2021-12-16T13:35:43.409463Z;2021-11-11T11:29:33.795115Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/MSRAWImage.dll;file;28672;33206;2021-01-15T09:27:48.302600Z;;;2785144255;2;0;10133099162207500;4096;56;0;0;2021-12-16T13:35:43.421274Z;2021-11-11T11:29:34.302854Z;2021-01-15T09:27:48.302600Z +C:/Windows/SysWOW64/msrd2x40.dll;file;313344;33206;2019-12-07T09:10:02.195070Z;;;2785144255;2;0;1125899907629060;4096;616;0;0;2021-12-16T13:35:43.437642Z;2021-11-11T11:29:34.230049Z;2019-12-07T09:10:02.195070Z +C:/Windows/SysWOW64/msrd3x40.dll;file;353792;33206;2020-11-03T12:46:02.507568Z;;;2785144255;2;0;562949954400504;4096;696;0;0;2021-12-16T13:35:43.453517Z;2021-11-11T11:29:34.230049Z;2020-11-03T12:46:02.507568Z +C:/Windows/SysWOW64/msrdc.dll;file;149504;33206;2021-01-15T09:27:38.129661Z;;;2785144255;2;0;10977524092338200;4096;296;0;0;2021-12-16T13:35:43.467915Z;2021-11-11T11:29:34.238065Z;2021-01-15T09:27:38.114021Z +C:/Windows/SysWOW64/MsRdpWebAccess.dll;file;51200;33206;2021-01-15T09:27:38.707631Z;;;2785144255;2;0;11821949022470200;4096;104;0;0;2021-12-16T13:35:43.481060Z;2021-11-11T11:29:34.248Z;2021-01-15T09:27:38.707631Z +C:/Windows/SysWOW64/msrepl40.dll;file;616448;33206;2019-12-07T09:10:02.195070Z;;;2785144255;2;0;1125899907630110;4096;1208;0;0;2021-12-16T13:35:43.499043Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:02.195070Z +C:/Windows/SysWOW64/msrle32.dll;file;14848;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907629050;4096;32;0;0;2021-12-16T13:35:43.512117Z;2021-11-11T11:29:34.245008Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/msscntrs.dll;file;49664;33206;2021-10-03T19:02:05.306798Z;;;2785144255;2;0;1688849861186670;4096;104;0;0;2021-12-16T13:35:43.523740Z;2021-11-11T11:29:33.744251Z;2021-10-03T19:02:05.305800Z +C:/Windows/SysWOW64/msscript.ocx;file;100864;33206;2019-12-07T09:09:32.380631Z;;;2785144255;2;0;1125899907634960;4096;200;0;0;2021-12-16T13:35:43.538103Z;2021-11-11T11:29:33.805088Z;2019-12-07T09:09:32.380631Z +C:/Windows/SysWOW64/mssign32.dll;file;60416;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;1125899907636700;4096;120;0;0;2021-12-16T13:35:43.549868Z;2021-11-11T11:29:33.796165Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/mssip32.dll;file;9216;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;1125899907639110;4096;24;0;0;2021-12-16T13:35:43.562536Z;2021-11-11T11:29:33.788164Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/mssitlb.dll;file;114176;33206;2021-10-03T19:02:05.324284Z;;;2785144255;2;0;1688849861186670;4096;224;0;0;2021-12-16T13:35:43.574934Z;2021-11-11T11:29:33.738267Z;2021-10-03T19:02:05.318679Z +C:/Windows/SysWOW64/MsSpellCheckingFacility.dll;file;690176;33206;2021-01-15T09:27:51.369931Z;;;2785144255;2;0;11540474045761800;4096;1352;0;0;2021-12-16T13:35:43.599029Z;2021-11-11T11:29:33.714330Z;2021-01-15T09:27:51.354276Z +C:/Windows/SysWOW64/mssph.dll;file;164352;33206;2021-10-03T19:02:05.495524Z;;;2785144255;2;0;1688849861186680;4096;328;0;0;2021-12-16T13:35:43.613266Z;2021-11-11T11:29:33.734277Z;2021-10-03T19:02:05.487974Z +C:/Windows/SysWOW64/mssprxy.dll;file;59904;33206;2021-10-03T19:02:05.587782Z;;;2785144255;2;0;1688849861186680;4096;120;0;0;2021-12-16T13:35:43.614190Z;2021-11-11T11:29:33.744251Z;2021-10-03T19:02:05.583043Z +C:/Windows/SysWOW64/mssrch.dll;file;2309120;33206;2021-10-03T19:02:09.775121Z;;;2785144255;2;0;1688849861186900;4096;4512;0;0;2021-12-16T13:35:43.635881Z;2021-11-11T11:29:33.744251Z;2021-10-03T19:02:09.572634Z +C:/Windows/SysWOW64/mssvp.dll;file;303616;33206;2021-10-03T19:02:05.564888Z;;;2785144255;2;0;1688849861186680;4096;600;0;0;2021-12-16T13:35:43.650882Z;2021-11-11T11:29:33.738267Z;2021-10-03T19:02:05.547133Z +C:/Windows/SysWOW64/mstask.dll;file;112640;33206;2019-12-07T09:09:13.667398Z;;;2785144255;2;0;1125899907634730;4096;224;0;0;2021-12-16T13:35:43.664462Z;2021-11-11T11:29:33.725301Z;2019-12-07T09:09:13.667398Z +C:/Windows/SysWOW64/mstext40.dll;file;272896;33206;2021-04-17T10:35:22.013358Z;;;2785144255;2;0;844424930952045;4096;536;0;0;2021-12-16T13:35:43.682820Z;2021-11-11T11:29:34.229083Z;2021-04-17T10:35:21.989409Z +C:/Windows/SysWOW64/mstsc.exe;file;1264640;33206;2021-10-16T00:21:30.705198Z;;;2785144255;2;0;281474977857997;4096;2472;0;0;2021-12-16T13:35:43.714756Z;2021-11-11T11:29:34.245008Z;2021-10-16T00:21:30.679474Z +C:/Windows/SysWOW64/mstscax.dll;file;7127040;33206;2021-11-11T11:29:10.184062Z;;;2785144255;2;0;281474977879590;4096;13920;0;0;2021-12-16T13:35:43.745072Z;2021-11-11T11:38:52.092268Z;2021-11-11T11:29:10.002547Z +C:/Windows/SysWOW64/msutb.dll;file;193024;33206;2020-11-03T12:45:46.292431Z;;;2785144255;2;0;4222124651633700;4096;384;0;0;2021-12-16T13:35:43.761152Z;2021-11-11T11:29:33.726298Z;2020-11-03T12:45:46.292431Z +C:/Windows/SysWOW64/msv1_0.dll;file;442192;33206;2021-11-11T11:29:00.483374Z;;;2785144255;2;0;281474977879224;4096;864;0;0;2021-12-16T13:35:43.762119Z;2021-11-11T11:38:50.278800Z;2021-11-11T11:29:00.473398Z +C:/Windows/SysWOW64/msvbvm60.dll;file;1436032;33206;2020-12-09T00:08:29.076866Z;;;2785144255;2;0;844424930505819;4096;2808;0;0;2021-12-16T13:35:43.786055Z;2021-11-11T11:29:33.806085Z;2020-12-09T00:08:29.061238Z +C:/Windows/SysWOW64/msvcirt.dll;file;64512;33206;2019-12-07T09:09:13.739223Z;;;2785144255;2;0;1125899907638820;4096;128;0;0;2021-12-16T13:35:43.799971Z;2021-11-11T11:29:33.720314Z;2019-12-07T09:09:13.739223Z +C:/Windows/SysWOW64/msvcp100.dll;file;421200;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;562949953589131;4096;824;0;0;2021-12-16T13:35:43.801970Z;2020-11-03T12:52:03.285130Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/msvcp110.dll;file;535008;33206;2012-11-06T00:20:52Z;;;2785144255;1;0;562949953589139;4096;1048;0;0;2021-12-16T13:35:43.805056Z;2019-11-20T13:34:39.508546Z;2012-11-06T00:20:52Z +C:/Windows/SysWOW64/msvcp110_win.dll;file;408000;33206;2020-11-03T12:45:45.214527Z;;;2785144255;2;0;1125899907815890;4096;800;0;0;2021-12-16T13:35:43.805056Z;2021-11-11T11:29:33.709343Z;2020-11-03T12:45:45.198939Z +C:/Windows/SysWOW64/msvcp120.dll;file;455328;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894960;4096;896;0;0;2021-12-16T13:35:43.806967Z;2019-09-17T00:14:54.714262Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/msvcp120_clr0400.dll;file;485576;33206;2019-12-07T09:10:47.556235Z;;;2785144255;2;0;1125899907625680;4096;952;0;0;2021-12-16T13:35:43.822109Z;2021-11-11T11:29:31.930089Z;2019-12-07T09:10:47.556235Z +C:/Windows/SysWOW64/msvcp140.dll;file;450320;33206;2019-09-27T18:04:10Z;;;2785144255;1;0;28710447624983500;4096;880;0;0;2021-12-16T13:35:43.824968Z;2020-05-14T16:25:28.948919Z;2019-09-27T18:04:10Z +C:/Windows/SysWOW64/msvcp140_1.dll;file;28952;33206;2019-09-27T18:04:08Z;;;2785144255;1;0;23925373020902600;4096;64;0;0;2021-12-16T13:35:43.836939Z;2020-11-03T12:52:03.285130Z;2019-09-27T18:04:08Z +C:/Windows/SysWOW64/msvcp140_2.dll;file;173336;33206;2019-09-27T18:04:16Z;;;2785144255;1;0;23643898044192000;4096;344;0;0;2021-12-16T13:35:43.851295Z;2020-11-03T12:52:03.285130Z;2019-09-27T18:04:16Z +C:/Windows/SysWOW64/msvcp140_clr0400.dll;file;433448;33206;2019-12-07T09:10:48.696460Z;;;2785144255;2;0;1125899907626700;4096;848;0;0;2021-12-16T13:35:43.853292Z;2021-11-11T11:29:32.006212Z;2019-12-07T09:10:48.696460Z +C:/Windows/SysWOW64/msvcp140_codecvt_ids.dll;file;26392;33206;2019-09-27T18:04:14Z;;;2785144255;1;0;25895697857877400;4096;56;0;0;2021-12-16T13:35:43.864802Z;2020-11-03T12:52:03.285130Z;2019-09-27T18:04:14Z +C:/Windows/SysWOW64/msvcp60.dll;file;445952;33206;2019-12-07T09:09:25.333427Z;;;2785144255;2;0;1125899907635860;4096;872;0;0;2021-12-16T13:35:43.866800Z;2021-11-11T11:29:33.771179Z;2019-12-07T09:09:25.333427Z +C:/Windows/SysWOW64/msvcp_win.dll;file;495840;33206;2021-02-11T15:05:14.895283Z;;;2785144255;2;0;562949954318950;4096;976;0;0;2021-12-16T13:35:43.799971Z;2021-11-11T11:29:33.775168Z;2021-02-11T15:05:14.879630Z +C:/Windows/SysWOW64/msvcr100.dll;file;773968;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;562949953589126;4096;1512;0;0;2021-12-16T13:35:43.870974Z;2020-11-03T12:52:03.285130Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/msvcr100_clr0400.dll;file;18920;33206;2019-12-07T09:10:48.602609Z;;;2785144255;2;0;1688849861008790;4096;40;0;0;2021-12-16T13:35:43.874584Z;2021-11-11T11:29:32.037070Z;2019-12-07T09:10:48.602609Z +C:/Windows/SysWOW64/msvcr110.dll;file;875472;33206;2012-11-06T00:20:52Z;;;2785144255;1;0;562949953589134;4096;1712;0;0;2021-12-16T13:35:43.877784Z;2019-11-20T13:34:39.503548Z;2012-11-06T00:20:52Z +C:/Windows/SysWOW64/msvcr120.dll;file;970912;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894960;4096;1904;0;0;2021-12-16T13:35:43.880051Z;2019-09-17T00:14:54.718596Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/msvcr120_clr0400.dll;file;987840;33206;2019-12-07T09:10:48.539675Z;;;2785144255;2;0;1125899907623760;4096;1936;0;0;2021-12-16T13:35:43.901549Z;2021-11-11T11:29:32.038067Z;2019-12-07T09:10:48.539675Z +C:/Windows/SysWOW64/msvcrt.dll;file;775256;33206;2020-11-03T12:45:45.417611Z;;;2785144255;2;0;1125899907815920;4096;1520;0;0;2021-12-16T13:35:43.901549Z;2021-11-11T11:29:33.701365Z;2020-11-03T12:45:45.417611Z +C:/Windows/SysWOW64/msvcrt20.dll;file;253952;33206;2019-12-07T09:09:13.755253Z;;;2785144255;2;0;1125899907638210;4096;496;0;0;2021-12-16T13:35:43.920506Z;2021-11-11T11:29:33.722309Z;2019-12-07T09:09:13.755253Z +C:/Windows/SysWOW64/msvcrt40.dll;file;60928;33206;2019-12-07T09:09:13.739223Z;;;2785144255;2;0;1125899907636910;4096;120;0;0;2021-12-16T13:35:43.924511Z;2021-11-11T11:29:33.720314Z;2019-12-07T09:09:13.739223Z +C:/Windows/SysWOW64/msvfw32.dll;file;124416;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907627930;4096;248;0;0;2021-12-16T13:35:43.924511Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/msvidc32.dll;file;33280;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907629970;4096;72;0;0;2021-12-16T13:35:43.938056Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/MSVidCtl.dll;file;2205184;33206;2021-01-15T09:27:38.816980Z;;;2785144255;2;0;17169973579972700;4096;4312;0;0;2021-12-16T13:35:43.962569Z;2021-11-11T11:29:34.246005Z;2021-01-15T09:27:38.785736Z +C:/Windows/SysWOW64/MSVideoDSP.dll;file;570760;33206;2021-01-15T09:27:48.286979Z;;;2785144255;2;0;10133099162207500;4096;1120;0;0;2021-12-16T13:35:43.982546Z;2021-11-11T11:29:34.302854Z;2021-01-15T09:27:48.286979Z +C:/Windows/SysWOW64/MSVP9DEC.dll;file;35096;33206;2021-01-15T09:27:48.427604Z;;;2785144255;2;0;26740122788136200;4096;72;0;0;2021-12-16T13:35:44.000506Z;2021-11-11T11:29:34.304849Z;2021-01-15T09:27:48.427604Z +C:/Windows/SysWOW64/msvproc.dll;file;1260208;33206;2021-02-11T15:05:29.764497Z;;;2785144255;2;0;562949954319563;4096;2464;0;0;2021-12-16T13:35:44.001463Z;2021-11-11T11:29:34.300859Z;2021-02-11T15:05:29.748917Z +C:/Windows/SysWOW64/MSVPXENC.dll;file;35080;33206;2021-01-15T09:27:48.427604Z;;;2785144255;2;0;16607023626552600;4096;72;0;0;2021-12-16T13:35:44.015427Z;2021-11-11T11:29:34.304849Z;2021-01-15T09:27:48.427604Z +C:/Windows/SysWOW64/MSWB7.dll;file;198792;33206;2020-11-03T12:45:45.667545Z;;;2785144255;2;0;1125899907815960;4096;392;0;0;2021-12-16T13:35:44.029137Z;2021-11-11T11:29:33.719317Z;2020-11-03T12:45:45.667545Z +C:/Windows/SysWOW64/mswdat10.dll;file;866816;33206;2019-12-07T09:10:02.178772Z;;;2785144255;2;0;1125899907629500;4096;1696;0;0;2021-12-16T13:35:44.047592Z;2021-11-11T11:29:34.230049Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/MSWebp.dll;file;26624;33206;2021-01-15T09:27:48.318222Z;;;2785144255;2;0;6755399441679610;4096;56;0;0;2021-12-16T13:35:44.060532Z;2021-11-11T11:29:34.301895Z;2021-01-15T09:27:48.318222Z +C:/Windows/SysWOW64/mswmdm.dll;file;350208;33206;2021-01-15T09:27:48.536920Z;;;2785144255;2;0;14073748836156700;4096;688;0;0;2021-12-16T13:35:44.076492Z;2021-11-11T11:29:32.504700Z;2021-01-15T09:27:48.521299Z +C:/Windows/SysWOW64/mswsock.dll;file;324416;33206;2020-11-03T12:45:51.759985Z;;;2785144255;2;0;562949954397180;4096;640;0;0;2021-12-16T13:35:44.076492Z;2021-11-11T11:29:33.772176Z;2020-11-03T12:45:51.759985Z +C:/Windows/SysWOW64/mswstr10.dll;file;640512;33206;2019-12-07T09:10:02.195070Z;;;2785144255;2;0;1125899907628790;4096;1256;0;0;2021-12-16T13:35:44.093507Z;2021-11-11T11:29:34.225100Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/msxbde40.dll;file;475648;33206;2020-11-03T12:46:02.554394Z;;;2785144255;2;0;562949954400508;4096;936;0;0;2021-12-16T13:35:44.113347Z;2021-11-11T11:29:34.225100Z;2020-11-03T12:46:02.554394Z +C:/Windows/SysWOW64/msxml3.dll;file;1331200;33206;2021-03-11T12:12:19.410814Z;;;2785144255;2;0;844424931103397;4096;2600;0;0;2021-12-16T13:35:44.114316Z;2021-11-11T11:29:31.000440Z;2021-03-11T12:12:19.379596Z +C:/Windows/SysWOW64/msxml3r.dll;file;2560;33206;2021-03-11T12:12:19.442055Z;;;2785144255;2;0;844424931103398;4096;8;0;0;2021-12-16T13:35:44.117107Z;2021-11-11T11:29:31.002398Z;2021-03-11T12:12:19.442055Z +C:/Windows/SysWOW64/msxml6.dll;file;1951384;33206;2021-07-07T12:58:45.206691Z;;;2785144255;2;0;281474977790769;4096;3816;0;0;2021-12-16T13:35:44.117851Z;2021-11-11T11:29:33.752230Z;2021-07-07T12:58:45.175410Z +C:/Windows/SysWOW64/msxml6r.dll;file;2560;33206;2021-04-17T10:34:37.545726Z;;;2785144255;2;0;844424930951404;4096;8;0;0;2021-12-16T13:35:44.118882Z;2021-11-11T11:29:33.754225Z;2021-04-17T10:34:37.540642Z +C:/Windows/SysWOW64/msyuv.dll;file;23552;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907630240;4096;48;0;0;2021-12-16T13:35:44.131829Z;2021-11-11T11:29:34.248Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/MTF.dll;file;200200;33206;2019-12-07T09:09:29.114855Z;;;2785144255;2;0;1125899907636970;4096;392;0;0;2021-12-16T13:35:44.146976Z;2021-11-11T11:29:30.980457Z;2019-12-07T09:09:29.114855Z +C:/Windows/SysWOW64/mtstocom.exe;file;113152;33206;2019-12-07T09:09:22.223955Z;;;2785144255;2;0;1125899907635780;4096;224;0;0;2021-12-16T13:35:44.171385Z;2021-11-11T11:29:33.761205Z;2019-12-07T09:09:22.223955Z +C:/Windows/SysWOW64/mtxclu.dll;file;367616;33206;2019-12-07T09:09:57.865923Z;;;2785144255;2;0;1125899907629430;4096;720;0;0;2021-12-16T13:35:44.187959Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:09:57.865923Z +C:/Windows/SysWOW64/mtxdm.dll;file;25088;33206;2019-12-07T09:09:22.208345Z;;;2785144255;2;0;1125899907637400;4096;56;0;0;2021-12-16T13:35:44.200814Z;2021-11-11T11:29:33.764197Z;2019-12-07T09:09:22.208345Z +C:/Windows/SysWOW64/mtxex.dll;file;8192;33206;2019-12-07T09:09:22.208345Z;;;2785144255;2;0;1125899907637450;4096;16;0;0;2021-12-16T13:35:44.210443Z;2021-11-11T11:29:33.769184Z;2019-12-07T09:09:22.208345Z +C:/Windows/SysWOW64/mtxlegih.dll;file;29696;33206;2019-12-07T09:09:22.208345Z;;;2785144255;2;0;1125899907637050;4096;64;0;0;2021-12-16T13:35:44.223875Z;2021-11-11T11:29:33.764197Z;2019-12-07T09:09:22.208345Z +C:/Windows/SysWOW64/mtxoci.dll;file;113152;33206;2019-12-07T09:09:57.865923Z;;;2785144255;2;0;1125899907629680;4096;224;0;0;2021-12-16T13:35:44.237837Z;2021-11-11T11:29:34.205151Z;2019-12-07T09:09:57.865923Z +C:/Windows/SysWOW64/MUI;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;3096224744138030;4096;0;0;0;2021-12-16T13:36:01.183773Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/MUI/0409;directory;0;16822;2019-12-07T09:15:00.925111Z;;;2785144255;1;0;2814749767427380;4096;0;0;0;2021-12-16T13:36:01.183773Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/MUI/0409/mscorees.dll;file;6144;33206;2019-12-07T09:10:05.616064Z;;;2785144255;2;0;1125899907622070;4096;16;0;0;2020-11-03T12:35:35.564151Z;2021-11-11T11:29:32.052943Z;2019-12-07T09:10:05.616064Z +C:/Windows/SysWOW64/MUI/dispspec;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;2814749767427380;4096;0;0;0;2021-12-16T13:36:01.183773Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/muifontsetup.dll;file;14848;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;1125899907636860;4096;32;0;0;2021-12-16T13:35:44.249113Z;2021-11-11T11:29:33.791164Z;2019-12-07T09:09:26.178036Z +C:/Windows/SysWOW64/MuiUnattend.exe;file;83968;33206;2021-04-17T10:34:41.228782Z;;;2785144255;2;0;844424930951448;4096;168;0;0;2021-12-16T13:35:44.264977Z;2021-11-11T11:29:33.797110Z;2021-04-17T10:34:41.218436Z +C:/Windows/SysWOW64/mycomput.dll;file;88064;33206;2021-01-15T09:27:34.537641Z;;;2785144255;2;0;14073748836154800;4096;176;0;0;2021-12-16T13:35:44.278892Z;2021-11-11T11:29:34.201157Z;2021-01-15T09:27:34.522020Z +C:/Windows/SysWOW64/mydocs.dll;file;38912;33206;2021-01-15T09:27:10.416194Z;;;2785144255;2;0;7599824371775660;4096;80;0;0;2021-12-16T13:35:44.292246Z;2021-11-11T11:29:33.727295Z;2021-01-15T09:27:10.416194Z +C:/Windows/SysWOW64/NAPCRYPT.DLL;file;44032;33206;2019-12-07T09:10:02.225387Z;;;2785144255;3;0;1125899907628230;4096;88;0;0;2021-12-16T13:35:44.302099Z;2021-11-11T11:29:34.236070Z;2019-12-07T09:10:02.225387Z +C:/Windows/SysWOW64/NapiNSP.dll;file;54784;33206;2020-11-03T12:45:47.120330Z;;;2785144255;2;0;3377699721501820;4096;112;0;0;2021-12-16T13:35:44.302099Z;2021-11-11T11:29:33.718319Z;2020-11-03T12:45:47.120330Z +C:/Windows/SysWOW64/NaturalLanguage6.dll;file;788480;33206;2019-12-07T09:09:13.597569Z;;;2785144255;2;0;1125899907638790;4096;1544;0;0;2021-12-16T13:35:44.318230Z;2021-11-11T11:29:33.719317Z;2019-12-07T09:09:13.597569Z +C:/Windows/SysWOW64/nb-NO;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;2814749767427380;4096;8;0;0;2021-12-16T13:36:01.183773Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/nb-NO/APHostRes.dll.mui;file;15872;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648620;4096;32;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/nb-NO/cdosys.dll.mui;file;48128;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;6473924465014760;4096;96;0;0;2019-12-07T09:09:30.459139Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/nb-NO/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;5348024558172270;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:19.973906Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/nb-NO/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619430;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/nb-NO/SyncRes.dll.mui;file;28672;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648770;4096;56;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.513659Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/nb-NO/windows.ui.xaml.dll.mui;file;16384;33206;2019-12-07T09:09:02.082503Z;;;2785144255;4;0;1125899907639420;4096;32;0;0;2019-12-07T09:09:02.082503Z;2020-11-03T12:35:45.577698Z;2019-12-07T09:09:02.082503Z +C:/Windows/SysWOW64/NcaApi.dll;file;19968;33206;2019-12-07T14:54:40.641289Z;;;2785144255;2;0;1125899907624240;4096;40;0;0;2021-12-16T13:35:44.331784Z;2021-11-11T11:29:32.187632Z;2019-12-07T09:10:22.523176Z +C:/Windows/SysWOW64/NcdProp.dll;file;20480;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907629310;4096;40;0;0;2021-12-16T13:35:44.343558Z;2021-11-11T11:29:34.238065Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/nci.dll;file;33792;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907637610;4096;72;0;0;2021-12-16T13:35:44.356753Z;2021-11-11T11:29:33.783178Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/ncobjapi.dll;file;58880;33206;2021-11-11T11:28:57.529804Z;;;2785144255;2;0;281474977878967;4096;120;0;0;2021-12-16T13:35:44.357496Z;2021-11-11T11:38:50.310049Z;2021-11-11T11:28:57.528777Z +C:/Windows/SysWOW64/ncpa.cpl;file;100864;33206;2020-12-09T00:08:28.936234Z;;;2785144255;2;0;562949953795151;4096;200;0;0;2021-12-16T13:35:44.373853Z;2021-11-15T13:07:18.033808Z;2020-12-09T00:08:28.936234Z +C:/Windows/SysWOW64/ncrypt.dll;file;130128;33206;2020-11-03T12:45:51.900570Z;;;2785144255;2;0;562949954397203;4096;256;0;0;2021-12-16T13:35:44.374290Z;2021-11-11T11:29:33.762202Z;2020-11-03T12:45:51.900570Z +C:/Windows/SysWOW64/ncryptprov.dll;file;274432;33206;2021-11-11T11:29:00.469413Z;;;2785144255;2;0;281474977879223;4096;536;0;0;2021-12-16T13:35:44.374557Z;2021-11-11T11:38:50.803126Z;2021-11-11T11:29:00.463385Z +C:/Windows/SysWOW64/ncryptsslp.dll;file;117216;33206;2020-11-03T12:45:51.916163Z;;;2785144255;2;0;562949954397205;4096;232;0;0;2021-12-16T13:35:44.374818Z;2021-11-11T11:29:33.771179Z;2020-11-03T12:45:51.916163Z +C:/Windows/SysWOW64/ndadmin.exe;file;65536;33206;2021-10-03T19:02:19.445398Z;;;2785144255;2;0;1688849861187010;4096;128;0;0;2021-12-16T13:35:44.405738Z;2021-11-11T11:29:33.816060Z;2021-10-03T19:02:19.443376Z +C:/Windows/SysWOW64/nddeapi.dll;file;10752;33206;2019-12-07T09:10:02.178772Z;;;2785144255;2;0;1125899907630300;4096;24;0;0;2021-12-16T13:35:44.416881Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/NDF;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2814749767427380;4096;0;0;0;2021-12-16T13:36:01.183773Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/ndfapi.dll;file;223744;33206;2021-01-15T09:27:38.488931Z;;;2785144255;2;0;12947848929312800;4096;440;0;0;2021-12-16T13:35:44.436805Z;2021-11-11T11:29:34.248Z;2021-01-15T09:27:38.488931Z +C:/Windows/SysWOW64/ndfetw.dll;file;34816;33206;2021-01-15T09:27:38.488931Z;;;2785144255;2;0;14636698789576800;4096;72;0;0;2021-12-16T13:35:44.449772Z;2021-11-11T11:29:34.251028Z;2021-01-15T09:27:38.488931Z +C:/Windows/SysWOW64/NdfEventView.xml;file;565;33206;2019-12-07T09:10:04.209803Z;;;2785144255;2;0;1125899907628290;4096;8;0;0;2021-12-16T13:35:44.452763Z;2021-02-22T08:01:24.358233Z;2019-12-07T09:10:04.209803Z +C:/Windows/SysWOW64/ndfhcdiscovery.dll;file;81920;33206;2021-01-15T09:27:38.488931Z;;;2785144255;2;0;12666373952602200;4096;160;0;0;2021-12-16T13:35:44.466725Z;2021-11-11T11:29:34.242017Z;2021-01-15T09:27:38.488931Z +C:/Windows/SysWOW64/ndishc.dll;file;77312;33206;2021-01-15T09:27:38.473310Z;;;2785144255;2;0;10133099162206300;4096;152;0;0;2021-12-16T13:35:44.481725Z;2021-11-11T11:29:34.253035Z;2021-01-15T09:27:38.473310Z +C:/Windows/SysWOW64/ndproxystub.dll;file;21504;33206;2019-12-07T09:10:04.209803Z;;;2785144255;2;0;1125899907630750;4096;48;0;0;2021-12-16T13:35:44.493991Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/negoexts.dll;file;100864;33206;2019-12-07T09:09:20.583338Z;;;2785144255;2;0;1125899907636400;4096;200;0;0;2021-12-16T13:35:44.506941Z;2021-11-11T11:29:33.814066Z;2019-12-07T09:09:20.583338Z +C:/Windows/SysWOW64/net.exe;file;47104;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907629790;4096;96;0;0;2021-12-16T13:35:44.519039Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/net1.exe;file;139776;33206;2021-03-11T12:12:28.805353Z;;;2785144255;2;0;844424931104563;4096;280;0;0;2021-12-16T13:35:44.532004Z;2021-11-11T11:29:34.212096Z;2021-03-11T12:12:28.805353Z +C:/Windows/SysWOW64/netapi32.dll;file;68680;33206;2020-11-03T12:45:46.526749Z;;;2785144255;2;0;3940649674923080;4096;136;0;0;2021-12-16T13:35:44.533045Z;2021-11-11T11:29:33.777163Z;2020-11-03T12:45:46.526749Z +C:/Windows/SysWOW64/netbios.dll;file;15360;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;1125899907636740;4096;32;0;0;2021-12-16T13:35:44.544416Z;2021-11-11T11:29:33.802096Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/netbtugc.exe;file;22016;33206;2021-01-15T09:27:21.412721Z;;;2785144255;2;0;10977524092335300;4096;48;0;0;2021-12-16T13:35:44.557384Z;2021-11-11T11:29:33.801130Z;2021-01-15T09:27:21.412721Z +C:/Windows/SysWOW64/netcenter.dll;file;187904;33206;2020-11-03T12:46:02.648155Z;;;2785144255;2;0;562949954400517;4096;368;0;0;2021-12-16T13:35:44.574253Z;2021-11-11T11:29:34.237030Z;2020-11-03T12:46:02.648155Z +C:/Windows/SysWOW64/NetCfgNotifyObjectHost.exe;file;59904;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907638380;4096;120;0;0;2021-12-16T13:35:44.587218Z;2021-11-11T11:29:33.801130Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/netcfgx.dll;file;77648;33206;2021-01-15T09:27:21.412721Z;;;2785144255;2;0;7318349395096760;4096;152;0;0;2021-12-16T13:35:44.602181Z;2021-11-11T11:29:33.800102Z;2021-01-15T09:27:21.412721Z +C:/Windows/SysWOW64/netcorehc.dll;file;343552;33206;2021-01-15T09:27:38.473310Z;;;2785144255;2;0;22236523160764500;4096;672;0;0;2021-12-16T13:35:44.618109Z;2021-11-11T11:29:34.249996Z;2021-01-15T09:27:38.473310Z +C:/Windows/SysWOW64/netdiagfx.dll;file;237056;33206;2021-01-15T09:27:38.488931Z;;;2785144255;2;0;18577348463525900;4096;464;0;0;2021-12-16T13:35:44.634355Z;2021-11-11T11:29:34.248997Z;2021-01-15T09:27:38.473310Z +C:/Windows/SysWOW64/NetDriverInstall.dll;file;80384;33206;2020-11-03T12:45:44.417838Z;;;2785144255;2;0;562949954394088;4096;160;0;0;2021-12-16T13:35:44.647321Z;2021-11-11T11:29:33.672442Z;2020-11-03T12:45:44.417838Z +C:/Windows/SysWOW64/netevent.dll;file;20480;33206;2019-12-07T09:09:29.088570Z;;;2785144255;2;0;1125899907634760;4096;40;0;0;2021-12-16T13:35:44.653304Z;2021-11-11T11:29:30.956425Z;2019-12-07T09:09:29.088570Z +C:/Windows/SysWOW64/netfxperf.dll;file;90624;33206;2019-12-07T09:10:05.616064Z;;;2785144255;2;0;1125899907627630;4096;184;0;0;2021-12-16T13:35:44.671282Z;2021-11-11T11:29:32.051708Z;2019-12-07T09:10:05.616064Z +C:/Windows/SysWOW64/neth.dll;file;2560;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907628450;4096;8;0;0;2021-12-16T13:35:44.675245Z;2021-11-11T11:29:34.213094Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/netid.dll;file;126976;33206;2020-11-11T20:25:31.953456Z;;;2785144255;2;0;844424931073680;4096;248;0;0;2021-12-16T13:35:44.690207Z;2021-11-11T11:29:33.801130Z;2020-11-11T20:25:31.946782Z +C:/Windows/SysWOW64/netiohlp.dll;file;154624;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907630590;4096;304;0;0;2021-12-16T13:35:44.703171Z;2021-11-11T11:29:34.205151Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/netiougc.exe;file;25600;33206;2021-01-15T09:27:21.428342Z;;;2785144255;2;0;39125021763400900;4096;56;0;0;2021-12-16T13:35:44.716137Z;2021-11-11T11:29:33.801130Z;2021-01-15T09:27:21.428342Z +C:/Windows/SysWOW64/netjoin.dll;file;140288;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907635220;4096;280;0;0;2021-12-16T13:35:44.732121Z;2021-11-11T11:29:33.802096Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/netlogon.dll;file;674816;33206;2021-10-16T00:21:18.601848Z;;;2785144255;2;0;281474977857634;4096;1320;0;0;2021-12-16T13:35:44.750063Z;2021-11-11T11:29:33.775168Z;2021-10-16T00:21:18.586231Z +C:/Windows/SysWOW64/netmsg.dll;file;2560;33206;2019-12-07T09:09:25.554325Z;;;2785144255;2;0;1125899907635170;4096;8;0;0;2021-12-16T13:35:44.750063Z;2021-11-11T11:29:33.780155Z;2019-12-07T09:09:25.554325Z +C:/Windows/SysWOW64/netplwiz.dll;file;222720;33206;2020-11-11T20:25:26.556986Z;;;2785144255;2;0;844424931073601;4096;440;0;0;2021-12-16T13:35:44.770010Z;2021-11-11T11:29:33.718319Z;2020-11-11T20:25:26.552089Z +C:/Windows/SysWOW64/Netplwiz.exe;file;35328;33206;2019-12-07T09:09:13.739223Z;;;2785144255;2;0;1125899907639080;4096;72;0;0;2021-12-16T13:35:44.783998Z;2021-11-11T11:29:33.724303Z;2019-12-07T09:09:13.739223Z +C:/Windows/SysWOW64/netprofm.dll;file;182784;33206;2021-01-15T09:27:21.381478Z;;;2785144255;2;0;7318349395096750;4096;360;0;0;2021-12-16T13:35:44.783998Z;2021-11-11T11:29:33.801130Z;2021-01-15T09:27:21.365976Z +C:/Windows/SysWOW64/netprovfw.dll;file;52736;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907638100;4096;104;0;0;2021-12-16T13:35:44.796937Z;2021-11-11T11:29:33.801130Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/netprovisionsp.dll;file;56832;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907638720;4096;112;0;0;2021-12-16T13:35:44.809125Z;2021-11-11T11:29:33.803093Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/NetSetupApi.dll;file;108352;33206;2020-11-03T12:45:44.417838Z;;;2785144255;2;0;562949954394086;4096;216;0;0;2021-12-16T13:35:44.823432Z;2021-11-11T11:29:33.685408Z;2020-11-03T12:45:44.417838Z +C:/Windows/SysWOW64/NetSetupEngine.dll;file;578376;33206;2020-11-03T12:45:44.417838Z;;;2785144255;2;0;562949954394087;4096;1136;0;0;2021-12-16T13:35:44.840166Z;2021-11-11T11:29:33.693387Z;2020-11-03T12:45:44.417838Z +C:/Windows/SysWOW64/NetSetupShim.dll;file;373760;33206;2021-01-15T09:27:21.397122Z;;;2785144255;2;0;7036874418386100;4096;736;0;0;2021-12-16T13:35:44.856431Z;2021-11-11T11:29:33.801130Z;2021-01-15T09:27:21.397122Z +C:/Windows/SysWOW64/netsh.exe;file;82432;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907628610;4096;168;0;0;2021-12-16T13:35:44.870396Z;2021-11-11T11:29:34.201157Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/netshell.dll;file;400896;33206;2021-10-16T00:21:19.134650Z;;;2785144255;2;0;281474977857648;4096;784;0;0;2021-12-16T13:35:44.888520Z;2021-11-11T11:29:33.802096Z;2021-10-16T00:21:19.126569Z +C:/Windows/SysWOW64/NETSTAT.EXE;file;32768;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907628890;4096;64;0;0;2021-12-16T13:35:44.899431Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/netutils.dll;file;37176;33206;2020-11-03T12:45:51.916163Z;;;2785144255;2;0;562949954397206;4096;80;0;0;2021-12-16T13:35:44.900436Z;2021-11-11T11:29:33.761205Z;2020-11-03T12:45:51.916163Z +C:/Windows/SysWOW64/NetworkCollectionAgent.dll;file;469504;33206;2021-01-15T09:27:35.178115Z;;;2785144255;2;0;14918173766286900;4096;920;0;0;2021-12-16T13:35:44.918417Z;2021-11-11T11:29:34.229083Z;2021-01-15T09:27:35.178115Z +C:/Windows/SysWOW64/networkexplorer.dll;file;64512;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907637680;4096;128;0;0;2021-12-16T13:35:44.932291Z;2021-11-11T11:29:33.797110Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/networkhelper.dll;file;100352;33206;2021-01-15T09:27:50.237814Z;;;2785144255;2;0;18014398510106800;4096;200;0;0;2021-12-16T13:35:44.946571Z;2021-11-11T11:29:35.506584Z;2021-01-15T09:27:50.236786Z +C:/Windows/SysWOW64/networkitemfactory.dll;file;42496;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907638850;4096;88;0;0;2021-12-16T13:35:44.958196Z;2021-11-11T11:29:33.781152Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/networklist;;;;;;;;;;;;;;;;; +C:/Windows/SysWOW64/newdev.dll;file;250368;33206;2021-10-03T19:02:19.430821Z;;;2785144255;2;0;1688849861187010;4096;496;0;0;2021-12-16T13:35:44.975142Z;2021-11-11T11:29:33.805088Z;2021-10-03T19:02:19.413042Z +C:/Windows/SysWOW64/newdev.exe;file;67584;33206;2021-10-03T19:02:19.464488Z;;;2785144255;2;0;1688849861187010;4096;136;0;0;2021-12-16T13:35:45.007845Z;2021-11-11T11:29:33.808081Z;2021-10-03T19:02:19.459328Z +C:/Windows/SysWOW64/ngccredprov.dll;file;513536;33206;2021-10-03T19:02:13.932217Z;;;2785144255;2;0;1688849861186930;4096;1008;0;0;2021-12-16T13:35:45.023733Z;2021-11-11T11:29:33.755222Z;2021-10-03T19:02:13.899046Z +C:/Windows/SysWOW64/ngckeyenum.dll;file;154624;33206;2021-10-03T19:02:14.007640Z;;;2785144255;2;0;1688849861186930;4096;304;0;0;2021-12-16T13:35:45.037967Z;2021-11-11T11:29:33.747242Z;2021-10-03T19:02:13.999919Z +C:/Windows/SysWOW64/ngcksp.dll;file;83968;33206;2019-12-07T09:09:20.833296Z;;;2785144255;2;0;1125899907636320;4096;168;0;0;2021-12-16T13:35:45.050349Z;2021-11-11T11:29:33.749237Z;2019-12-07T09:09:20.833296Z +C:/Windows/SysWOW64/ngclocal.dll;file;54272;33206;2021-10-03T19:02:17.534836Z;;;2785144255;2;0;1688849861186980;4096;112;0;0;2021-12-16T13:35:45.062902Z;2021-11-11T11:29:33.787167Z;2021-10-03T19:02:17.531253Z +C:/Windows/SysWOW64/ninput.dll;file;325632;33206;2020-11-03T12:45:45.808137Z;;;2785144255;2;0;1125899907815980;4096;640;0;0;2021-12-16T13:35:45.062902Z;2021-11-11T11:29:33.722309Z;2020-11-03T12:45:45.808137Z +C:/Windows/SysWOW64/nl-NL;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;2814749767427380;4096;8;0;0;2021-12-16T13:36:01.184811Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/nl-NL/APHostRes.dll.mui;file;16384;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648640;4096;32;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.466793Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/nl-NL/cdosys.dll.mui;file;49664;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;5910974511593460;4096;104;0;0;2019-12-07T09:09:30.442382Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.442382Z +C:/Windows/SysWOW64/nl-NL/comctl32.dll.mui;file;6144;33206;2021-06-10T14:01:41.716126Z;;;2785144255;2;0;281474977765220;4096;16;0;0;2021-06-10T14:01:41.716126Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:41.700569Z +C:/Windows/SysWOW64/nl-NL/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619440;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/nl-NL/SyncRes.dll.mui;file;31744;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648800;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.529279Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/nl-NL/windows.ui.xaml.dll.mui;file;17408;33206;2019-12-07T09:09:02.067275Z;;;2785144255;4;0;1125899907634970;4096;40;0;0;2019-12-07T09:09:02.067275Z;2020-11-03T12:35:42.843916Z;2019-12-07T09:09:02.067275Z +C:/Windows/SysWOW64/nlaapi.dll;file;71168;33206;2020-11-03T12:45:53.384570Z;;;2785144255;2;0;2533274791372510;4096;144;0;0;2021-12-16T13:35:45.063863Z;2021-11-11T11:29:33.800102Z;2020-11-03T12:45:53.384570Z +C:/Windows/SysWOW64/nlhtml.dll;file;150528;33206;2019-12-07T09:09:32.380631Z;;;2785144255;2;0;1125899907639090;4096;296;0;0;2021-12-16T13:35:45.077087Z;2021-11-11T11:29:33.804091Z;2019-12-07T09:09:32.380631Z +C:/Windows/SysWOW64/nlmgp.dll;file;153088;33206;2021-01-15T09:27:21.381478Z;;;2785144255;2;0;6473924464964790;4096;304;0;0;2021-12-16T13:35:45.093965Z;2021-11-11T11:29:33.800102Z;2021-01-15T09:27:21.381478Z +C:/Windows/SysWOW64/nlmproxy.dll;file;20480;33206;2020-11-03T12:45:53.368979Z;;;2785144255;2;0;1688849861240530;4096;40;0;0;2021-12-16T13:35:45.104936Z;2021-11-11T11:29:33.801130Z;2020-11-03T12:45:53.368979Z +C:/Windows/SysWOW64/nlmsprep.dll;file;16384;33206;2020-11-03T12:45:53.368979Z;;;2785144255;2;0;1688849861240530;4096;32;0;0;2021-12-16T13:35:45.115911Z;2021-11-11T11:29:33.802096Z;2020-11-03T12:45:53.368979Z +C:/Windows/SysWOW64/nlsbres.dll;file;90424;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907634730;4096;184;0;0;2021-12-16T13:35:45.124846Z;2021-11-11T11:29:30.956425Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/NlsData0000.dll;file;1526272;33206;2019-12-07T09:09:57.426957Z;;;2785144255;2;0;1125899907628540;4096;2984;0;0;2021-12-16T13:35:45.142822Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:09:57.426957Z +C:/Windows/SysWOW64/NlsData0007.dll;file;2010624;33206;2019-12-06T16:20:00Z;;;2785144255;2;0;1125899907619800;4096;3928;0;0;2021-12-16T13:35:45.172059Z;2020-11-03T12:35:33.970770Z;2019-12-07T14:53:01.813922Z +C:/Windows/SysWOW64/Nlsdl.dll;file;8704;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907635940;4096;24;0;0;2021-12-16T13:35:45.184499Z;2021-11-11T11:29:30.944623Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/NmaDirect.dll;file;204800;33206;2021-01-15T09:27:14.968419Z;;;2785144255;2;0;16325548649829200;4096;400;0;0;2021-12-16T13:35:45.199837Z;2021-11-11T11:29:33.739265Z;2021-01-15T09:27:14.952794Z +C:/Windows/SysWOW64/NOISE.DAT;file;741;33206;2019-12-07T09:12:45.138014Z;;;2785144255;1;0;1125899907637960;4096;8;0;0;2021-12-16T13:35:45.203006Z;2020-11-03T12:35:44.905973Z;2019-12-07T09:15:00.283745Z +C:/Windows/SysWOW64/normaliz.dll;file;5120;33206;2020-11-03T12:45:52.134862Z;;;2785144255;2;0;1688849861239880;4096;16;0;0;2021-12-16T13:35:45.204005Z;2021-11-11T11:29:33.792123Z;2020-11-03T12:45:52.134862Z +C:/Windows/SysWOW64/notepad.exe;file;165888;33206;2019-12-06T19:40:00Z;;;2785144255;2;0;14355223812925200;4096;328;0;0;2021-12-16T13:35:45.218006Z;2020-11-03T12:35:25.113326Z;2019-12-07T14:53:52.313632Z +C:/Windows/SysWOW64/npmproxy.dll;file;26112;33206;2020-11-03T12:45:53.368979Z;;;2785144255;2;0;2814749768083160;4096;56;0;0;2021-12-16T13:35:45.218006Z;2021-11-11T11:29:33.800102Z;2020-11-03T12:45:53.368979Z +C:/Windows/SysWOW64/NPSM.dll;file;146944;33206;2021-01-15T09:27:15.187082Z;;;2785144255;2;0;5348024558113650;4096;288;0;0;2021-12-16T13:35:45.232927Z;2021-11-11T11:29:33.733279Z;2021-01-15T09:27:15.187082Z +C:/Windows/SysWOW64/NPSMDesktopProvider.dll;file;157696;33206;2021-01-15T09:27:18.161510Z;;;2785144255;2;0;10133099162202700;4096;312;0;0;2021-12-16T13:35:45.247712Z;2021-11-11T11:29:33.762202Z;2021-01-15T09:27:18.161510Z +C:/Windows/SysWOW64/nshhttp.dll;file;40448;33206;2021-05-18T10:59:42.026005Z;;;2785144255;2;0;1125899907730850;4096;80;0;0;2021-12-16T13:35:45.259074Z;2021-11-11T11:29:34.214092Z;2021-05-18T10:59:42.024014Z +C:/Windows/SysWOW64/nshipsec.dll;file;333312;33206;2021-05-18T10:59:11.718756Z;;;2785144255;2;0;4222124651547080;4096;656;0;0;2021-12-16T13:35:45.272649Z;2021-11-11T11:29:33.782192Z;2021-05-18T10:59:11.715764Z +C:/Windows/SysWOW64/nshwfp.dll;file;612352;33206;2021-11-11T11:29:09.991689Z;;;2785144255;2;0;281474977879588;4096;1200;0;0;2021-12-16T13:35:45.287911Z;2021-11-11T11:38:53.233603Z;2021-11-11T11:29:09.983711Z +C:/Windows/SysWOW64/nsi.dll;file;20144;33206;2020-11-11T20:25:19.629267Z;;;2785144255;2;0;844424931073312;4096;40;0;0;2021-12-16T13:35:45.288219Z;2021-11-11T11:29:33.764197Z;2020-11-11T20:25:19.626862Z +C:/Windows/SysWOW64/nslookup.exe;file;77824;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907629590;4096;152;0;0;2021-12-16T13:35:45.301875Z;2021-11-11T11:29:34.240064Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/ntasn1.dll;file;161608;33206;2020-11-03T12:45:51.916163Z;;;2785144255;2;0;562949954397207;4096;320;0;0;2021-12-16T13:35:45.301875Z;2021-11-11T11:29:33.780155Z;2020-11-03T12:45:51.916163Z +C:/Windows/SysWOW64/ntdll.dll;file;1696752;33206;2021-10-16T00:21:15.500455Z;;;2785144255;2;0;281474977857315;4096;3320;0;0;2021-12-16T13:35:45.301875Z;2021-11-11T11:29:33.763200Z;2021-10-16T00:21:15.462705Z +C:/Windows/SysWOW64/ntdsapi.dll;file;97792;33206;2020-11-03T12:45:46.526749Z;;;2785144255;2;0;3940649674923070;4096;192;0;0;2021-12-16T13:35:45.314790Z;2021-11-11T11:29:33.773174Z;2020-11-03T12:45:46.526749Z +C:/Windows/SysWOW64/ntlanman.dll;file;90624;33206;2021-10-03T19:02:17.425153Z;;;2785144255;2;0;1688849861186980;4096;184;0;0;2021-12-16T13:35:45.327759Z;2021-11-11T11:29:33.798140Z;2021-10-03T19:02:17.419830Z +C:/Windows/SysWOW64/ntlanui2.dll;file;17408;33206;2019-12-07T09:09:32.427493Z;;;2785144255;2;0;1125899907636450;4096;40;0;0;2021-12-16T13:35:45.341227Z;2021-11-11T11:29:33.806085Z;2019-12-07T09:09:32.427493Z +C:/Windows/SysWOW64/NtlmShared.dll;file;53408;33206;2019-12-07T09:09:25.989663Z;;;2785144255;2;0;3940649674383520;4096;112;0;0;2021-12-16T13:35:45.354071Z;2021-11-11T11:29:33.817058Z;2019-12-07T09:09:25.989663Z +C:/Windows/SysWOW64/ntmarta.dll;file;152904;33206;2020-11-03T12:45:51.947407Z;;;2785144255;2;0;562949954397213;4096;304;0;0;2021-12-16T13:35:45.354427Z;2021-11-11T11:29:33.780155Z;2020-11-03T12:45:51.931808Z +C:/Windows/SysWOW64/ntprint.dll;file;320512;33206;2021-10-16T00:21:19.146786Z;;;2785144255;2;0;281474977857649;4096;632;0;0;2021-12-16T13:35:45.370655Z;2021-11-11T11:29:33.817058Z;2021-10-16T00:21:19.146786Z +C:/Windows/SysWOW64/ntprint.exe;file;62464;33206;2021-10-16T00:21:19.154925Z;;;2785144255;2;0;281474977857650;4096;128;0;0;2021-12-16T13:35:45.385878Z;2021-11-11T11:29:33.817058Z;2021-10-16T00:21:19.154925Z +C:/Windows/SysWOW64/ntshrui.dll;file;357376;33206;2021-03-11T12:12:19.896544Z;;;2785144255;2;0;844424931103423;4096;704;0;0;2021-12-16T13:35:45.385878Z;2021-11-11T11:29:33.807083Z;2021-03-11T12:12:19.880920Z +C:/Windows/SysWOW64/ntvdm64.dll;file;16384;33206;2021-06-10T14:01:41.445002Z;;;2785144255;2;0;281474977765207;4096;32;0;0;2021-12-16T13:35:45.396873Z;2021-11-11T11:29:33.782192Z;2021-06-10T14:01:41.445002Z +C:/Windows/SysWOW64/Nui;directory;0;16822;2019-12-07T09:15:00.925111Z;;;2785144255;1;0;6755399441376570;4096;0;0;0;2021-12-16T13:36:01.184811Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Nui/FaceAnalysisColor.mdl;file;3872256;33206;2019-12-07T09:09:17.222802Z;;;2785144255;2;0;1125899907635680;4096;7568;0;0;2021-02-22T08:01:25.295250Z;2021-02-22T08:01:25.296282Z;2019-12-07T09:09:17.208173Z +C:/Windows/SysWOW64/objsel.dll;file;544256;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907630490;4096;1064;0;0;2021-12-16T13:35:45.419507Z;2021-11-11T11:29:34.216121Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/occache.dll;file;126976;33206;2019-12-07T09:10:00.647783Z;;;2785144255;2;0;1125899907629480;4096;248;0;0;2021-12-16T13:35:45.438532Z;2021-11-11T11:29:34.222071Z;2019-12-07T09:10:00.647783Z +C:/Windows/SysWOW64/ocsetapi.dll;file;168960;33206;2021-10-03T19:02:15.611880Z;;;2785144255;2;0;1688849861186950;4096;336;0;0;2021-12-16T13:35:45.455023Z;2021-11-11T11:29:33.759211Z;2021-10-03T19:02:15.605664Z +C:/Windows/SysWOW64/odbc32.dll;file;604160;33206;2019-12-07T09:10:02.178772Z;;;2785144255;2;0;1125899907629620;4096;1184;0;0;2021-12-16T13:35:45.456922Z;2021-11-11T11:29:34.232043Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/odbcad32.exe;file;72192;33206;2019-12-07T09:10:02.117309Z;;;2785144255;2;0;1125899907629010;4096;144;0;0;2021-12-16T13:35:45.457778Z;2021-11-11T11:29:34.228087Z;2019-12-07T09:10:02.117309Z +C:/Windows/SysWOW64/odbcbcp.dll;file;39936;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907630410;4096;80;0;0;2021-12-16T13:35:45.471211Z;2021-11-11T11:29:34.218116Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odbcconf.dll;file;24064;33206;2020-11-03T12:46:02.460702Z;;;2785144255;2;0;562949954400498;4096;48;0;0;2021-12-16T13:35:45.483209Z;2021-11-11T11:29:34.219114Z;2020-11-03T12:46:02.460702Z +C:/Windows/SysWOW64/odbcconf.exe;file;22016;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907630160;4096;48;0;0;2021-12-16T13:35:45.506723Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odbcconf.rsp;file;4453;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907629760;4096;16;0;0;2021-12-16T13:35:45.515728Z;2020-11-03T12:35:39.266414Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odbccp32.dll;file;109056;33206;2019-12-07T09:10:02.178772Z;;;2785144255;2;0;1125899907629820;4096;216;0;0;2021-12-16T13:35:45.528500Z;2021-11-11T11:29:34.232043Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/odbccr32.dll;file;70144;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907628000;4096;144;0;0;2021-12-16T13:35:45.540359Z;2021-11-11T11:29:34.223103Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odbccu32.dll;file;70656;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907630270;4096;144;0;0;2021-12-16T13:35:45.552318Z;2021-11-11T11:29:34.222071Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odbcint.dll;file;225280;33206;2019-12-07T09:10:02.178772Z;;;2785144255;2;0;1125899907630090;4096;440;0;0;2021-12-16T13:35:45.559378Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/odbcji32.dll;file;10240;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907629420;4096;24;0;0;2021-12-16T13:35:45.568595Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odbcjt32.dll;file;320000;33206;2019-12-07T09:10:02.178772Z;;;2785144255;2;0;1125899907628880;4096;632;0;0;2021-12-16T13:35:45.584247Z;2021-11-11T11:29:34.224102Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/odbctrac.dll;file;129024;33206;2019-12-07T09:10:02.178772Z;;;2785144255;2;0;1125899907628730;4096;256;0;0;2021-12-16T13:35:45.595959Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/oddbse32.dll;file;8704;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907630060;4096;24;0;0;2021-12-16T13:35:45.606888Z;2021-11-11T11:29:34.233040Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odexl32.dll;file;8704;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907628950;4096;24;0;0;2021-12-16T13:35:45.617859Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odfox32.dll;file;8704;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907627880;4096;24;0;0;2021-12-16T13:35:45.628830Z;2021-11-11T11:29:34.232043Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odpdx32.dll;file;8704;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907629390;4096;24;0;0;2021-12-16T13:35:45.638830Z;2021-11-11T11:29:34.231045Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/odtext32.dll;file;8704;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907630600;4096;24;0;0;2021-12-16T13:35:45.649799Z;2021-11-11T11:29:34.222071Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/oemlicense.dll;file;97088;33206;2020-11-03T12:45:50.510273Z;;;2785144255;2;0;562949954396506;4096;192;0;0;2021-12-16T13:35:45.663741Z;2021-11-11T11:29:33.756219Z;2020-11-03T12:45:50.510273Z +C:/Windows/SysWOW64/offfilt.dll;file;218112;33206;2019-12-07T09:09:32.380631Z;;;2785144255;2;0;1125899907637770;4096;432;0;0;2021-12-16T13:35:45.677578Z;2021-11-11T11:29:33.815064Z;2019-12-07T09:09:32.380631Z +C:/Windows/SysWOW64/offlinelsa.dll;file;115008;33206;2020-11-03T12:45:51.994300Z;;;2785144255;2;0;562949954397226;4096;232;0;0;2021-12-16T13:35:45.692793Z;2021-11-11T11:29:33.765194Z;2020-11-03T12:45:51.994300Z +C:/Windows/SysWOW64/offlinesam.dll;file;235336;33206;2021-11-11T11:29:00.459396Z;;;2785144255;2;0;281474977879222;4096;464;0;0;2021-12-16T13:35:45.707767Z;2021-11-11T11:38:52.277461Z;2021-11-11T11:29:00.455407Z +C:/Windows/SysWOW64/offreg.dll;file;64000;33206;2021-11-11T11:29:09.998671Z;;;2785144255;2;0;281474977879589;4096;128;0;0;2021-12-16T13:35:45.719709Z;2021-11-11T11:38:52.956623Z;2021-11-11T11:29:09.997674Z +C:/Windows/SysWOW64/oflc-nz.rs;file;45568;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907634980;4096;96;0;0;2021-12-16T13:35:45.723838Z;2021-11-11T11:29:33.704357Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/ole2.dll;file;8960;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907635490;4096;24;0;0;2021-12-16T13:35:45.726652Z;2021-11-11T11:29:33.800102Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/ole2disp.dll;file;8960;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907635490;4096;24;0;0;2021-12-16T13:35:45.729395Z;2021-11-11T11:29:33.800102Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/ole2nls.dll;file;8960;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907635490;4096;24;0;0;2021-12-16T13:35:45.731979Z;2021-11-11T11:29:33.800102Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/ole32.dll;file;926560;33206;2021-10-03T19:02:15.974355Z;;;2785144255;2;0;1688849861186960;4096;1816;0;0;2021-12-16T13:35:45.732291Z;2021-11-11T11:29:33.775168Z;2021-10-03T19:02:15.908213Z +C:/Windows/SysWOW64/oleacc.dll;file;321024;33206;2021-01-15T09:27:21.428342Z;;;2785144255;2;0;6192449488254140;4096;632;0;0;2021-12-16T13:36:00.886468Z;2021-11-11T11:29:33.808081Z;2021-01-15T09:27:21.428342Z +C:/Windows/SysWOW64/oleacchooks.dll;file;10240;33206;2020-11-03T12:45:53.400222Z;;;2785144255;2;0;562949954397917;4096;24;0;0;2021-12-16T13:35:45.744242Z;2021-11-11T11:29:33.809077Z;2020-11-03T12:45:53.400222Z +C:/Windows/SysWOW64/oleaccrc.dll;file;4608;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907637850;4096;16;0;0;2021-12-16T13:36:00.886468Z;2021-11-11T11:29:33.809077Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/oleaut32.dll;file;606888;33206;2021-05-18T10:59:11.654500Z;;;2785144255;2;0;3940649674836410;4096;1192;0;0;2021-12-16T13:35:45.744925Z;2021-11-11T11:29:33.814066Z;2021-05-18T10:59:11.628784Z +C:/Windows/SysWOW64/olecli32.dll;file;109056;33206;2019-12-07T09:09:22.193610Z;;;2785144255;2;0;1125899907636340;4096;216;0;0;2021-12-16T13:35:45.758780Z;2021-11-11T11:29:33.770182Z;2019-12-07T09:09:22.193610Z +C:/Windows/SysWOW64/oledlg.dll;file;163328;33206;2021-01-15T09:27:18.926944Z;;;2785144255;2;0;4503599627989670;4096;320;0;0;2021-12-16T13:35:45.759310Z;2021-11-11T11:29:33.778160Z;2021-01-15T09:27:18.926944Z +C:/Windows/SysWOW64/oleprn.dll;file;115712;33206;2021-10-03T19:01:59.740779Z;;;2785144255;2;0;1688849861186610;4096;232;0;0;2021-12-16T13:35:45.773840Z;2021-11-11T11:29:33.712335Z;2021-10-03T19:01:59.729157Z +C:/Windows/SysWOW64/olepro32.dll;file;88576;33206;2020-11-03T12:45:53.400222Z;;;2785144255;2;0;562949954397918;4096;176;0;0;2021-12-16T13:35:45.786555Z;2021-11-11T11:29:33.804091Z;2020-11-03T12:45:53.400222Z +C:/Windows/SysWOW64/olesvr32.dll;file;58368;33206;2019-12-07T09:09:22.193610Z;;;2785144255;2;0;1125899907638800;4096;120;0;0;2021-12-16T13:35:45.798524Z;2021-11-11T11:29:33.776165Z;2019-12-07T09:09:22.193610Z +C:/Windows/SysWOW64/olethk32.dll;file;86528;33206;2019-12-07T09:09:22.193610Z;;;2785144255;2;0;1125899907634860;4096;176;0;0;2021-12-16T13:35:45.812486Z;2021-11-11T11:29:33.764197Z;2019-12-07T09:09:22.193610Z +C:/Windows/SysWOW64/omadmapi.dll;file;168376;33206;2021-07-07T12:58:45.877301Z;;;2785144255;2;0;281474977790805;4096;336;0;0;2021-12-16T13:35:45.814668Z;2021-11-11T11:29:33.794117Z;2021-07-07T12:58:45.870796Z +C:/Windows/SysWOW64/OnDemandBrokerClient.dll;file;35840;33206;2021-01-15T09:27:16.842981Z;;;2785144255;2;0;34621422136029400;4096;72;0;0;2021-12-16T13:35:45.826638Z;2021-11-11T11:29:33.750234Z;2021-01-15T09:27:16.842981Z +C:/Windows/SysWOW64/OnDemandConnRouteHelper.dll;file;56832;33206;2020-11-03T12:45:46.964158Z;;;2785144255;2;0;3377699721501800;4096;112;0;0;2021-12-16T13:35:45.827636Z;2021-11-11T11:29:33.746245Z;2020-11-03T12:45:46.964158Z +C:/Windows/SysWOW64/OneCoreCommonProxyStub.dll;file;231936;33206;2021-07-07T12:58:43.587349Z;;;2785144255;2;0;281474977790710;4096;456;0;0;2021-12-16T13:35:45.827636Z;2021-11-11T11:29:33.701365Z;2021-07-07T12:58:43.587349Z +C:/Windows/SysWOW64/OneCoreUAPCommonProxyStub.dll;file;3827304;33206;2021-11-11T11:28:59.809112Z;;;2785144255;2;0;281474977879195;4096;7480;0;0;2021-12-16T13:35:45.827636Z;2021-11-11T11:38:51.909414Z;2021-11-11T11:28:59.712337Z +C:/Windows/SysWOW64/OneDrive.ico;file;37670;33206;2019-12-07T14:54:39.422274Z;;;2785144255;2;0;1125899907619450;4096;80;0;0;2021-12-16T13:35:45.830473Z;2020-11-03T12:35:33.486508Z;2019-12-07T09:10:14.794905Z +C:/Windows/SysWOW64/OneDriveSettingSyncProvider.dll;file;544768;33206;2021-11-11T11:29:01.277766Z;;;2785144255;2;0;281474977879255;4096;1064;0;0;2021-12-16T13:35:45.846771Z;2021-11-11T11:38:51.099480Z;2021-11-11T11:29:01.267793Z +C:/Windows/SysWOW64/OneDriveSetup.exe;file;30870320;33206;2019-12-07T14:54:39.422274Z;;;2785144255;2;0;1125899907619460;4096;60296;0;0;2021-12-16T13:35:45.854749Z;2021-11-11T11:29:32.528634Z;2019-12-07T09:10:14.757675Z +C:/Windows/SysWOW64/OneSettingsClient.dll;file;141312;33206;2021-07-07T12:58:45.770516Z;;;2785144255;2;0;281474977790794;4096;280;0;0;2021-12-16T13:35:45.869709Z;2021-11-11T11:29:34.198164Z;2021-07-07T12:58:45.770516Z +C:/Windows/SysWOW64/onex.dll;file;204800;33206;2021-04-17T10:34:28.614619Z;;;2785144255;2;0;844424930951349;4096;400;0;0;2021-12-16T13:35:45.883697Z;2021-11-11T11:29:33.708346Z;2021-04-17T10:34:28.605619Z +C:/Windows/SysWOW64/onexui.dll;file;93696;33206;2019-12-07T09:09:13.587626Z;;;2785144255;2;0;1125899907638240;4096;184;0;0;2021-12-16T13:35:45.897668Z;2021-11-11T11:29:33.708346Z;2019-12-07T09:09:13.587626Z +C:/Windows/SysWOW64/onnxruntime.dll;file;2512;33206;2019-12-07T09:09:20.822517Z;;;2785144255;2;0;1125899907637980;4096;8;0;0;2021-12-16T13:35:45.901753Z;2021-11-11T11:29:33.755222Z;2019-12-07T09:09:20.822517Z +C:/Windows/SysWOW64/oobe;directory;0;16822;2021-10-16T08:02:15.603229Z;;;2785144255;1;0;11540474045457700;4096;0;0;0;2021-12-16T13:36:01.184811Z;2021-10-16T08:02:15.603229Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/oobe/cmisetup.dll;file;532816;33206;2021-05-18T10:59:11.532660Z;;;2785144255;2;0;3377699721415100;4096;1048;0;0;2021-05-18T17:31:43.878696Z;2021-11-11T11:29:33.769184Z;2021-05-18T10:59:11.512478Z +C:/Windows/SysWOW64/oobe/de-DE;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;5066549581112640;4096;0;0;0;2021-12-16T13:36:01.184811Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/oobe/de-DE/SetupCleanupTask.dll.mui;file;3072;33206;2019-12-07T14:51:00.877058Z;;;2785144255;4;0;1688849861030390;4096;8;0;0;2019-12-07T14:51:00.877058Z;2020-11-03T12:35:28.346944Z;2019-12-07T14:51:00.877058Z +C:/Windows/SysWOW64/oobe/en-US;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;8444249301640510;4096;0;0;0;2021-12-16T13:36:01.184811Z;2020-11-03T12:41:50.298074Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/oobe/en-US/SetupCleanupTask.dll.mui;file;3072;33206;2020-11-03T12:41:40.565948Z;;;2785144255;4;0;1125899907691570;4096;8;0;0;2020-11-03T12:41:40.675329Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.565948Z +C:/Windows/SysWOW64/oobe/SetupCleanupTask.dll;file;247296;33206;2021-10-16T00:21:19.265240Z;;;2785144255;2;0;281474977857661;4096;488;0;0;2021-10-16T08:02:24.872007Z;2021-11-11T11:29:33.807083Z;2021-10-16T00:21:19.265240Z +C:/Windows/SysWOW64/OpcServices.dll;file;1344512;33206;2020-11-03T12:45:53.540818Z;;;2785144255;2;0;844424931108591;4096;2632;0;0;2021-12-16T13:35:45.905967Z;2021-11-11T11:29:33.813066Z;2020-11-03T12:45:53.525193Z +C:/Windows/SysWOW64/OpenCL.dll;file;370472;33206;2021-09-12T23:11:58Z;;;2785144255;2;0;4222124650940740;4096;728;0;0;2021-12-16T13:35:45.924431Z;2021-12-11T15:59:53.950807Z;2021-10-31T08:18:39.093544Z +C:/Windows/SysWOW64/openfiles.exe;file;60416;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907629190;4096;120;0;0;2021-12-16T13:35:45.947601Z;2021-11-11T11:29:34.206112Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/opengl32.dll;file;922112;33206;2021-07-07T12:58:52.667118Z;;;2785144255;2;0;281474977791118;4096;1808;0;0;2021-12-16T13:35:45.948064Z;2021-11-11T11:29:34.240064Z;2021-07-07T12:58:52.644908Z +C:/Windows/SysWOW64/OpenWith.exe;file;107368;33206;2021-01-15T09:27:21.906034Z;;;2785144255;2;0;12103423999178000;4096;216;0;0;2021-12-16T13:35:45.966813Z;2021-11-11T11:29:33.810075Z;2021-01-15T09:27:21.906034Z +C:/Windows/SysWOW64/OposHost.exe;file;44032;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907629860;4096;88;0;0;2021-12-16T13:35:45.992744Z;2021-11-11T11:29:34.214092Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/ortcengine.dll;file;732000;33206;2020-11-03T12:45:54.431201Z;;;2785144255;2;0;562949954398520;4096;1432;0;0;2021-12-16T13:35:46.007937Z;2021-11-11T11:29:33.803093Z;2020-11-03T12:45:54.431201Z +C:/Windows/SysWOW64/osbaseln.dll;file;21504;33206;2019-12-07T09:09:13.637568Z;;;2785144255;2;0;1125899907635830;4096;48;0;0;2021-12-16T13:35:46.020516Z;2021-11-11T11:29:33.723306Z;2019-12-07T09:09:13.637568Z +C:/Windows/SysWOW64/osuninst.dll;file;8192;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907639030;4096;16;0;0;2021-12-16T13:35:46.030488Z;2021-11-11T11:29:33.726298Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/P2P.dll;file;173568;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907630720;4096;344;0;0;2021-12-16T13:35:46.045449Z;2021-11-11T11:29:31.744362Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/P2PGraph.dll;file;356352;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907630000;4096;696;0;0;2021-12-16T13:35:46.060604Z;2021-11-11T11:29:31.744362Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/p2pnetsh.dll;file;173056;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907630710;4096;344;0;0;2021-12-16T13:35:46.074926Z;2021-11-11T11:29:31.741371Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/PackagedCWALauncher.exe;file;30720;33206;2019-12-07T09:09:21.085256Z;;;2785144255;2;0;1125899907637820;4096;64;0;0;2021-12-16T13:35:46.101856Z;2021-11-11T11:29:33.778160Z;2019-12-07T09:09:21.085256Z +C:/Windows/SysWOW64/packager.dll;file;81408;33206;2021-06-10T14:01:48.161058Z;;;2785144255;2;0;281474977765602;4096;160;0;0;2021-12-16T13:35:46.117980Z;2021-11-11T11:29:34.214092Z;2021-06-10T14:01:48.145456Z +C:/Windows/SysWOW64/PackageStateRoaming.dll;file;195072;33206;2021-01-15T09:27:10.416194Z;;;2785144255;2;0;7599824371775660;4096;384;0;0;2021-12-16T13:35:46.131943Z;2021-11-11T11:29:33.743254Z;2021-01-15T09:27:10.416194Z +C:/Windows/SysWOW64/panmap.dll;file;12288;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907635510;4096;24;0;0;2021-12-16T13:35:46.143140Z;2021-11-11T11:29:33.713333Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/PasswordOnWakeSettingFlyout.exe;file;38184;33206;2021-01-15T09:27:10.447437Z;;;2785144255;2;0;7318349395065010;4096;80;0;0;2021-12-16T13:35:46.154965Z;2021-11-11T11:29:33.729290Z;2021-01-15T09:27:10.447437Z +C:/Windows/SysWOW64/PATHPING.EXE;file;16896;33206;2019-12-07T09:09:57.787742Z;;;2785144255;2;0;1125899907629110;4096;40;0;0;2021-12-16T13:35:46.164968Z;2021-11-11T11:29:34.216121Z;2019-12-07T09:09:57.787742Z +C:/Windows/SysWOW64/pautoenr.dll;file;53760;33206;2019-12-07T09:09:57.935588Z;;;2785144255;2;0;1125899907628470;4096;112;0;0;2021-12-16T13:35:46.179613Z;2021-11-11T11:29:34.212096Z;2019-12-07T09:09:57.935588Z +C:/Windows/SysWOW64/PayloadRestrictions.dll;file;707072;33206;2021-10-16T00:21:27.683192Z;;;2785144255;2;0;281474977857754;4096;1384;0;0;2021-12-16T13:35:46.194053Z;2021-11-11T11:29:34.198164Z;2021-10-16T00:21:27.683192Z +C:/Windows/SysWOW64/PaymentMediatorServiceProxy.dll;file;15872;33206;2019-12-07T09:09:17.958263Z;;;2785144255;2;0;1125899907635250;4096;32;0;0;2021-12-16T13:35:46.205055Z;2021-11-11T11:29:33.733279Z;2019-12-07T09:09:17.958263Z +C:/Windows/SysWOW64/pcacli.dll;file;54784;33206;2020-11-03T12:45:51.057025Z;;;2785144255;2;0;562949954396567;4096;112;0;0;2021-12-16T13:35:46.206158Z;2021-11-11T11:29:33.762202Z;2020-11-03T12:45:51.057025Z +C:/Windows/SysWOW64/pcaui.dll;file;77824;33206;2020-11-03T12:45:51.057025Z;;;2785144255;2;0;562949954396568;4096;152;0;0;2021-12-16T13:35:46.219676Z;2021-11-11T11:29:33.767189Z;2020-11-03T12:45:51.057025Z +C:/Windows/SysWOW64/pcaui.exe;file;135680;33206;2021-04-17T10:34:39.147047Z;;;2785144255;2;0;844424930951417;4096;272;0;0;2021-12-16T13:35:46.232118Z;2021-11-11T11:29:33.770182Z;2021-04-17T10:34:39.140866Z +C:/Windows/SysWOW64/pcbp.rs;file;15360;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907635600;4096;32;0;0;2021-12-16T13:35:46.235151Z;2021-11-11T11:29:33.699370Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/pcl.sep;file;150;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907638820;4096;0;0;0;2021-12-16T13:35:46.237110Z;2020-11-03T12:35:45.280885Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/PCPKsp.dll;file;766440;33206;2021-10-03T19:02:00.016266Z;;;2785144255;2;0;1688849861186620;4096;1504;0;0;2021-12-16T13:35:46.252931Z;2021-11-11T11:29:33.769184Z;2021-10-03T19:01:59.966606Z +C:/Windows/SysWOW64/PCShellCommonProxyStub.dll;file;29696;33206;2021-11-11T11:29:00.154156Z;;;2785144255;2;0;281474977879208;4096;64;0;0;2021-12-16T13:35:46.264984Z;2021-11-11T11:38:52.609003Z;2021-11-11T11:29:00.153158Z +C:/Windows/SysWOW64/pcwum.dll;file;22296;33206;2019-12-07T09:09:25.333427Z;;;2785144255;2;0;1407374884348620;4096;48;0;0;2021-12-16T13:35:46.269970Z;2021-11-11T11:29:33.772176Z;2019-12-07T09:09:25.333427Z +C:/Windows/SysWOW64/pdh.dll;file;244736;33206;2021-10-03T19:02:17.811972Z;;;2785144255;2;0;1688849861186990;4096;480;0;0;2021-12-16T13:35:46.269970Z;2021-11-11T11:29:33.790129Z;2021-10-03T19:02:17.795650Z +C:/Windows/SysWOW64/pdhui.dll;file;48128;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907629610;4096;96;0;0;2021-12-16T13:35:46.281939Z;2021-11-11T11:29:34.237030Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/PeerDist.dll;file;181760;33206;2020-11-03T12:46:05.897362Z;;;2785144255;2;0;562949954401752;4096;360;0;0;2021-12-16T13:35:46.296778Z;2021-11-11T11:29:32.359206Z;2020-11-03T12:46:05.897362Z +C:/Windows/SysWOW64/PeerDistSh.dll;file;343552;33206;2021-10-03T19:03:06.274231Z;;;2785144255;2;0;1688849861187770;4096;672;0;0;2021-12-16T13:35:46.313732Z;2021-11-11T11:29:32.358179Z;2021-10-03T19:03:06.263024Z +C:/Windows/SysWOW64/pegi-pt.rs;file;20992;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907634680;4096;48;0;0;2021-12-16T13:35:46.317692Z;2021-11-11T11:29:33.708346Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/pegi.rs;file;20480;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907636930;4096;40;0;0;2021-12-16T13:35:46.320713Z;2021-11-11T11:29:33.703360Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/PeopleAPIs.dll;file;87552;33206;2021-01-15T09:27:15.640142Z;;;2785144255;2;0;6192449488253030;4096;176;0;0;2021-12-16T13:35:46.334350Z;2021-11-11T11:29:33.748240Z;2021-01-15T09:27:15.640142Z +C:/Windows/SysWOW64/PerceptionDevice.dll;file;153600;33206;2021-01-15T09:27:39.004434Z;;;2785144255;2;0;15481123719708800;4096;304;0;0;2021-12-16T13:35:46.348551Z;2021-11-11T11:29:31.717706Z;2021-01-15T09:27:39.004434Z +C:/Windows/SysWOW64/PerceptionSimulation;directory;0;16822;2021-01-15T09:30:18.039307Z;;;2785144255;1;0;3096224744138050;4096;0;0;0;2021-12-16T13:36:01.184811Z;2021-01-15T09:30:18.039307Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/PerceptionSimulation/SixDofControllerManager.ProxyStubs.dll;file;12288;33206;2019-12-07T09:09:57.412688Z;;;2785144255;2;0;1125899907630360;4096;24;0;0;2020-11-03T12:35:39.750665Z;2021-11-11T11:29:34.199161Z;2019-12-07T09:09:57.412688Z +C:/Windows/SysWOW64/PerceptionSimulation/VirtualCameraManager.dll;file;55296;33206;2021-01-15T09:27:34.381430Z;;;2785144255;2;0;14355223812865500;4096;112;0;0;2021-01-15T09:30:25.428452Z;2021-11-11T11:29:34.200158Z;2021-01-15T09:27:34.381430Z +C:/Windows/SysWOW64/PerceptionSimulation/VirtualDisplayManager.ProxyStubs.dll;file;13824;33206;2019-12-07T09:09:57.412688Z;;;2785144255;2;0;1125899907630300;4096;32;0;0;2020-11-03T12:35:39.719422Z;2021-11-11T11:29:34.200158Z;2019-12-07T09:09:57.412688Z +C:/Windows/SysWOW64/PerceptionSimulation.ProxyStubs.dll;file;12288;33206;2019-12-07T09:09:57.412688Z;;;2785144255;2;0;1125899907628190;4096;24;0;0;2021-12-16T13:35:46.359704Z;2021-11-11T11:29:34.199161Z;2019-12-07T09:09:57.412688Z +C:/Windows/SysWOW64/perfctrs.dll;file;41472;33206;2020-11-03T12:45:52.244246Z;;;2785144255;2;0;1407374884529250;4096;88;0;0;2021-12-16T13:35:46.372945Z;2021-11-11T11:29:33.785173Z;2020-11-03T12:45:52.244246Z +C:/Windows/SysWOW64/perfdisk.dll;file;37888;33206;2020-11-03T12:45:52.228625Z;;;2785144255;2;0;1407374884529250;4096;80;0;0;2021-12-16T13:35:46.384812Z;2021-11-11T11:29:33.784180Z;2020-11-03T12:45:52.228625Z +C:/Windows/SysWOW64/perfhost.exe;file;21504;33206;2019-12-07T09:09:26.114855Z;;;2785144255;2;0;1125899907639030;4096;48;0;0;2021-12-16T13:35:46.385807Z;2021-11-11T11:29:33.785173Z;2019-12-07T09:09:26.114855Z +C:/Windows/SysWOW64/perfmon.exe;file;163840;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907627910;4096;320;0;0;2021-12-16T13:35:46.408333Z;2021-11-11T11:29:34.234037Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/perfmon.msc;file;145519;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907628560;4096;288;0;0;2021-12-16T13:35:46.414038Z;2021-02-22T08:01:24.461242Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/perfnet.dll;file;23552;33206;2020-11-03T12:45:52.228625Z;;;2785144255;2;0;1970324837950560;4096;48;0;0;2021-12-16T13:35:46.425651Z;2021-11-11T11:29:33.790129Z;2020-11-03T12:45:52.228625Z +C:/Windows/SysWOW64/perfos.dll;file;36864;33206;2020-11-03T12:45:52.228625Z;;;2785144255;2;0;562949954397283;4096;72;0;0;2021-12-16T13:35:46.437619Z;2021-11-11T11:29:33.787167Z;2020-11-03T12:45:52.228625Z +C:/Windows/SysWOW64/perfproc.dll;file;39424;33206;2020-11-03T12:45:52.244246Z;;;2785144255;2;0;562949954397284;4096;80;0;0;2021-12-16T13:35:46.449753Z;2021-11-11T11:29:33.794117Z;2020-11-03T12:45:52.244246Z +C:/Windows/SysWOW64/perfts.dll;file;67584;33206;2021-10-16T00:21:30.679474Z;;;2785144255;2;0;281474977857996;4096;136;0;0;2021-12-16T13:35:46.463304Z;2021-11-11T11:29:34.244011Z;2021-10-16T00:21:30.671454Z +C:/Windows/SysWOW64/PhoneCallHistoryApis.dll;file;180224;33206;2021-01-15T09:27:15.640142Z;;;2785144255;2;0;12384898975887500;4096;352;0;0;2021-12-16T13:35:46.477976Z;2021-11-11T11:29:33.748240Z;2021-01-15T09:27:15.640142Z +C:/Windows/SysWOW64/PhoneOm.dll;file;335872;33206;2021-01-15T09:27:15.343326Z;;;2785144255;2;0;11821949022458800;4096;656;0;0;2021-12-16T13:35:46.493992Z;2021-11-11T11:29:34.200158Z;2021-01-15T09:27:15.327697Z +C:/Windows/SysWOW64/PhonePlatformAbstraction.dll;file;85504;33206;2021-01-15T09:27:09.063409Z;;;2785144255;2;0;3940649674530910;4096;168;0;0;2021-12-16T13:35:46.507002Z;2021-11-11T11:29:33.702363Z;2021-01-15T09:27:09.047804Z +C:/Windows/SysWOW64/Phoneutil.dll;file;289280;33206;2021-01-15T09:27:15.327697Z;;;2785144255;2;0;9570149208773530;4096;568;0;0;2021-12-16T13:35:46.522462Z;2021-11-11T11:29:34.199161Z;2021-01-15T09:27:15.327697Z +C:/Windows/SysWOW64/PhoneutilRes.dll;file;2560;33206;2019-12-07T09:09:17.958263Z;;;2785144255;2;0;1125899907629410;4096;8;0;0;2021-12-16T13:35:46.525424Z;2021-11-11T11:29:34.197136Z;2019-12-07T09:09:17.958263Z +C:/Windows/SysWOW64/PhotoMetadataHandler.dll;file;409600;33206;2021-01-15T09:27:13.558576Z;;;2785144255;2;0;6473924464936180;4096;800;0;0;2021-12-16T13:35:46.527931Z;2021-11-11T11:29:33.787167Z;2021-01-15T09:27:13.558576Z +C:/Windows/SysWOW64/PhotoScreensaver.scr;file;499200;33206;2021-01-15T09:27:42.439450Z;;;2785144255;2;0;10414574138917500;4096;976;0;0;2021-12-16T13:35:46.579933Z;2021-11-11T11:29:32.378122Z;2021-01-15T09:27:42.423829Z +C:/Windows/SysWOW64/photowiz.dll;file;283136;33206;2019-12-07T14:54:43.985286Z;;;2785144255;2;0;1125899907621570;4096;560;0;0;2021-12-16T13:35:46.601643Z;2021-11-11T11:29:32.380116Z;2019-12-07T09:10:08.913188Z +C:/Windows/SysWOW64/PickerHost.exe;file;100168;33206;2021-06-10T14:01:38.072739Z;;;2785144255;2;0;281474977764853;4096;200;0;0;2021-12-16T13:35:46.624788Z;2021-11-11T11:29:33.732282Z;2021-06-10T14:01:38.072739Z +C:/Windows/SysWOW64/PickerPlatform.dll;file;276992;33206;2021-01-15T09:27:18.348952Z;;;2785144255;2;0;9288674232070780;4096;544;0;0;2021-12-16T13:35:46.639556Z;2021-11-11T11:29:34.208106Z;2021-01-15T09:27:18.333304Z +C:/Windows/SysWOW64/pid.dll;file;38400;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907630170;4096;80;0;0;2021-12-16T13:35:46.652105Z;2021-11-11T11:29:34.207109Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/pidgenx.dll;file;888632;33206;2019-12-07T09:08:58.945067Z;;;2785144255;2;0;1125899907645510;4096;1736;0;0;2021-12-16T13:35:46.668667Z;2021-11-11T11:29:33.637535Z;2019-12-07T09:08:58.945067Z +C:/Windows/SysWOW64/pifmgr.dll;file;35840;33206;2019-12-07T09:09:32.427493Z;;;2785144255;2;0;1125899907636680;4096;72;0;0;2021-12-16T13:35:46.677120Z;2021-11-11T11:29:33.806085Z;2019-12-07T09:09:32.427493Z +C:/Windows/SysWOW64/PimIndexMaintenanceClient.dll;file;48640;33206;2021-01-15T09:27:15.515153Z;;;2785144255;2;0;28710447625098600;4096;96;0;0;2021-12-16T13:35:46.689296Z;2021-11-11T11:29:33.756219Z;2021-01-15T09:27:15.515153Z +C:/Windows/SysWOW64/Pimstore.dll;file;766464;33206;2021-01-15T09:27:15.515153Z;;;2785144255;2;0;16325548649830000;4096;1504;0;0;2021-12-16T13:35:46.705795Z;2021-11-11T11:29:33.752230Z;2021-01-15T09:27:15.515153Z +C:/Windows/SysWOW64/PING.EXE;file;18944;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907630820;4096;40;0;0;2021-12-16T13:35:46.715878Z;2021-11-11T11:29:34.203158Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/PkgMgr.exe;file;209408;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;1125899907282460;4096;416;0;0;2021-12-16T13:35:46.728853Z;2021-11-11T11:29:33.694383Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/pku2u.dll;file;240128;33206;2021-10-16T00:21:19.258700Z;;;2785144255;2;0;281474977857659;4096;472;0;0;2021-12-16T13:35:46.743072Z;2021-11-11T11:29:33.804091Z;2021-10-16T00:21:19.243050Z +C:/Windows/SysWOW64/pl-PL;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;13510798882432300;4096;8;0;0;2021-12-16T13:36:01.184811Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/pl-PL/APHostRes.dll.mui;file;17920;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648600;4096;40;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/pl-PL/cdosys.dll.mui;file;49664;33206;2019-12-07T09:09:30.442382Z;;;2785144255;2;0;5910974511593460;4096;104;0;0;2019-12-07T09:09:30.442382Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.442382Z +C:/Windows/SysWOW64/pl-PL/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;5348024558172260;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:19.958283Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/pl-PL/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619360;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/pl-PL/SyncRes.dll.mui;file;31232;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648560;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.419930Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/pl-PL/windows.ui.xaml.dll.mui;file;18432;33206;2021-06-10T14:01:34.406110Z;;;2785144255;4;0;281474977764492;4096;40;0;0;2021-06-10T14:01:41.669260Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:34.406110Z +C:/Windows/SysWOW64/pla.dll;file;1532928;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907630160;4096;3000;0;0;2021-12-16T13:35:46.761135Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/playlistfolder.dll;file;60928;33206;2021-01-15T09:27:21.796655Z;;;2785144255;2;0;8725724278650090;4096;120;0;0;2021-12-16T13:35:46.775092Z;2021-11-11T11:29:33.817058Z;2021-01-15T09:27:21.796655Z +C:/Windows/SysWOW64/PlaySndSrv.dll;file;81408;33206;2021-01-15T09:27:09.125899Z;;;2785144255;2;0;3940649674530920;4096;160;0;0;2021-12-16T13:35:46.787070Z;2021-11-11T11:29:33.708346Z;2021-01-15T09:27:09.125899Z +C:/Windows/SysWOW64/PlayToDevice.dll;file;280576;33206;2021-01-15T09:27:34.506398Z;;;2785144255;2;0;13229323906022900;4096;552;0;0;2021-12-16T13:35:46.802991Z;2021-11-11T11:29:34.215132Z;2021-01-15T09:27:34.490778Z +C:/Windows/SysWOW64/PlayToManager.dll;file;424960;33206;2021-01-15T09:27:34.506398Z;;;2785144255;2;0;11821949022469600;4096;832;0;0;2021-12-16T13:35:46.819947Z;2021-11-11T11:29:34.204118Z;2021-01-15T09:27:34.506398Z +C:/Windows/SysWOW64/playtomenu.dll;file;143360;33206;2021-01-15T09:27:34.459535Z;;;2785144255;2;0;15199648742997500;4096;280;0;0;2021-12-16T13:35:46.840220Z;2021-11-11T11:29:34.206112Z;2021-01-15T09:27:34.459535Z +C:/Windows/SysWOW64/PlayToReceiver.dll;file;219136;33206;2021-01-15T09:27:48.583783Z;;;2785144255;2;0;25332747904582900;4096;432;0;0;2021-12-16T13:35:46.857041Z;2021-11-11T11:29:32.510685Z;2021-01-15T09:27:48.583783Z +C:/Windows/SysWOW64/PlayToStatusProvider.dll;file;29696;33206;2021-01-15T09:27:24.932437Z;;;2785144255;2;0;4785074604701490;4096;64;0;0;2021-12-16T13:35:46.869047Z;2021-11-11T11:29:34.123584Z;2021-01-15T09:27:24.932437Z +C:/Windows/SysWOW64/pngfilt.dll;file;58880;33206;2021-01-15T09:27:35.068767Z;;;2785144255;2;0;10696049115627000;4096;120;0;0;2021-12-16T13:35:46.882425Z;2021-11-11T11:29:34.230049Z;2021-01-15T09:27:35.068767Z +C:/Windows/SysWOW64/pnrpnsp.dll;file;70656;33206;2020-11-03T12:46:03.647890Z;;;2785144255;2;0;562949954401114;4096;144;0;0;2021-12-16T13:35:46.882883Z;2021-11-11T11:29:31.744362Z;2020-11-03T12:46:03.647890Z +C:/Windows/SysWOW64/policymanager.dll;file;533536;33206;2021-11-11T11:29:00.588082Z;;;2785144255;2;0;281474977879232;4096;1048;0;0;2021-12-16T13:35:46.884963Z;2021-11-11T11:38:50.680595Z;2021-11-11T11:29:00.577118Z +C:/Windows/SysWOW64/polstore.dll;file;296448;33206;2021-05-18T10:59:11.740026Z;;;2785144255;2;0;3096224744704460;4096;584;0;0;2021-12-16T13:35:46.899297Z;2021-11-11T11:29:33.783178Z;2021-05-18T10:59:11.737034Z +C:/Windows/SysWOW64/poqexec.exe;file;391168;33206;2021-09-14T02:59:52.500190Z;;;2785144255;2;0;8725724278260800;4096;768;0;0;2021-12-16T13:35:46.913016Z;2021-11-11T11:23:33.989492Z;2021-11-11T11:23:28.969963Z +C:/Windows/SysWOW64/PortableDeviceApi.dll;file;520704;33206;2021-01-15T09:27:48.599405Z;;;2785144255;2;0;17451448556684600;4096;1024;0;0;2021-12-16T13:35:46.928978Z;2021-11-11T11:29:32.514673Z;2021-01-15T09:27:48.583783Z +C:/Windows/SysWOW64/PortableDeviceClassExtension.dll;file;109568;33206;2021-01-15T09:27:48.599405Z;;;2785144255;2;0;13792273859446100;4096;216;0;0;2021-12-16T13:35:46.942816Z;2021-11-11T11:29:32.513676Z;2021-01-15T09:27:48.599405Z +C:/Windows/SysWOW64/PortableDeviceConnectApi.dll;file;56832;33206;2021-01-15T09:27:48.599405Z;;;2785144255;2;0;17451448556684600;4096;112;0;0;2021-12-16T13:35:46.955711Z;2021-11-11T11:29:32.513676Z;2021-01-15T09:27:48.599405Z +C:/Windows/SysWOW64/PortableDeviceStatus.dll;file;60416;33206;2021-01-15T09:27:48.630647Z;;;2785144255;2;0;18858823440237900;4096;120;0;0;2021-12-16T13:35:46.968827Z;2021-11-11T11:29:32.516668Z;2021-01-15T09:27:48.630647Z +C:/Windows/SysWOW64/PortableDeviceSyncProvider.dll;file;132096;33206;2021-01-15T09:27:34.584507Z;;;2785144255;2;0;18295873486814700;4096;264;0;0;2021-12-16T13:35:46.982823Z;2021-11-11T11:29:34.202158Z;2021-01-15T09:27:34.584507Z +C:/Windows/SysWOW64/PortableDeviceTypes.dll;file;145408;33206;2021-01-15T09:27:48.599405Z;;;2785144255;2;0;18014398510105900;4096;288;0;0;2021-12-16T13:35:46.996752Z;2021-11-11T11:29:32.513676Z;2021-01-15T09:27:48.599405Z +C:/Windows/SysWOW64/PortableDeviceWiaCompat.dll;file;165888;33206;2021-10-16T00:21:34.676465Z;;;2785144255;2;0;281474977858072;4096;328;0;0;2021-12-16T13:35:47.013707Z;2021-11-11T11:29:32.514673Z;2021-10-16T00:21:34.676465Z +C:/Windows/SysWOW64/POSyncServices.dll;file;52736;33206;2021-01-15T09:27:15.686963Z;;;2785144255;2;0;9288674232070300;4096;104;0;0;2021-12-16T13:35:47.026673Z;2021-11-11T11:29:33.755222Z;2021-01-15T09:27:15.686963Z +C:/Windows/SysWOW64/pots.dll;file;35840;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907629920;4096;72;0;0;2021-12-16T13:35:47.039638Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/powercfg.cpl;file;203264;33206;2019-12-07T09:10:02.866107Z;;;2785144255;2;0;1125899907629340;4096;400;0;0;2021-12-16T13:35:47.060581Z;2021-11-11T11:29:34.235034Z;2019-12-07T09:10:02.866107Z +C:/Windows/SysWOW64/powercfg.exe;file;78336;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907627950;4096;160;0;0;2021-12-16T13:35:47.072585Z;2021-11-11T11:29:34.207109Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/powercpl.dll;file;160256;33206;2020-11-03T12:46:03.179248Z;;;2785144255;2;0;562949954401073;4096;320;0;0;2021-12-16T13:35:47.088509Z;2021-11-11T11:29:34.234037Z;2020-11-03T12:46:03.179248Z +C:/Windows/SysWOW64/PowerMgrInst.exe;file;62136;33206;2021-07-11T21:47:38Z;;;2785144255;1;0;1970324837071780;4096;128;0;0;2021-12-16T13:35:47.157322Z;2021-10-14T07:03:54.463273Z;2020-11-05T20:56:21.368160Z +C:/Windows/SysWOW64/powrprof.dll;file;268080;33206;2020-11-03T12:45:51.963028Z;;;2785144255;2;0;562949954397218;4096;528;0;0;2021-12-16T13:35:47.158320Z;2021-11-11T11:29:33.807083Z;2020-11-03T12:45:51.963028Z +C:/Windows/SysWOW64/PresentationHost.exe;file;256000;33206;2019-12-07T09:10:37.820576Z;;;2785144255;2;0;1125899907626850;4096;504;0;0;2021-12-16T13:35:47.211179Z;2021-11-11T11:29:31.909935Z;2019-12-07T09:10:37.820576Z +C:/Windows/SysWOW64/PresentationHostProxy.dll;file;60416;33206;2019-12-07T09:10:37.820576Z;;;2785144255;2;0;1125899907625130;4096;120;0;0;2021-12-16T13:35:47.226139Z;2021-11-11T11:29:31.910397Z;2019-12-07T09:10:37.820576Z +C:/Windows/SysWOW64/prevhost.exe;file;24064;33206;2021-01-15T09:27:21.812277Z;;;2785144255;2;0;12384898975888600;4096;48;0;0;2021-12-16T13:35:47.250075Z;2021-11-11T11:29:33.805088Z;2021-01-15T09:27:21.812277Z +C:/Windows/SysWOW64/prflbmsg.dll;file;13824;33206;2019-12-07T09:09:26.114855Z;;;2785144255;2;0;1125899907636980;4096;32;0;0;2021-12-16T13:35:47.255061Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:26.114855Z +C:/Windows/SysWOW64/print.exe;file;14848;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907630590;4096;32;0;0;2021-12-16T13:35:47.265347Z;2021-11-11T11:29:34.211139Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/Print.Workflow.Source.dll;file;63488;33206;2020-11-03T12:45:53.478337Z;;;2785144255;2;0;1407374884529900;4096;128;0;0;2021-12-16T13:35:47.279315Z;2021-11-11T11:29:33.815064Z;2020-11-03T12:45:53.478337Z +C:/Windows/SysWOW64/PrintConfig.dll;file;2877440;33206;2021-04-17T10:32:55.049611Z;;;2785144255;1;0;844424930167818;4096;5624;0;0;2021-12-16T13:35:47.312289Z;2021-10-03T19:04:32.892911Z;2020-11-03T12:54:40.074158Z +C:/Windows/SysWOW64/Printing_Admin_Scripts;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;2814749767427390;4096;0;0;0;2021-12-16T13:36:01.184811Z;2020-11-03T12:41:50.298074Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/de-DE;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;2814749767427400;4096;8;0;0;2021-12-16T13:36:01.184811Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/de-DE/prncnfg.vbs;file;106798;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1125899907612310;4096;216;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:28.674991Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/de-DE/prndrvr.vbs;file;51986;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1125899907612310;4096;104;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:28.674991Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/de-DE/prnjobs.vbs;file;70574;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1125899907612320;4096;144;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:28.690648Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/de-DE/prnmngr.vbs;file;82080;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1125899907612320;4096;168;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:28.690648Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/de-DE/prnport.vbs;file;57556;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1125899907612320;4096;120;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:28.690648Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/de-DE/prnqctl.vbs;file;51806;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1125899907612320;4096;104;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:28.690648Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/de-DE/pubprn.vbs;file;7852;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1125899907612320;4096;16;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:28.690648Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/en-US;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;1407374884227070;4096;8;0;0;2021-12-16T13:36:01.185767Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:50.298074Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/en-US/prncnfg.vbs;file;113676;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397990;4096;224;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/en-US/prndrvr.vbs;file;81180;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397990;4096;160;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/en-US/prnjobs.vbs;file;77610;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397990;4096;152;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/en-US/prnmngr.vbs;file;110828;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397990;4096;224;0;0;2020-11-03T12:41:35.660324Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/en-US/prnport.vbs;file;86536;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397990;4096;176;0;0;2020-11-03T12:41:35.660324Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/en-US/prnqctl.vbs;file;59198;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397990;4096;120;0;0;2020-11-03T12:41:35.660324Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/Printing_Admin_Scripts/en-US/pubprn.vbs;file;37532;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397990;4096;80;0;0;2020-11-03T12:41:35.660324Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/PrintPlatformConfig.dll;file;51712;33206;2021-01-15T09:27:21.459610Z;;;2785144255;2;0;9288674232071360;4096;104;0;0;2021-12-16T13:35:47.325779Z;2021-11-11T11:29:33.807083Z;2021-01-15T09:27:21.459610Z +C:/Windows/SysWOW64/printui.dll;file;582656;33206;2021-10-03T19:02:20.055660Z;;;2785144255;2;0;1688849861187020;4096;1144;0;0;2021-12-16T13:35:47.342769Z;2021-11-11T11:29:33.817058Z;2021-10-03T19:02:20.039160Z +C:/Windows/SysWOW64/printui.exe;file;62464;33206;2021-10-03T19:02:19.962498Z;;;2785144255;2;0;1688849861187020;4096;128;0;0;2021-12-16T13:35:47.362317Z;2021-11-11T11:29:33.812069Z;2021-10-03T19:02:19.957666Z +C:/Windows/SysWOW64/PrintWorkflowProxy.dll;file;16896;33206;2020-11-03T12:45:53.478337Z;;;2785144255;2;0;2814749768083180;4096;40;0;0;2021-12-16T13:35:47.374375Z;2021-11-11T11:29:33.812069Z;2020-11-03T12:45:53.478337Z +C:/Windows/SysWOW64/PrintWorkflowService.dll;file;138752;33206;2021-02-11T15:05:16.761563Z;;;2785144255;2;0;562949954319177;4096;272;0;0;2021-12-16T13:35:47.389185Z;2021-11-11T11:29:33.806085Z;2021-02-11T15:05:16.761563Z +C:/Windows/SysWOW64/PrintWSDAHost.dll;file;123904;33206;2021-01-15T09:27:38.114021Z;;;2785144255;2;0;13510798882734100;4096;248;0;0;2021-12-16T13:35:47.404167Z;2021-11-11T11:29:34.235034Z;2021-01-15T09:27:38.114021Z +C:/Windows/SysWOW64/prncache.dll;file;127488;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907638760;4096;256;0;0;2021-12-16T13:35:47.420912Z;2021-11-11T11:29:33.811072Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/prnfldr.dll;file;212992;33206;2019-12-07T09:09:32.318134Z;;;2785144255;2;0;1125899907635830;4096;416;0;0;2021-12-16T13:35:47.421909Z;2021-11-11T11:29:33.810075Z;2019-12-07T09:09:32.318134Z +C:/Windows/SysWOW64/prnntfy.dll;file;278528;33206;2021-01-15T09:27:21.490828Z;;;2785144255;2;0;9007199255360710;4096;544;0;0;2021-12-16T13:35:47.441426Z;2021-11-11T11:29:33.805088Z;2021-01-15T09:27:21.490828Z +C:/Windows/SysWOW64/prntvpt.dll;file;140288;33206;2021-01-15T09:27:21.443962Z;;;2785144255;2;0;7881299348518080;4096;280;0;0;2021-12-16T13:35:47.454382Z;2021-11-11T11:29:33.817058Z;2021-01-15T09:27:21.443962Z +C:/Windows/SysWOW64/profapi.dll;file;89360;33206;2021-03-11T12:12:13.211143Z;;;2785144255;2;0;844424931102509;4096;176;0;0;2021-12-16T13:35:47.455350Z;2021-11-11T11:29:33.707349Z;2021-03-11T12:12:13.211143Z +C:/Windows/SysWOW64/profext.dll;file;126552;33206;2021-10-03T19:02:12.793117Z;;;2785144255;2;0;1688849861186910;4096;248;0;0;2021-12-16T13:35:47.470311Z;2021-11-11T11:29:33.748240Z;2021-10-03T19:02:12.782839Z +C:/Windows/SysWOW64/propsys.dll;file;791808;33206;2021-06-10T14:01:40.048246Z;;;2785144255;2;0;281474977765144;4096;1552;0;0;2021-12-16T13:35:47.470311Z;2021-11-11T11:29:33.757217Z;2021-06-10T14:01:40.032622Z +C:/Windows/SysWOW64/proquota.exe;file;39424;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907639330;4096;80;0;0;2021-12-16T13:35:47.485312Z;2021-11-11T11:29:33.784180Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/provcore.dll;file;530944;33206;2021-01-15T09:27:09.603633Z;;;2785144255;2;0;11821949022431400;4096;1040;0;0;2021-12-16T13:35:47.502226Z;2021-11-11T11:29:33.711338Z;2021-01-15T09:27:09.603633Z +C:/Windows/SysWOW64/provisioningcommandscsp.dll;file;56832;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907630700;4096;112;0;0;2021-12-16T13:35:47.514933Z;2021-11-11T11:29:31.742368Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/provlaunch.exe;file;45056;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907630130;4096;88;0;0;2021-12-16T13:35:47.539908Z;2021-11-11T11:29:31.747355Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/provmigrate.dll;file;77824;33206;2020-11-03T12:46:03.647890Z;;;2785144255;2;0;562949954401115;4096;152;0;0;2021-12-16T13:35:47.551733Z;2021-11-11T11:29:31.741371Z;2020-11-03T12:46:03.647890Z +C:/Windows/SysWOW64/provplatformdesktop.dll;file;257024;33206;2021-03-11T12:12:32.776996Z;;;2785144255;2;0;844424931105134;4096;504;0;0;2021-12-16T13:35:47.566708Z;2021-11-11T11:29:31.746357Z;2021-03-11T12:12:32.761380Z +C:/Windows/SysWOW64/provsvc.dll;file;384512;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907628050;4096;752;0;0;2021-12-16T13:35:47.582664Z;2021-11-11T11:29:31.741371Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/provthrd.dll;file;236032;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;1125899907638690;4096;464;0;0;2021-12-16T13:35:47.601685Z;2021-11-11T11:29:33.797110Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/ProximityCommon.dll;file;120832;33206;2019-12-07T09:09:15.192857Z;;;2785144255;2;0;1125899907628470;4096;240;0;0;2021-12-16T13:35:47.615689Z;2021-11-11T11:29:33.737270Z;2019-12-07T09:09:15.192857Z +C:/Windows/SysWOW64/ProximityCommonPal.dll;file;14336;33206;2021-01-15T09:27:12.808790Z;;;2785144255;2;0;2533274790986910;4096;32;0;0;2021-12-16T13:35:47.627770Z;2021-11-11T11:29:33.738267Z;2021-01-15T09:27:12.808790Z +C:/Windows/SysWOW64/ProximityRtapiPal.dll;file;20480;33206;2019-12-07T09:09:15.192857Z;;;2785144255;2;0;1125899907630480;4096;40;0;0;2021-12-16T13:35:47.640734Z;2021-11-11T11:29:33.743254Z;2019-12-07T09:09:15.192857Z +C:/Windows/SysWOW64/prvdmofcomp.dll;file;65024;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;1125899907636210;4096;128;0;0;2021-12-16T13:35:47.653735Z;2021-11-11T11:29:33.726298Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/psapi.dll;file;17016;33206;2020-11-03T12:45:51.088262Z;;;2785144255;2;0;562949954396577;4096;40;0;0;2021-12-16T13:35:47.653735Z;2021-11-11T11:29:33.771179Z;2020-11-03T12:45:51.088262Z +C:/Windows/SysWOW64/pscript.sep;file;51;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907635230;4096;0;0;0;2021-12-16T13:35:47.655696Z;2020-11-03T12:35:42.984510Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/PSHED.DLL;file;66064;33206;2019-12-07T09:09:11.926670Z;;;2785144255;2;0;1125899907636870;4096;136;0;0;2021-12-16T13:35:47.663690Z;2021-11-11T11:29:33.708346Z;2019-12-07T09:09:11.926670Z +C:/Windows/SysWOW64/psisdecd.dll;file;484352;33206;2021-01-15T09:27:38.785736Z;;;2785144255;2;0;12384898975891500;4096;952;0;0;2021-12-16T13:35:47.687635Z;2021-11-11T11:29:34.244011Z;2021-01-15T09:27:38.770115Z +C:/Windows/SysWOW64/psisrndr.ax;file;80384;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907628130;4096;160;0;0;2021-12-16T13:35:47.701600Z;2021-11-11T11:29:34.241020Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/PSModuleDiscoveryProvider.dll;file;40448;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;1125899907638700;4096;80;0;0;2021-12-16T13:35:47.713588Z;2021-11-11T11:29:33.714330Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/psr.exe;file;194048;33206;2019-12-06T19:42:00Z;;;2785144255;2;0;15481123719767800;4096;384;0;0;2021-12-16T13:35:47.740161Z;2020-11-03T12:35:25.128947Z;2019-12-07T14:54:10.047825Z +C:/Windows/SysWOW64/pstorec.dll;file;14336;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;1125899907635570;4096;32;0;0;2021-12-16T13:35:47.749999Z;2021-11-11T11:29:33.783178Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/pt-BR;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;2814749767427400;4096;8;0;0;2021-12-16T13:36:01.185767Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/pt-BR/APHostRes.dll.mui;file;16896;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648660;4096;40;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.482415Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/pt-BR/cdosys.dll.mui;file;49664;33206;2019-12-07T09:09:30.442382Z;;;2785144255;2;0;6755399441725390;4096;104;0;0;2019-12-07T09:09:30.442382Z;2020-11-03T12:35:19.927041Z;2019-12-07T09:09:30.442382Z +C:/Windows/SysWOW64/pt-BR/comctl32.dll.mui;file;6144;33206;2021-06-10T14:01:41.700569Z;;;2785144255;2;0;281474977765219;4096;16;0;0;2021-06-10T14:01:41.700569Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:41.700569Z +C:/Windows/SysWOW64/pt-BR/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619440;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/pt-BR/SyncRes.dll.mui;file;30720;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648580;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.435552Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/pt-BR/windows.ui.xaml.dll.mui;file;17920;33206;2021-06-10T14:01:34.406110Z;;;2785144255;4;0;281474977764491;4096;40;0;0;2021-06-10T14:01:41.669260Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:34.406110Z +C:/Windows/SysWOW64/pt-PT;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;3096224744138050;4096;8;0;0;2021-12-16T13:36:01.185767Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/pt-PT/APHostRes.dll.mui;file;16896;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648560;4096;40;0;0;2019-12-07T14:53:37.751794Z;2020-11-03T12:35:52.419930Z;2019-12-07T14:53:37.751794Z +C:/Windows/SysWOW64/pt-PT/cdosys.dll.mui;file;49664;33206;2019-12-07T09:09:30.442382Z;;;2785144255;2;0;6755399441725390;4096;104;0;0;2019-12-07T09:09:30.442382Z;2020-11-03T12:35:19.927041Z;2019-12-07T09:09:30.442382Z +C:/Windows/SysWOW64/pt-PT/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;5348024558172250;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:19.958283Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/pt-PT/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619390;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.470887Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/pt-PT/SyncRes.dll.mui;file;31744;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648630;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.466793Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/pt-PT/windows.ui.xaml.dll.mui;file;17920;33206;2019-12-07T09:09:02.067275Z;;;2785144255;4;0;1125899907639490;4096;40;0;0;2019-12-07T09:09:02.067275Z;2020-11-03T12:35:45.624554Z;2019-12-07T09:09:02.067275Z +C:/Windows/SysWOW64/puiapi.dll;file;172032;33206;2021-10-03T19:02:19.886967Z;;;2785144255;2;0;1688849861187010;4096;336;0;0;2021-12-16T13:35:47.766043Z;2021-11-11T11:29:33.806085Z;2021-10-03T19:02:19.882941Z +C:/Windows/SysWOW64/puiobj.dll;file;368640;33206;2021-10-03T19:02:19.926701Z;;;2785144255;2;0;1688849861187010;4096;720;0;0;2021-12-16T13:35:47.784992Z;2021-11-11T11:29:33.811072Z;2021-10-03T19:02:19.903588Z +C:/Windows/SysWOW64/PWMTR32V.dll;file;5410488;33206;2021-07-11T21:47:42Z;;;2785144255;1;0;2533274790493100;4096;10568;0;0;2021-12-16T13:35:47.832675Z;2021-10-14T07:03:54.463273Z;2021-01-12T18:03:19.299300Z +C:/Windows/SysWOW64/pwrshplugin.dll;file;74752;33206;2019-12-07T09:10:32.961187Z;;;2785144255;2;0;1125899907628360;4096;152;0;0;2021-12-16T13:35:47.846665Z;2021-11-11T11:29:34.239061Z;2019-12-07T09:10:32.961187Z +C:/Windows/SysWOW64/qasf.dll;file;127488;33206;2019-12-07T09:10:00.395879Z;;;2785144255;2;0;1125899907630760;4096;256;0;0;2021-12-16T13:35:47.862593Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:10:00.395879Z +C:/Windows/SysWOW64/qcap.dll;file;211968;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907629800;4096;416;0;0;2021-12-16T13:35:47.862593Z;2021-11-11T11:29:34.248Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/qdv.dll;file;291328;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907628390;4096;576;0;0;2021-12-16T13:35:47.877654Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/qdvd.dll;file;550400;33206;2021-01-15T09:27:38.254612Z;;;2785144255;2;0;19140298416947200;4096;1080;0;0;2021-12-16T13:35:47.893621Z;2021-11-11T11:29:34.251028Z;2021-01-15T09:27:38.254612Z +C:/Windows/SysWOW64/qedit.dll;file;557056;33206;2021-01-15T09:27:38.848221Z;;;2785144255;2;0;19140298416947300;4096;1088;0;0;2021-12-16T13:35:47.915776Z;2021-11-11T11:29:34.245008Z;2021-01-15T09:27:38.848221Z +C:/Windows/SysWOW64/qedwipes.dll;file;2560;33206;2019-12-07T09:10:05.491292Z;;;2785144255;2;0;1125899907628020;4096;8;0;0;2021-12-16T13:35:47.919817Z;2021-11-11T11:29:34.244011Z;2019-12-07T09:10:05.491292Z +C:/Windows/SysWOW64/quartz.dll;file;1470976;33206;2021-01-15T09:27:38.238991Z;;;2785144255;2;0;17169973579972600;4096;2880;0;0;2021-12-16T13:35:47.919817Z;2021-11-11T11:29:34.241020Z;2021-01-15T09:27:38.207748Z +C:/Windows/SysWOW64/Query.dll;file;84992;33206;2019-12-07T09:09:17.864485Z;;;2785144255;2;0;1125899907637650;4096;168;0;0;2021-12-16T13:35:47.933215Z;2021-11-11T11:29:33.815064Z;2019-12-07T09:09:17.864485Z +C:/Windows/SysWOW64/quickassist.exe;file;528896;33206;2021-11-11T11:29:16.535768Z;;;2785144255;2;0;281474977879865;4096;1040;0;0;2021-12-16T13:35:47.985079Z;2021-11-11T11:38:52.124916Z;2021-11-11T11:29:16.522924Z +C:/Windows/SysWOW64/qwave.dll;file;228864;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907637010;4096;448;0;0;2021-12-16T13:35:47.998044Z;2021-11-11T11:29:33.802096Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/RacEngn.dll;file;27136;33206;2019-12-07T09:10:04.069297Z;;;2785144255;2;0;1125899907630060;4096;56;0;0;2021-12-16T13:35:48.010550Z;2021-11-11T11:29:34.237030Z;2019-12-07T09:10:04.069297Z +C:/Windows/SysWOW64/racpldlg.dll;file;116736;33206;2021-07-16T09:18:13.678454Z;;;2785144255;2;0;281474977817343;4096;232;0;0;2021-12-16T13:35:48.025549Z;2021-11-11T11:29:31.449024Z;2021-07-16T09:18:13.678454Z +C:/Windows/SysWOW64/radardt.dll;file;91648;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907628570;4096;184;0;0;2021-12-16T13:35:48.039080Z;2021-11-11T11:29:34.242017Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/radarrs.dll;file;63488;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907630780;4096;128;0;0;2021-12-16T13:35:48.051982Z;2021-11-11T11:29:34.252028Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/RADCUI.dll;file;316416;33206;2021-01-15T09:27:10.213118Z;;;2785144255;2;0;15199648742962900;4096;624;0;0;2021-12-16T13:35:48.073952Z;2021-11-11T11:29:33.727295Z;2021-01-15T09:27:10.213118Z +C:/Windows/SysWOW64/ras;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;3659174697559370;4096;0;0;0;2021-12-16T13:36:01.185767Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/ras/cis.scp;file;735;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907514320;4096;8;0;0;2021-02-22T08:01:24.513151Z;2021-02-22T08:01:24.513151Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/ras/pad.inf;file;14529;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;8725724278488000;4096;32;0;0;2021-02-22T08:01:24.513736Z;2021-02-22T08:01:24.513736Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/ras/pppmenu.scp;file;2817;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907514330;4096;8;0;0;2021-02-22T08:01:24.513932Z;2021-02-22T08:01:24.513932Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/ras/switch.inf;file;6235;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;9288674231910170;4096;16;0;0;2021-02-22T08:01:24.514670Z;2021-02-22T08:01:24.514670Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/rasadhlp.dll;file;12800;33206;2020-11-03T12:45:53.587671Z;;;2785144255;2;0;2533274791372540;4096;32;0;0;2021-12-16T13:35:48.074394Z;2021-11-11T11:29:33.809077Z;2020-11-03T12:45:53.587671Z +C:/Windows/SysWOW64/rasapi32.dll;file;909824;33206;2021-11-11T11:29:01.242229Z;;;2785144255;2;0;281474977879251;4096;1784;0;0;2021-12-16T13:35:48.074667Z;2021-11-11T11:38:50.278800Z;2021-11-11T11:29:01.221897Z +C:/Windows/SysWOW64/rasautou.exe;file;15360;33206;2020-11-03T12:45:53.587671Z;;;2785144255;2;0;1688849861240570;4096;32;0;0;2021-12-16T13:35:48.084876Z;2021-11-11T11:29:33.807083Z;2020-11-03T12:45:53.587671Z +C:/Windows/SysWOW64/raschap.dll;file;134144;33206;2020-11-03T12:45:53.572026Z;;;2785144255;2;0;1125899907819260;4096;264;0;0;2021-12-16T13:35:48.099840Z;2021-11-11T11:29:33.815064Z;2020-11-03T12:45:53.572026Z +C:/Windows/SysWOW64/raschapext.dll;file;77824;33206;2021-01-15T09:27:21.506449Z;;;2785144255;2;0;23643898044314800;4096;152;0;0;2021-12-16T13:35:48.113802Z;2021-11-11T11:29:33.816060Z;2021-01-15T09:27:21.506449Z +C:/Windows/SysWOW64/rasctrnm.h;file;1820;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;3659174697694150;4096;8;0;0;2021-12-16T13:35:48.116571Z;2021-02-22T08:01:24.514134Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/rasctrs.dll;file;19456;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907637340;4096;40;0;0;2021-12-16T13:35:48.127855Z;2021-11-11T11:29:33.808081Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/rasdiag.dll;file;64000;33206;2021-01-15T09:27:21.568968Z;;;2785144255;2;0;9570149208782040;4096;128;0;0;2021-12-16T13:35:48.141856Z;2021-11-11T11:29:33.810075Z;2021-01-15T09:27:21.568968Z +C:/Windows/SysWOW64/rasdial.exe;file;19456;33206;2021-10-16T00:21:19.154925Z;;;2785144255;2;0;281474977857651;4096;40;0;0;2021-12-16T13:35:48.152720Z;2021-11-11T11:29:33.805088Z;2021-10-16T00:21:19.154925Z +C:/Windows/SysWOW64/rasdlg.dll;file;495616;33206;2021-03-11T12:12:19.727230Z;;;2785144255;2;0;844424931103417;4096;968;0;0;2021-12-16T13:35:48.169930Z;2021-11-11T11:29:33.814066Z;2021-03-11T12:12:19.727230Z +C:/Windows/SysWOW64/raserver.exe;file;107520;33206;2021-07-16T09:18:14.095023Z;;;2785144255;2;0;281474977817494;4096;216;0;0;2021-12-16T13:35:48.197859Z;2021-11-11T11:29:31.450023Z;2021-07-16T09:18:14.095023Z +C:/Windows/SysWOW64/rasgcw.dll;file;431616;33206;2021-03-11T12:12:19.464185Z;;;2785144255;2;0;844424931103400;4096;848;0;0;2021-12-16T13:35:48.216807Z;2021-11-11T11:29:33.802096Z;2021-03-11T12:12:19.457677Z +C:/Windows/SysWOW64/rasman.dll;file;156160;33206;2021-11-11T11:29:01.253830Z;;;2785144255;2;0;281474977879252;4096;312;0;0;2021-12-16T13:35:48.216807Z;2021-11-11T11:38:50.278800Z;2021-11-11T11:29:01.249895Z +C:/Windows/SysWOW64/rasmontr.dll;file;295936;33206;2021-10-16T00:21:19.180595Z;;;2785144255;2;0;281474977857653;4096;584;0;0;2021-12-16T13:35:48.232421Z;2021-11-11T11:29:33.817058Z;2021-10-16T00:21:19.164935Z +C:/Windows/SysWOW64/rasphone.exe;file;31744;33206;2019-12-07T09:09:32.318134Z;;;2785144255;2;0;1125899907637750;4096;64;0;0;2021-12-16T13:35:48.258650Z;2021-11-15T13:07:18.033808Z;2019-12-07T09:09:32.318134Z +C:/Windows/SysWOW64/rasplap.dll;file;200192;33206;2021-03-11T12:12:19.626962Z;;;2785144255;2;0;844424931103409;4096;392;0;0;2021-12-16T13:35:48.272149Z;2021-11-11T11:29:33.805088Z;2021-03-11T12:12:19.611339Z +C:/Windows/SysWOW64/rasppp.dll;file;283136;33206;2019-12-07T09:10:32.869053Z;;;2785144255;2;0;844424930925940;4096;560;0;0;2021-12-16T13:35:48.287354Z;2021-11-11T11:29:33.817058Z;2019-12-07T09:10:32.869053Z +C:/Windows/SysWOW64/rastapi.dll;file;232448;33206;2021-07-16T09:18:05.029236Z;;;2785144255;2;0;281474977816969;4096;456;0;0;2021-12-16T13:35:48.302638Z;2021-11-11T11:29:33.816060Z;2021-07-16T09:18:05.029236Z +C:/Windows/SysWOW64/rastls.dll;file;321536;33206;2021-11-11T11:29:01.139403Z;;;2785144255;2;0;281474977879243;4096;632;0;0;2021-12-16T13:35:48.318967Z;2021-11-11T11:38:53.191007Z;2021-11-11T11:29:01.133421Z +C:/Windows/SysWOW64/rastlsext.dll;file;178176;33206;2021-11-11T11:29:01.217943Z;;;2785144255;2;0;281474977879250;4096;352;0;0;2021-12-16T13:35:48.334889Z;2021-11-11T11:38:50.734020Z;2021-11-11T11:29:01.214911Z +C:/Windows/SysWOW64/RasToast;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2533274790716740;4096;0;0;0;2021-12-16T13:36:01.185767Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/rdpbase.dll;file;1236808;33206;2021-11-11T11:28:59.859973Z;;;2785144255;2;0;281474977879196;4096;2416;0;0;2021-12-16T13:35:48.354184Z;2021-11-11T11:38:52.609003Z;2021-11-11T11:28:59.837005Z +C:/Windows/SysWOW64/rdpcore.dll;file;1075712;33206;2021-01-15T09:27:38.160885Z;;;2785144255;2;0;18295873486815200;4096;2104;0;0;2021-12-16T13:35:48.371040Z;2021-11-11T11:29:34.240064Z;2021-01-15T09:27:38.145264Z +C:/Windows/SysWOW64/rdpencom.dll;file;356352;33206;2021-01-15T09:27:38.145264Z;;;2785144255;2;0;13792273859444700;4096;696;0;0;2021-12-16T13:35:48.387465Z;2021-11-11T11:29:34.236070Z;2021-01-15T09:27:38.129661Z +C:/Windows/SysWOW64/rdpendp.dll;file;263424;33206;2021-01-15T09:27:38.457689Z;;;2785144255;2;0;14073748836155400;4096;520;0;0;2021-12-16T13:35:48.404207Z;2021-11-11T11:29:34.248Z;2021-01-15T09:27:38.457689Z +C:/Windows/SysWOW64/RdpSa.exe;file;48128;33206;2019-12-07T09:10:04.225445Z;;;2785144255;2;0;1125899907628320;4096;96;0;0;2021-12-16T13:35:48.416001Z;2021-11-11T11:29:34.242017Z;2019-12-07T09:10:04.225445Z +C:/Windows/SysWOW64/RdpSaProxy.exe;file;33280;33206;2019-12-07T09:10:04.225445Z;;;2785144255;2;0;1125899907628830;4096;72;0;0;2021-12-16T13:35:48.427940Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:10:04.225445Z +C:/Windows/SysWOW64/RdpSaPs.dll;file;11776;33206;2019-12-07T09:10:04.225445Z;;;2785144255;2;0;1125899907628120;4096;24;0;0;2021-12-16T13:35:48.438756Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:10:04.225445Z +C:/Windows/SysWOW64/RdpSaUacHelper.exe;file;27648;33206;2019-12-07T09:10:04.225445Z;;;2785144255;2;0;1125899907628780;4096;56;0;0;2021-12-16T13:35:48.449764Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:04.225445Z +C:/Windows/SysWOW64/rdpserverbase.dll;file;1613640;33206;2021-11-11T11:28:59.905819Z;;;2785144255;2;0;281474977879197;4096;3152;0;0;2021-12-16T13:35:48.468664Z;2021-11-11T11:38:51.605400Z;2021-11-11T11:28:59.875899Z +C:/Windows/SysWOW64/rdpsharercom.dll;file;1277440;33206;2021-01-15T09:27:15.280848Z;;;2785144255;2;0;4503599627981690;4096;2496;0;0;2021-12-16T13:35:48.486581Z;2021-11-11T11:29:33.739265Z;2021-01-15T09:27:15.265188Z +C:/Windows/SysWOW64/rdpviewerax.dll;file;272384;33206;2021-01-15T09:27:21.568968Z;;;2785144255;2;0;10133099162203400;4096;536;0;0;2021-12-16T13:35:48.501538Z;2021-11-11T11:29:34.238065Z;2021-01-15T09:27:21.568968Z +C:/Windows/SysWOW64/rdrleakdiag.exe;file;41984;33206;2019-12-07T09:09:26.021063Z;;;2785144255;2;0;1407374883993620;4096;88;0;0;2021-12-16T13:35:48.513542Z;2021-11-11T11:29:34.198164Z;2019-12-07T09:09:26.021063Z +C:/Windows/SysWOW64/rdvgocl32.dll;file;183296;33206;2020-11-03T12:46:05.788049Z;;;2785144255;2;0;562949954401733;4096;360;0;0;2021-12-16T13:35:48.529705Z;2021-11-11T11:29:32.205397Z;2020-11-03T12:46:05.788049Z +C:/Windows/SysWOW64/rdvgogl32.dll;file;677888;33206;2020-11-03T12:46:05.772391Z;;;2785144255;2;0;562949954401730;4096;1328;0;0;2021-12-16T13:35:48.545018Z;2021-11-11T11:29:32.205397Z;2020-11-03T12:46:05.772391Z +C:/Windows/SysWOW64/rdvgu1132.dll;file;8704;33206;2021-04-17T10:35:31.492512Z;;;2785144255;2;0;844424930952105;4096;24;0;0;2021-12-16T13:35:48.558061Z;2021-11-11T11:29:32.205397Z;2021-04-17T10:35:31.479776Z +C:/Windows/SysWOW64/rdvgumd32.dll;file;8704;33206;2021-04-17T10:35:31.450555Z;;;2785144255;2;0;844424930952104;4096;24;0;0;2021-12-16T13:35:48.568874Z;2021-11-11T11:29:32.205397Z;2021-04-17T10:35:31.439749Z +C:/Windows/SysWOW64/rdvvmtransport.dll;file;70144;33206;2021-05-18T11:00:04.214984Z;;;2785144255;2;0;10977524091742600;4096;144;0;0;2021-12-16T13:35:48.582926Z;2021-11-11T11:29:34.248997Z;2021-05-18T11:00:04.212990Z +C:/Windows/SysWOW64/ReAgent.dll;file;943432;33206;2021-05-18T10:59:07.878041Z;;;2785144255;2;0;2251799814572430;4096;1848;0;0;2021-12-16T13:35:48.600880Z;2021-11-11T11:29:33.727295Z;2021-05-18T10:59:07.847166Z +C:/Windows/SysWOW64/ReAgentc.exe;file;36864;33206;2021-01-15T09:27:11.494064Z;;;2785144255;2;0;2533274790986850;4096;72;0;0;2021-12-16T13:35:48.615840Z;2021-11-11T11:29:33.725301Z;2021-01-15T09:27:11.494064Z +C:/Windows/SysWOW64/recover.exe;file;12288;33206;2019-12-07T09:09:57.426957Z;;;2785144255;2;0;1125899907630100;4096;24;0;0;2021-12-16T13:35:48.624853Z;2021-11-11T11:29:34.244011Z;2019-12-07T09:09:57.426957Z +C:/Windows/SysWOW64/Recovery;directory;0;16822;2019-12-07T09:15:00.939546Z;;;2785144255;1;0;6755399441376590;4096;0;0;0;2021-12-16T13:36:01.185767Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Recovery/ReAgent.xml;file;837;33206;2019-12-07T09:12:45.372405Z;;;2785144255;1;0;3377699720958420;4096;8;0;0;2019-12-07T09:12:45.372405Z;2020-11-03T12:35:14.959454Z;2019-12-07T09:15:00.939546Z +C:/Windows/SysWOW64/reg.exe;file;59392;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907630720;4096;120;0;0;2021-12-16T13:35:48.636819Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/regapi.dll;file;189440;33206;2020-11-03T12:45:46.370534Z;;;2785144255;2;0;3940649674923060;4096;376;0;0;2021-12-16T13:35:48.650921Z;2021-11-11T11:29:33.719317Z;2020-11-03T12:45:46.370534Z +C:/Windows/SysWOW64/RegCtrl.dll;file;41984;33206;2021-01-15T09:27:21.812277Z;;;2785144255;2;0;13510798882731200;4096;88;0;0;2021-12-16T13:35:48.664884Z;2021-11-11T11:29:34.216121Z;2021-01-15T09:27:21.812277Z +C:/Windows/SysWOW64/regedit.exe;file;329728;33206;2021-01-15T09:27:38.129661Z;;;2785144255;2;0;20829148277211100;4096;648;0;0;2021-12-16T13:35:48.711715Z;2021-11-11T11:29:34.235034Z;2021-01-15T09:27:38.129661Z +C:/Windows/SysWOW64/regedt32.exe;file;10240;33206;2019-12-07T09:10:04.069297Z;;;2785144255;2;0;1125899907629990;4096;24;0;0;2021-12-16T13:35:48.732428Z;2021-11-11T11:29:34.236070Z;2019-12-07T09:10:04.069297Z +C:/Windows/SysWOW64/regini.exe;file;41472;33206;2019-12-07T09:10:04.069297Z;;;2785144255;2;0;1125899907630520;4096;88;0;0;2021-12-16T13:35:48.744377Z;2021-11-11T11:29:34.236070Z;2019-12-07T09:10:04.069297Z +C:/Windows/SysWOW64/Register-CimProvider.exe;file;23552;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;1125899907635190;4096;48;0;0;2021-12-16T13:35:48.768294Z;2021-11-11T11:29:33.719317Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/regsvr32.exe;file;20992;33206;2019-12-07T09:10:04.089589Z;;;2785144255;2;0;1125899907630220;4096;48;0;0;2021-12-16T13:35:48.768294Z;2021-11-11T11:29:34.240064Z;2019-12-07T09:10:04.089589Z +C:/Windows/SysWOW64/reguwpapi.dll;file;31152;33206;2019-12-07T09:09:17.958263Z;;;2785144255;2;0;1125899907637700;4096;64;0;0;2021-12-16T13:35:48.781489Z;2021-11-11T11:29:33.741259Z;2019-12-07T09:09:17.958263Z +C:/Windows/SysWOW64/ReInfo.dll;file;144896;33206;2019-12-07T09:09:15.083106Z;;;2785144255;2;0;1125899907637350;4096;288;0;0;2021-12-16T13:35:48.794373Z;2021-11-11T11:29:33.724303Z;2019-12-07T09:09:15.083106Z +C:/Windows/SysWOW64/rekeywiz.exe;file;111104;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;1125899907639450;4096;224;0;0;2021-12-16T13:35:48.834274Z;2021-11-11T11:29:33.790129Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/relog.exe;file;45568;33206;2020-11-03T12:46:02.694988Z;;;2785144255;2;0;562949954400523;4096;96;0;0;2021-12-16T13:35:48.845264Z;2021-11-11T11:29:34.235034Z;2020-11-03T12:46:02.694988Z +C:/Windows/SysWOW64/remoteaudioendpoint.dll;file;73320;33206;2021-10-16T00:21:15.299869Z;;;2785144255;2;0;281474977857305;4096;144;0;0;2021-12-16T13:35:48.858211Z;2021-11-11T11:29:33.706351Z;2021-10-16T00:21:15.299869Z +C:/Windows/SysWOW64/remotepg.dll;file;81920;33206;2021-05-18T11:00:04.184173Z;;;2785144255;2;0;33214047251879500;4096;160;0;0;2021-12-16T13:35:48.872420Z;2021-11-11T11:29:34.248997Z;2021-05-18T11:00:04.181181Z +C:/Windows/SysWOW64/remotesp.tsp;file;87040;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907630700;4096;176;0;0;2021-12-16T13:35:48.889242Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/RemoveDeviceContextHandler.dll;file;57344;33206;2021-01-15T09:27:34.584507Z;;;2785144255;2;0;12384898975890900;4096;112;0;0;2021-12-16T13:35:48.901794Z;2021-11-11T11:29:34.209104Z;2021-01-15T09:27:34.584507Z +C:/Windows/SysWOW64/RemoveDeviceElevated.dll;file;10752;33206;2019-12-07T09:09:57.935588Z;;;2785144255;2;0;1125899907630810;4096;24;0;0;2021-12-16T13:35:48.912805Z;2021-11-11T11:29:34.208106Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/rendezvousSession.tlb;file;6656;33206;2021-07-16T09:18:14.095023Z;;;2785144255;2;0;281474977817495;4096;16;0;0;2021-12-16T13:35:48.917032Z;2021-07-16T09:20:01.858200Z;2021-07-16T09:18:14.095023Z +C:/Windows/SysWOW64/replace.exe;file;18944;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907630790;4096;40;0;0;2021-12-16T13:35:48.925701Z;2021-11-11T11:29:34.205151Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/RESAMPLEDMO.DLL;file;231064;33206;2019-12-07T14:54:44.047272Z;;;2785144255;2;0;1125899907618550;4096;456;0;0;2021-12-16T13:35:48.940472Z;2021-11-11T11:29:34.303852Z;2019-12-07T09:10:13.852059Z +C:/Windows/SysWOW64/resmon.exe;file;109056;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907629160;4096;216;0;0;2021-12-16T13:35:48.956371Z;2021-11-11T11:29:34.236070Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/ResourcePolicyClient.dll;file;52664;33206;2020-11-03T12:45:48.151370Z;;;2785144255;2;0;562949954395851;4096;104;0;0;2021-12-16T13:35:48.956371Z;2021-11-11T11:29:33.738267Z;2020-11-03T12:45:48.151370Z +C:/Windows/SysWOW64/RestartManager.mof;file;714;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907639400;4096;8;0;0;2021-12-16T13:35:48.959924Z;2020-11-03T12:35:45.577698Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/RestartManagerUninstall.mof;file;176;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907637250;4096;0;0;0;2021-12-16T13:35:48.962209Z;2020-11-03T12:35:44.406090Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/restore;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2814749767427430;4096;0;0;0;2021-12-16T13:36:01.185767Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/resutils.dll;file;482304;33206;2021-11-11T11:29:08.064442Z;;;2785144255;2;0;281474977879569;4096;944;0;0;2021-12-16T13:35:48.985755Z;2021-11-11T11:38:52.520122Z;2021-11-11T11:29:08.056464Z +C:/Windows/SysWOW64/rgb9rast.dll;file;150528;33206;2019-12-07T09:09:26.146990Z;;;2785144255;2;0;1125899907635660;4096;296;0;0;2021-12-16T13:35:48.998743Z;2021-11-11T11:29:33.796165Z;2019-12-07T09:09:26.146990Z +C:/Windows/SysWOW64/riched20.dll;file;487424;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907635350;4096;952;0;0;2021-12-16T13:35:49.001334Z;2021-11-11T11:29:33.817058Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/riched32.dll;file;8192;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907637710;4096;16;0;0;2021-12-16T13:35:49.002465Z;2021-11-11T11:29:33.817058Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/RMActivate.exe;file;541184;33206;2019-12-07T09:09:13.505286Z;;;2785144255;2;0;1407374884349510;4096;1064;0;0;2021-12-16T13:35:49.031124Z;2021-11-11T11:29:33.710341Z;2019-12-07T09:09:13.505286Z +C:/Windows/SysWOW64/RMActivate_isv.exe;file;558080;33206;2019-12-07T09:09:13.524584Z;;;2785144255;2;0;1125899907637500;4096;1096;0;0;2021-12-16T13:35:49.058598Z;2021-11-11T11:29:33.706351Z;2019-12-07T09:09:13.524584Z +C:/Windows/SysWOW64/RMActivate_ssp.exe;file;478720;33206;2019-12-07T09:09:13.505286Z;;;2785144255;2;0;1125899907635360;4096;936;0;0;2021-12-16T13:35:49.084511Z;2021-11-11T11:29:33.705354Z;2019-12-07T09:09:13.505286Z +C:/Windows/SysWOW64/RMActivate_ssp_isv.exe;file;478720;33206;2019-12-07T09:09:13.505286Z;;;2785144255;2;0;1125899907639130;4096;936;0;0;2021-12-16T13:35:49.109460Z;2021-11-11T11:29:33.712335Z;2019-12-07T09:09:13.505286Z +C:/Windows/SysWOW64/rmclient.dll;file;115728;33206;2021-01-15T09:27:16.327462Z;;;2785144255;2;0;3659174697857210;4096;232;0;0;2021-12-16T13:35:49.125039Z;2021-11-11T11:29:33.753227Z;2021-01-15T09:27:16.327462Z +C:/Windows/SysWOW64/RmClient.exe;file;15360;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907638750;4096;32;0;0;2021-12-16T13:35:49.135161Z;2021-11-11T11:29:33.808081Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/rnr20.dll;file;2048;33206;2019-12-07T09:10:02.225387Z;;;2785144255;2;0;1125899907627890;4096;8;0;0;2021-12-16T13:35:49.138657Z;2021-11-11T11:29:34.238065Z;2019-12-07T09:10:02.225387Z +C:/Windows/SysWOW64/ro-RO;directory;0;16822;2019-12-07T14:53:40.610694Z;;;2785144255;1;0;2533274790716780;4096;0;0;0;2021-12-16T13:36:01.185767Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/ro-RO/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;5629499534882880;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:19.958283Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/ro-RO/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619310;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.439645Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/ro-RO/SyncRes.dll.mui;file;31232;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648600;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/ro-RO/windows.ui.xaml.dll.mui;file;17920;33206;2019-12-07T09:09:02.067275Z;;;2785144255;4;0;1125899907639450;4096;40;0;0;2019-12-07T09:09:02.067275Z;2020-11-03T12:35:45.593318Z;2019-12-07T09:09:02.067275Z +C:/Windows/SysWOW64/Robocopy.exe;file;141824;33206;2021-10-16T00:21:27.830250Z;;;2785144255;2;0;281474977857760;4096;280;0;0;2021-12-16T13:35:49.162380Z;2021-11-11T11:29:34.201157Z;2021-10-16T00:21:27.830250Z +C:/Windows/SysWOW64/rometadata.dll;file;171400;33206;2019-12-07T09:09:20.786601Z;;;2785144255;2;0;1125899907639440;4096;336;0;0;2021-12-16T13:35:49.177302Z;2021-11-11T11:29:33.788164Z;2019-12-07T09:09:20.599327Z +C:/Windows/SysWOW64/ROUTE.EXE;file;19456;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907630400;4096;40;0;0;2021-12-16T13:35:49.188272Z;2021-11-11T11:29:34.211139Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/rpchttp.dll;file;152576;33206;2019-12-07T09:09:22.223955Z;;;2785144255;2;0;1125899907635350;4096;304;0;0;2021-12-16T13:35:49.202724Z;2021-11-11T11:29:33.770182Z;2019-12-07T09:09:22.223955Z +C:/Windows/SysWOW64/RpcNs4.dll;file;8704;33206;2019-12-07T09:09:22.193610Z;;;2785144255;2;0;1125899907636610;4096;24;0;0;2021-12-16T13:35:49.212990Z;2021-11-11T11:29:33.766192Z;2019-12-07T09:09:22.193610Z +C:/Windows/SysWOW64/rpcnsh.dll;file;27648;33206;2019-12-07T09:09:22.223955Z;;;2785144255;2;0;1407374884348600;4096;56;0;0;2021-12-16T13:35:49.223760Z;2021-11-11T11:29:33.767189Z;2019-12-07T09:09:22.223955Z +C:/Windows/SysWOW64/RpcPing.exe;file;26624;33206;2019-12-07T09:09:22.223955Z;;;2785144255;2;0;1125899907636310;4096;56;0;0;2021-12-16T13:35:49.234703Z;2021-11-11T11:29:33.768187Z;2019-12-07T09:09:22.223955Z +C:/Windows/SysWOW64/rpcrt4.dll;file;781432;33206;2021-10-16T00:21:15.531744Z;;;2785144255;2;0;281474977857316;4096;1528;0;0;2021-12-16T13:35:49.235689Z;2021-11-11T11:29:33.706351Z;2021-10-16T00:21:15.516125Z +C:/Windows/SysWOW64/RpcRtRemote.dll;file;51848;33206;2019-12-07T09:09:18.083266Z;;;2785144255;2;0;1407374884349290;4096;104;0;0;2021-12-16T13:35:49.235689Z;2021-11-11T11:29:33.750234Z;2019-12-07T09:09:18.083266Z +C:/Windows/SysWOW64/rrinstaller.exe;file;37888;33206;2021-01-15T09:27:47.490292Z;;;2785144255;2;0;9570149208786130;4096;80;0;0;2021-12-16T13:35:49.246877Z;2021-11-11T11:29:32.465372Z;2021-01-15T09:27:47.490292Z +C:/Windows/SysWOW64/rsaenh.dll;file;184888;33206;2021-06-10T14:01:40.990685Z;;;2785144255;2;0;281474977765184;4096;368;0;0;2021-12-16T13:35:49.246877Z;2021-11-11T11:29:33.762202Z;2021-06-10T14:01:40.975064Z +C:/Windows/SysWOW64/RsCRIcon.dll;file;9917448;33206;2020-11-02T18:22:54Z;;;2785144255;1;0;6473924464436280;4096;19376;0;0;2021-12-16T13:35:49.286288Z;2020-12-03T14:24:01.910486Z;2020-11-02T18:22:54Z +C:/Windows/SysWOW64/rshx32.dll;file;112640;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907627950;4096;224;0;0;2021-12-16T13:35:49.301252Z;2021-11-11T11:29:34.204118Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/rsop.msc;file;43566;33206;2019-12-07T14:54:45.141243Z;;;2785144255;2;0;1125899907621260;4096;88;0;0;2021-12-16T13:35:49.304282Z;2020-11-03T12:35:34.829944Z;2019-12-07T09:10:23.882467Z +C:/Windows/SysWOW64/RstrtMgr.dll;file;175104;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907639070;4096;344;0;0;2021-12-16T13:35:49.307033Z;2021-11-11T11:29:33.811072Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/rtffilt.dll;file;37376;33206;2019-12-07T09:09:32.380631Z;;;2785144255;2;0;1125899907637830;4096;80;0;0;2021-12-16T13:35:49.319005Z;2021-11-11T11:29:33.809077Z;2019-12-07T09:09:32.380631Z +C:/Windows/SysWOW64/rtm.dll;file;161792;33206;2021-11-11T11:29:01.182325Z;;;2785144255;2;0;281474977879246;4096;320;0;0;2021-12-16T13:35:49.332199Z;2021-11-11T11:38:52.588944Z;2021-11-11T11:29:01.179298Z +C:/Windows/SysWOW64/rtmcodecs.dll;file;915296;33206;2020-11-03T12:45:54.446820Z;;;2785144255;2;0;562949954398521;4096;1792;0;0;2021-12-16T13:35:49.349153Z;2021-11-11T11:29:33.813066Z;2020-11-03T12:45:54.446820Z +C:/Windows/SysWOW64/RTMediaFrame.dll;file;356352;33206;2021-01-15T09:27:16.358679Z;;;2785144255;2;0;13229323906019500;4096;696;0;0;2021-12-16T13:35:49.364083Z;2021-11-11T11:29:33.749237Z;2021-01-15T09:27:16.343090Z +C:/Windows/SysWOW64/rtmmvrortc.dll;file;55376;33206;2020-11-03T12:45:54.462442Z;;;2785144255;2;0;562949954398522;4096;112;0;0;2021-12-16T13:35:49.378343Z;2021-11-11T11:29:33.806085Z;2020-11-03T12:45:54.446820Z +C:/Windows/SysWOW64/rtmpal.dll;file;980320;33206;2020-11-03T12:45:54.462442Z;;;2785144255;2;0;844424931109179;4096;1920;0;0;2021-12-16T13:35:49.395363Z;2021-11-11T11:29:33.816060Z;2020-11-03T12:45:54.462442Z +C:/Windows/SysWOW64/rtmpltfm.dll;file;3860832;33206;2020-11-03T12:45:54.524961Z;;;2785144255;2;0;562949954398524;4096;7544;0;0;2021-12-16T13:35:49.425388Z;2021-11-11T11:29:33.811072Z;2020-11-03T12:45:54.478064Z +C:/Windows/SysWOW64/rtutils.dll;file;53760;33206;2021-10-16T00:21:19.180595Z;;;2785144255;2;0;281474977857654;4096;112;0;0;2021-12-16T13:35:49.425388Z;2021-11-11T11:29:33.811072Z;2021-10-16T00:21:19.180595Z +C:/Windows/SysWOW64/RTWorkQ.dll;file;145648;33206;2021-10-16T00:21:15.299869Z;;;2785144255;2;0;281474977857304;4096;288;0;0;2021-12-16T13:35:49.425388Z;2021-11-11T11:29:33.709343Z;2021-10-16T00:21:15.299869Z +C:/Windows/SysWOW64/ru-RU;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;2533274790716780;4096;8;0;0;2021-12-16T13:36:01.185767Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/ru-RU/APHostRes.dll.mui;file;16384;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648710;4096;32;0;0;2019-12-07T14:53:37.766934Z;2020-11-03T12:35:52.498036Z;2019-12-07T14:53:37.766934Z +C:/Windows/SysWOW64/ru-RU/cdosys.dll.mui;file;48640;33206;2019-12-07T09:09:30.442382Z;;;2785144255;2;0;6473924465014740;4096;96;0;0;2019-12-07T09:09:30.442382Z;2020-11-03T12:35:19.927041Z;2019-12-07T09:09:30.442382Z +C:/Windows/SysWOW64/ru-RU/comctl32.dll.mui;file;6144;33206;2021-06-10T14:01:41.700569Z;;;2785144255;2;0;281474977765218;4096;16;0;0;2021-06-10T14:01:41.700569Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:41.700569Z +C:/Windows/SysWOW64/ru-RU/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619320;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.439645Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/ru-RU/SyncRes.dll.mui;file;30208;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648620;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/ru-RU/windows.ui.xaml.dll.mui;file;19456;33206;2019-12-07T09:09:02.067275Z;;;2785144255;4;0;1125899907637190;4096;40;0;0;2019-12-07T09:09:02.067275Z;2020-11-03T12:35:44.218634Z;2019-12-07T09:09:02.067275Z +C:/Windows/SysWOW64/runas.exe;file;17920;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907629610;4096;40;0;0;2021-12-16T13:35:49.448105Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:10:05.459918Z +C:/Windows/SysWOW64/rundll32.exe;file;61440;33206;2021-01-15T09:27:21.725180Z;;;2785144255;2;0;10133099162203400;4096;120;0;0;2021-12-16T13:35:49.464920Z;2021-11-11T11:29:33.815064Z;2021-01-15T09:27:21.725180Z +C:/Windows/SysWOW64/RunLegacyCPLElevated.exe;file;68096;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907635300;4096;136;0;0;2021-12-16T13:35:49.480912Z;2021-11-11T11:29:33.711338Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/runonce.exe;file;47104;33206;2021-10-03T19:02:18.800264Z;;;2785144255;2;0;1688849861187000;4096;96;0;0;2021-12-16T13:35:49.495029Z;2021-11-11T11:29:33.795115Z;2021-10-03T19:02:18.794025Z +C:/Windows/SysWOW64/samcli.dll;file;70144;33206;2020-11-03T12:45:51.884920Z;;;2785144255;2;0;562949954397196;4096;144;0;0;2021-12-16T13:35:49.495986Z;2021-11-11T11:29:33.771179Z;2020-11-03T12:45:51.884920Z +C:/Windows/SysWOW64/samlib.dll;file;93184;33206;2021-11-11T11:29:00.452415Z;;;2785144255;2;0;281474977879221;4096;184;0;0;2021-12-16T13:35:49.496369Z;2021-11-11T11:38:53.103685Z;2021-11-11T11:29:00.449452Z +C:/Windows/SysWOW64/sas.dll;file;9728;33206;2019-12-07T09:09:13.707215Z;;;2785144255;2;0;1125899907636650;4096;24;0;0;2021-12-16T13:35:49.506992Z;2021-11-11T11:29:33.717322Z;2019-12-07T09:09:13.707215Z +C:/Windows/SysWOW64/sbe.dll;file;720896;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907628210;4096;1408;0;0;2021-12-16T13:35:49.523809Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/sbeio.dll;file;147456;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907630530;4096;288;0;0;2021-12-16T13:35:49.537095Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/sberes.dll;file;66048;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907629560;4096;136;0;0;2021-12-16T13:35:49.543320Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/sc.exe;file;61440;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907628950;4096;120;0;0;2021-12-16T13:35:49.554082Z;2021-11-11T11:29:34.203158Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/scansetting.dll;file;244224;33206;2019-12-07T09:10:00.459704Z;;;2785144255;2;0;1125899907628580;4096;480;0;0;2021-12-16T13:35:49.575446Z;2021-11-11T11:29:34.203158Z;2019-12-07T09:10:00.459704Z +C:/Windows/SysWOW64/SCardDlg.dll;file;67072;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;1125899907638680;4096;136;0;0;2021-12-16T13:35:49.590799Z;2021-11-11T11:29:33.811072Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/scecli.dll;file;254464;33206;2020-11-03T12:45:53.665776Z;;;2785144255;2;0;562949954397964;4096;504;0;0;2021-12-16T13:35:49.605568Z;2021-11-11T11:29:33.816060Z;2020-11-03T12:45:53.665776Z +C:/Windows/SysWOW64/scesrv.dll;file;417280;33206;2020-11-03T12:45:53.665776Z;;;2785144255;2;0;562949954397963;4096;816;0;0;2021-12-16T13:35:49.621054Z;2021-11-11T11:29:33.806085Z;2020-11-03T12:45:53.650162Z +C:/Windows/SysWOW64/schannel.dll;file;468992;33206;2021-02-11T15:05:15.051463Z;;;2785144255;2;0;562949954318955;4096;920;0;0;2021-12-16T13:35:49.622244Z;2021-11-11T11:29:33.778160Z;2021-02-11T15:05:15.035843Z +C:/Windows/SysWOW64/schedcli.dll;file;17408;33206;2019-12-07T09:09:26.005823Z;;;2785144255;2;0;1125899907635120;4096;40;0;0;2021-12-16T13:35:49.633267Z;2021-11-11T11:29:33.766192Z;2019-12-07T09:09:26.005823Z +C:/Windows/SysWOW64/schtasks.exe;file;187904;33206;2021-04-17T10:34:28.732345Z;;;2785144255;2;0;844424930951351;4096;368;0;0;2021-12-16T13:35:49.634264Z;2021-11-11T11:29:33.719317Z;2021-04-17T10:34:28.711405Z +C:/Windows/SysWOW64/scksp.dll;file;235520;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;1125899907636530;4096;464;0;0;2021-12-16T13:35:49.651219Z;2021-11-11T11:29:33.814066Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/scripto.dll;file;70144;33206;2021-01-15T09:27:37.832838Z;;;2785144255;2;0;10977524092338200;4096;144;0;0;2021-12-16T13:35:49.664222Z;2021-11-11T11:29:34.219114Z;2021-01-15T09:27:37.832838Z +C:/Windows/SysWOW64/scrnsave.scr;file;29696;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907635010;4096;64;0;0;2021-12-16T13:35:49.676153Z;2021-11-11T11:29:33.814066Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/scrobj.dll;file;207360;33206;2021-10-03T19:02:23.269544Z;;;2785144255;2;0;1688849861187280;4096;408;0;0;2021-12-16T13:35:49.693221Z;2021-11-11T11:29:33.808081Z;2021-10-03T19:02:23.262864Z +C:/Windows/SysWOW64/scrptadm.dll;file;465920;33206;2020-11-03T12:46:05.944255Z;;;2785144255;2;0;562949954401762;4096;912;0;0;2021-12-16T13:35:49.714168Z;2021-11-11T11:29:32.370143Z;2020-11-03T12:46:05.928634Z +C:/Windows/SysWOW64/scrrun.dll;file;186368;33206;2021-10-03T19:02:20.225876Z;;;2785144255;2;0;1688849861187020;4096;368;0;0;2021-12-16T13:35:49.729163Z;2021-11-11T11:29:33.810075Z;2021-10-03T19:02:20.216645Z +C:/Windows/SysWOW64/sdbinst.exe;file;20992;33206;2021-11-11T11:29:00.178091Z;;;2785144255;2;0;281474977879210;4096;48;0;0;2021-12-16T13:35:49.740870Z;2021-11-11T11:38:50.805254Z;2021-11-11T11:29:00.177094Z +C:/Windows/SysWOW64/sdchange.exe;file;40960;33206;2021-07-16T09:18:13.678454Z;;;2785144255;2;0;281474977817342;4096;80;0;0;2021-12-16T13:35:49.765806Z;2021-11-11T11:29:31.450023Z;2021-07-16T09:18:13.678454Z +C:/Windows/SysWOW64/sdiageng.dll;file;184320;33206;2019-12-07T09:10:04.209803Z;;;2785144255;2;0;1125899907630280;4096;360;0;0;2021-12-16T13:35:49.779722Z;2021-11-11T11:29:34.252028Z;2019-12-07T09:10:04.209803Z +C:/Windows/SysWOW64/sdiagnhost.exe;file;21504;33206;2019-12-07T09:10:04.209803Z;;;2785144255;2;0;1125899907629090;4096;48;0;0;2021-12-16T13:35:49.781279Z;2021-11-11T11:29:34.252028Z;2019-12-07T09:10:04.209803Z +C:/Windows/SysWOW64/sdiagprv.dll;file;148992;33206;2019-12-07T09:10:04.209803Z;;;2785144255;2;0;1125899907629480;4096;296;0;0;2021-12-16T13:35:49.795384Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:10:04.209803Z +C:/Windows/SysWOW64/sdohlp.dll;file;401920;33206;2021-01-15T09:27:34.709477Z;;;2785144255;2;0;10133099162205700;4096;792;0;0;2021-12-16T13:35:49.811542Z;2021-11-11T11:29:34.212096Z;2021-01-15T09:27:34.709477Z +C:/Windows/SysWOW64/Search.ProtocolHandler.MAPI2.dll;file;286720;33206;2021-10-03T19:02:05.532570Z;;;2785144255;2;0;1688849861186680;4096;560;0;0;2021-12-16T13:35:49.828562Z;2021-11-11T11:29:33.737270Z;2021-10-03T19:02:05.512410Z +C:/Windows/SysWOW64/SearchFilterHost.exe;file;229376;33206;2021-10-03T19:02:05.394368Z;;;2785144255;2;0;1688849861186680;4096;448;0;0;2021-12-16T13:35:49.875107Z;2021-11-11T11:29:33.733279Z;2021-10-03T19:02:05.381788Z +C:/Windows/SysWOW64/SearchFolder.dll;file;329216;33206;2021-10-16T00:21:19.243050Z;;;2785144255;2;0;281474977857658;4096;648;0;0;2021-12-16T13:35:49.895642Z;2021-11-11T11:29:33.812069Z;2021-10-16T00:21:19.243050Z +C:/Windows/SysWOW64/SearchIndexer.exe;file;711680;33206;2021-10-03T19:02:05.464419Z;;;2785144255;2;0;1688849861186680;4096;1392;0;0;2021-12-16T13:35:49.924647Z;2021-11-11T11:29:33.733279Z;2021-10-03T19:02:05.406874Z +C:/Windows/SysWOW64/SearchProtocolHost.exe;file;340992;33206;2021-10-03T19:02:05.362677Z;;;2785144255;2;0;1688849861186680;4096;672;0;0;2021-12-16T13:35:49.976987Z;2021-11-11T11:29:33.744251Z;2021-10-03T19:02:05.336381Z +C:/Windows/SysWOW64/SecEdit.exe;file;37888;33206;2019-12-07T09:09:32.365047Z;;;2785144255;2;0;1125899907638390;4096;80;0;0;2021-12-16T13:35:49.990548Z;2021-11-11T11:29:33.804091Z;2019-12-07T09:09:32.365047Z +C:/Windows/SysWOW64/sechost.dll;file;475712;33206;2021-04-17T10:34:27.615405Z;;;2785144255;2;0;844424930951344;4096;936;0;0;2021-12-16T13:35:49.991127Z;2021-11-11T11:29:33.711338Z;2021-04-17T10:34:27.565570Z +C:/Windows/SysWOW64/secinit.exe;file;9728;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907635310;4096;24;0;0;2021-12-16T13:35:49.999603Z;2021-11-11T11:29:33.799135Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/secproc.dll;file;350208;33206;2019-12-07T09:09:13.505286Z;;;2785144255;2;0;1125899907638160;4096;688;0;0;2021-12-16T13:35:50.017519Z;2021-11-11T11:29:33.704357Z;2019-12-07T09:09:13.505286Z +C:/Windows/SysWOW64/secproc_isv.dll;file;348160;33206;2019-12-07T09:09:13.505286Z;;;2785144255;2;0;1125899907638590;4096;680;0;0;2021-12-16T13:35:50.035781Z;2021-11-11T11:29:33.702363Z;2019-12-07T09:09:13.505286Z +C:/Windows/SysWOW64/secproc_ssp.dll;file;88576;33206;2019-12-07T09:09:13.505286Z;;;2785144255;2;0;1125899907636710;4096;176;0;0;2021-12-16T13:35:50.048885Z;2021-11-11T11:29:33.703360Z;2019-12-07T09:09:13.505286Z +C:/Windows/SysWOW64/secproc_ssp_isv.dll;file;88576;33206;2019-12-07T09:09:13.505286Z;;;2785144255;2;0;1125899907636700;4096;176;0;0;2021-12-16T13:35:50.061618Z;2021-11-11T11:29:33.708346Z;2019-12-07T09:09:13.505286Z +C:/Windows/SysWOW64/secur32.dll;file;23040;33206;2020-11-03T12:45:53.400222Z;;;2785144255;2;0;562949954397919;4096;48;0;0;2021-12-16T13:35:50.062078Z;2021-11-11T11:29:33.813066Z;2020-11-03T12:45:53.400222Z +C:/Windows/SysWOW64/security.dll;file;5120;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907635950;4096;16;0;0;2021-12-16T13:35:50.064735Z;2021-11-11T11:29:33.816060Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/SecurityAndMaintenance.png;file;5783;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907638340;4096;16;0;0;2021-12-16T13:35:50.066743Z;2021-02-22T08:01:24.020037Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/SecurityAndMaintenance_Alert.png;file;2613;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907634780;4096;8;0;0;2021-12-16T13:35:50.067811Z;2021-02-22T08:01:24.020263Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/SecurityAndMaintenance_Error.png;file;6873;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907638220;4096;16;0;0;2021-12-16T13:35:50.070340Z;2021-02-22T08:01:24.020508Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/SecurityCenterBrokerPS.dll;file;28384;33206;2020-11-03T12:46:03.663536Z;;;2785144255;2;0;562949954401117;4096;56;0;0;2021-12-16T13:35:50.082976Z;2021-11-11T11:29:31.742368Z;2020-11-03T12:46:03.663536Z +C:/Windows/SysWOW64/SEMgrPS.dll;file;22528;33206;2019-12-07T09:09:17.649850Z;;;2785144255;2;0;1125899907638670;4096;48;0;0;2021-12-16T13:35:50.094208Z;2021-11-11T11:29:33.742257Z;2019-12-07T09:09:17.649850Z +C:/Windows/SysWOW64/sendmail.dll;file;125952;33206;2021-01-15T09:27:37.817221Z;;;2785144255;2;0;18858823440236500;4096;248;0;0;2021-12-16T13:35:50.111945Z;2021-11-11T11:29:34.232043Z;2021-01-15T09:27:37.817221Z +C:/Windows/SysWOW64/SensApi.dll;file;11264;33206;2019-12-07T09:09:32.401382Z;;;2785144255;2;0;1407374884347690;4096;24;0;0;2021-12-16T13:35:50.112903Z;2021-11-11T11:29:33.806085Z;2019-12-07T09:09:32.401382Z +C:/Windows/SysWOW64/Sensor.DLL;file;33168;33206;2019-01-09T11:27:08Z;;;2785144255;1;0;2533274791205250;4096;72;0;0;2021-12-16T13:35:50.112903Z;2020-11-03T12:52:49.177530Z;2019-09-17T09:57:17.381270Z +C:/Windows/SysWOW64/SensorsApi.dll;file;335360;33206;2021-01-15T09:27:21.240885Z;;;2785144255;2;0;6473924464964770;4096;656;0;0;2021-12-16T13:35:50.127863Z;2021-11-11T11:29:31.006425Z;2021-01-15T09:27:21.240885Z +C:/Windows/SysWOW64/SensorsCpl.dll;file;2560;33206;2019-12-07T09:09:29.088570Z;;;2785144255;2;0;1125899907639290;4096;8;0;0;2021-12-16T13:35:50.130403Z;2021-11-11T11:29:30.965573Z;2019-12-07T09:09:29.088570Z +C:/Windows/SysWOW64/SensorsNativeApi.dll;file;58840;33206;2019-12-07T09:09:21.286488Z;;;2785144255;2;0;1125899907638770;4096;120;0;0;2021-12-16T13:35:50.144562Z;2021-11-11T11:29:33.765194Z;2019-12-07T09:09:21.286488Z +C:/Windows/SysWOW64/SensorsNativeApi.V2.dll;file;183016;33206;2019-12-07T09:09:21.286488Z;;;2785144255;2;0;1125899907636830;4096;360;0;0;2021-12-16T13:35:50.159773Z;2021-11-11T11:29:33.769184Z;2019-12-07T09:09:21.286488Z +C:/Windows/SysWOW64/SensorsUtilsV2.dll;file;131680;33206;2021-01-15T09:27:18.317715Z;;;2785144255;2;0;11540474045756000;4096;264;0;0;2021-12-16T13:35:50.174832Z;2021-11-11T11:29:33.774171Z;2021-01-15T09:27:18.317715Z +C:/Windows/SysWOW64/serialui.dll;file;15360;33206;2019-12-07T09:10:04.257180Z;;;2785144255;2;0;1125899907630410;4096;32;0;0;2021-12-16T13:35:50.186830Z;2021-11-11T11:29:34.242017Z;2019-12-07T09:10:04.257180Z +C:/Windows/SysWOW64/services.msc;file;92746;33206;2019-12-07T09:10:04.147755Z;;;2785144255;2;0;1125899907629040;4096;184;0;0;2021-12-16T13:35:50.191750Z;2020-11-03T12:35:38.907111Z;2019-12-07T09:10:04.147755Z +C:/Windows/SysWOW64/serwvdrv.dll;file;18944;33206;2019-12-07T09:10:04.257180Z;;;2785144255;2;0;1125899907630170;4096;40;0;0;2021-12-16T13:35:50.204723Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:04.257180Z +C:/Windows/SysWOW64/SessEnv.dll;file;425472;33206;2021-05-18T11:00:04.198261Z;;;2785144255;2;0;37154696925831700;4096;832;0;0;2021-12-16T13:35:50.221131Z;2021-11-11T11:29:34.244011Z;2021-05-18T11:00:04.190243Z +C:/Windows/SysWOW64/sethc.exe;file;81920;33206;2020-11-03T12:45:51.025747Z;;;2785144255;2;0;562949954396559;4096;160;0;0;2021-12-16T13:35:50.234287Z;2021-11-11T11:29:33.767189Z;2020-11-03T12:45:51.025747Z +C:/Windows/SysWOW64/SettingMonitor.dll;file;137728;33206;2021-10-03T19:01:59.881736Z;;;2785144255;2;0;1688849861186610;4096;272;0;0;2021-12-16T13:35:50.248013Z;2021-11-11T11:29:33.703360Z;2021-10-03T19:01:59.863772Z +C:/Windows/SysWOW64/SettingSync.dll;file;515584;33206;2021-11-11T11:28:57.085143Z;;;2785144255;2;0;281474977878946;4096;1008;0;0;2021-12-16T13:35:50.267560Z;2021-11-11T11:38:51.635981Z;2021-11-11T11:28:57.075129Z +C:/Windows/SysWOW64/SettingSyncCore.dll;file;761856;33206;2021-10-03T19:02:23.864417Z;;;2785144255;2;0;1688849861187290;4096;1488;0;0;2021-12-16T13:35:50.284492Z;2021-11-11T11:29:33.804091Z;2021-10-03T19:02:23.816960Z +C:/Windows/SysWOW64/SettingSyncHost.exe;file;790328;33206;2021-11-11T11:29:01.301327Z;;;2785144255;2;0;281474977879256;4096;1544;0;0;2021-12-16T13:35:50.300423Z;2021-11-11T11:38:53.221369Z;2021-11-11T11:29:01.285333Z +C:/Windows/SysWOW64/setup;directory;0;16822;2021-11-11T11:38:44.511352Z;;;2785144255;1;0;2533274790716780;4096;8;0;0;2021-12-16T13:36:01.185767Z;2021-11-11T11:38:44.511352Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/setup/cmmigr.dll;file;56320;33206;2021-01-15T09:27:21.506449Z;;;2785144255;2;0;5066549581411530;4096;112;0;0;2021-01-15T09:30:29.943923Z;2021-11-11T11:29:33.813066Z;2021-01-15T09:27:21.506449Z +C:/Windows/SysWOW64/setup/comsetup.dll;file;203776;33206;2019-12-07T09:09:22.223955Z;;;2785144255;2;0;1125899907635310;4096;400;0;0;2021-02-22T08:01:23.790217Z;2021-11-11T11:29:33.776165Z;2019-12-07T09:09:22.223955Z +C:/Windows/SysWOW64/setup/en-US;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;2533274790716780;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/setup/msdtcstp.dll;file;68944;33206;2021-01-15T09:27:34.522020Z;;;2785144255;2;0;13229323906022900;4096;136;0;0;2021-01-15T09:30:30.570638Z;2021-11-11T11:29:34.210101Z;2021-01-15T09:27:34.522020Z +C:/Windows/SysWOW64/setup/pbkmigr.dll;file;57144;33206;2021-01-15T09:27:21.553349Z;;;2785144255;2;0;7881299348518100;4096;112;0;0;2021-01-15T09:30:31.547832Z;2021-11-11T11:29:33.811072Z;2021-01-15T09:27:21.553349Z +C:/Windows/SysWOW64/setup/RasMigPlugin.dll;file;460088;33206;2021-11-11T11:29:01.209390Z;;;2785144255;2;0;281474977879249;4096;904;0;0;2021-11-11T11:38:52.216692Z;2021-11-11T11:38:52.216692Z;2021-11-11T11:29:01.200410Z +C:/Windows/SysWOW64/setup/tssysprep.dll;file;44544;33206;2019-12-07T09:09:13.707215Z;;;2785144255;2;0;1125899907634780;4096;88;0;0;2020-11-03T12:35:42.703326Z;2021-11-11T11:29:33.717322Z;2019-12-07T09:09:13.707215Z +C:/Windows/SysWOW64/setup16.exe;file;26112;33206;2021-06-10T14:01:41.460622Z;;;2785144255;2;0;281474977765210;4096;56;0;0;2021-12-16T13:35:50.328349Z;2021-11-11T11:29:33.786186Z;2021-06-10T14:01:41.460622Z +C:/Windows/SysWOW64/setupapi.dll;file;4466160;33206;2021-10-03T19:02:19.639319Z;;;2785144255;2;0;1688849861187010;4096;8728;0;0;2021-12-16T13:35:50.329346Z;2021-11-11T11:29:33.811072Z;2021-10-03T19:02:19.475843Z +C:/Windows/SysWOW64/setupcl.dll;file;132936;33206;2021-10-03T19:02:15.816518Z;;;2785144255;2;0;55450570412002600;4096;264;0;0;2021-12-16T13:35:50.342432Z;2021-11-11T11:29:33.768187Z;2021-10-03T19:02:15.805093Z +C:/Windows/SysWOW64/setupcln.dll;file;171008;33206;2021-10-16T00:21:19.265240Z;;;2785144255;2;0;281474977857660;4096;336;0;0;2021-12-16T13:35:50.359162Z;2021-11-11T11:29:33.809077Z;2021-10-16T00:21:19.265240Z +C:/Windows/SysWOW64/setupugc.exe;file;118784;33206;2021-01-15T09:27:18.880101Z;;;2785144255;2;0;5348024558121640;4096;232;0;0;2021-12-16T13:35:50.376167Z;2021-11-11T11:29:33.765194Z;2021-01-15T09:27:18.880101Z +C:/Windows/SysWOW64/setx.exe;file;46592;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907628570;4096;96;0;0;2021-12-16T13:35:50.387005Z;2021-11-11T11:29:34.211139Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/sfc.dll;file;11272;33206;2020-11-03T12:45:46.511127Z;;;2785144255;2;0;3940649674923070;4096;24;0;0;2021-12-16T13:35:50.388109Z;2021-11-11T11:29:33.726298Z;2020-11-03T12:45:46.511127Z +C:/Windows/SysWOW64/sfc.exe;file;40448;33206;2019-12-07T09:09:27.630388Z;;;2785144255;2;0;1125899907638440;4096;80;0;0;2021-12-16T13:35:50.399812Z;2021-11-11T11:29:33.781152Z;2019-12-07T09:09:27.630388Z +C:/Windows/SysWOW64/sfc_os.dll;file;50104;33206;2020-11-03T12:45:46.511127Z;;;2785144255;2;0;3940649674923070;4096;104;0;0;2021-12-16T13:35:50.399812Z;2021-11-11T11:29:33.719317Z;2020-11-03T12:45:46.511127Z +C:/Windows/SysWOW64/sgx_enclave_common.dll;file;58416;33206;2021-04-25T22:27:54Z;;;2785144255;1;0;6755399441438250;4096;120;0;0;2021-12-16T13:35:50.413160Z;2021-06-14T04:20:22.099706Z;2021-06-14T04:20:19.417414Z +C:/Windows/SysWOW64/sgx_epid.dll;file;701488;33206;2021-04-25T22:27:54Z;;;2785144255;1;0;8725724278412610;4096;1376;0;0;2021-12-16T13:35:50.428942Z;2021-06-14T04:20:22.052842Z;2021-06-14T04:20:19.433030Z +C:/Windows/SysWOW64/sgx_launch.dll;file;696376;33206;2021-04-25T22:27:56Z;;;2785144255;1;0;7881299348280830;4096;1368;0;0;2021-12-16T13:35:50.444925Z;2021-06-14T04:20:22.068463Z;2021-06-14T04:20:19.455182Z +C:/Windows/SysWOW64/sgx_platform.dll;file;49704;33206;2021-04-25T22:27:58Z;;;2785144255;1;0;6755399441438240;4096;104;0;0;2021-12-16T13:35:50.456865Z;2021-06-14T04:20:22.068463Z;2021-06-14T04:20:19.486512Z +C:/Windows/SysWOW64/sgx_quote_ex.dll;file;702512;33206;2021-04-25T22:28:02Z;;;2785144255;1;0;10696049115387400;4096;1376;0;0;2021-12-16T13:35:50.472350Z;2021-06-14T04:20:22.084085Z;2021-06-14T04:20:19.486512Z +C:/Windows/SysWOW64/sgx_uae_service.dll;file;38456;33206;2021-04-25T22:28:04Z;;;2785144255;1;0;12947848929072400;4096;80;0;0;2021-12-16T13:35:50.484571Z;2021-06-14T04:20:22.052842Z;2021-06-14T04:20:19.517719Z +C:/Windows/SysWOW64/sgx_urts.dll;file;107064;33206;2021-04-25T22:28:06Z;;;2785144255;1;0;10977524092098100;4096;216;0;0;2021-12-16T13:35:50.498464Z;2021-06-14T04:20:22.099706Z;2021-06-14T04:20:19.517719Z +C:/Windows/SysWOW64/shacct.dll;file;112640;33206;2020-11-11T20:25:29.793587Z;;;2785144255;2;0;844424931073655;4096;224;0;0;2021-12-16T13:35:50.512039Z;2021-11-11T11:29:33.764197Z;2020-11-11T20:25:29.789835Z +C:/Windows/SysWOW64/shacctprofile.dll;file;58368;33206;2019-12-07T09:09:22.146381Z;;;2785144255;2;0;1125899907635050;4096;120;0;0;2021-12-16T13:35:50.524682Z;2021-11-11T11:29:33.761205Z;2019-12-07T09:09:22.146381Z +C:/Windows/SysWOW64/ShareHost.dll;file;884224;33206;2021-11-11T11:28:58.043436Z;;;2785144255;2;0;281474977878969;4096;1728;0;0;2021-12-16T13:35:50.541374Z;2021-11-11T11:38:51.008096Z;2021-11-11T11:28:58.022455Z +C:/Windows/SysWOW64/SHCore.dll;file;547496;33206;2021-11-11T11:29:00.079397Z;;;2785144255;2;0;281474977879203;4096;1072;0;0;2021-12-16T13:35:50.542405Z;2021-11-11T11:38:52.449616Z;2021-11-11T11:29:00.064395Z +C:/Windows/SysWOW64/shdocvw.dll;file;218112;33206;2021-01-15T09:27:21.812277Z;;;2785144255;2;0;13510798882731200;4096;432;0;0;2021-12-16T13:35:50.562318Z;2021-11-11T11:29:33.804091Z;2021-01-15T09:27:21.812277Z +C:/Windows/SysWOW64/shell32.dll;file;6000208;33206;2021-11-11T11:29:01.481841Z;;;2785144255;2;0;281474977879258;4096;11720;0;0;2021-12-16T13:35:50.563360Z;2021-11-11T11:38:52.124916Z;2021-11-11T11:29:01.319242Z +C:/Windows/SysWOW64/ShellCommonCommonProxyStub.dll;file;390656;33206;2020-11-03T12:45:45.683167Z;;;2785144255;2;0;1125899907815960;4096;768;0;0;2021-12-16T13:35:50.576845Z;2021-11-11T11:29:33.760208Z;2020-11-03T12:45:45.683167Z +C:/Windows/SysWOW64/shellstyle.dll;file;1155584;33206;2019-12-07T09:09:13.677341Z;;;2785144255;2;0;1125899907638950;4096;2264;0;0;2021-12-16T13:35:50.602277Z;2021-11-11T11:29:33.714330Z;2019-12-07T09:09:13.677341Z +C:/Windows/SysWOW64/shfolder.dll;file;8704;33206;2019-12-07T09:09:32.427493Z;;;2785144255;2;0;1125899907634780;4096;24;0;0;2021-12-16T13:35:50.603273Z;2021-11-11T11:29:33.812069Z;2019-12-07T09:09:32.427493Z +C:/Windows/SysWOW64/shgina.dll;file;23552;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907634910;4096;48;0;0;2021-12-16T13:35:50.615268Z;2021-11-11T11:29:33.795115Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/ShiftJIS.uce;file;16740;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907630620;4096;40;0;0;2021-12-16T13:35:50.618234Z;2020-11-03T12:35:39.875636Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/shimeng.dll;file;5632;33206;2021-11-11T11:29:00.180955Z;;;2785144255;2;0;281474977879211;4096;16;0;0;2021-12-16T13:35:50.629119Z;2021-11-11T11:38:53.072441Z;2021-11-11T11:29:00.180955Z +C:/Windows/SysWOW64/shimgvw.dll;file;26624;33206;2019-12-07T09:09:32.427493Z;;;2785144255;2;0;1125899907637800;4096;56;0;0;2021-12-16T13:35:50.641943Z;2021-11-11T11:29:33.809077Z;2019-12-07T09:09:32.427493Z +C:/Windows/SysWOW64/shlwapi.dll;file;275808;33206;2021-06-10T14:01:41.900708Z;;;2785144255;2;0;281474977765234;4096;544;0;0;2021-12-16T13:35:50.642991Z;2021-11-11T11:29:33.812069Z;2021-06-10T14:01:41.885087Z +C:/Windows/SysWOW64/shpafact.dll;file;17408;33206;2019-12-07T09:09:29.088570Z;;;2785144255;2;0;1125899907637590;4096;40;0;0;2021-12-16T13:35:50.654722Z;2021-11-11T11:29:30.991459Z;2019-12-07T09:09:29.088570Z +C:/Windows/SysWOW64/shrpubw.exe;file;46080;33206;2019-12-07T09:09:30.459139Z;;;2785144255;2;0;1125899907636900;4096;96;0;0;2021-12-16T13:35:50.678937Z;2021-11-11T11:29:33.800102Z;2019-12-07T09:09:30.459139Z +C:/Windows/SysWOW64/shsetup.dll;file;107520;33206;2021-01-15T09:27:18.895669Z;;;2785144255;2;0;11540474045756100;4096;216;0;0;2021-12-16T13:35:50.693458Z;2021-11-11T11:29:33.767189Z;2021-01-15T09:27:18.895669Z +C:/Windows/SysWOW64/shsvcs.dll;file;193536;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907630280;4096;384;0;0;2021-12-16T13:35:50.709044Z;2021-11-11T11:29:34.214092Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/shunimpl.dll;file;21504;33206;2019-12-07T09:09:32.427493Z;;;2785144255;2;0;1125899907637260;4096;48;0;0;2021-12-16T13:35:50.721401Z;2021-11-11T11:29:33.815064Z;2019-12-07T09:09:32.427493Z +C:/Windows/SysWOW64/shutdown.exe;file;23552;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907637370;4096;48;0;0;2021-12-16T13:35:50.732391Z;2021-11-11T11:29:33.793120Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/shutdownext.dll;file;25088;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907635560;4096;56;0;0;2021-12-16T13:35:50.744343Z;2021-11-11T11:29:33.799135Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/shwebsvc.dll;file;432128;33206;2021-01-15T09:27:21.827898Z;;;2785144255;2;0;10696049115624700;4096;848;0;0;2021-12-16T13:35:50.771788Z;2021-11-11T11:29:33.809077Z;2021-01-15T09:27:21.812277Z +C:/Windows/SysWOW64/signdrv.dll;file;43008;33206;2021-07-16T09:18:10.189375Z;;;2785144255;2;0;281474977817277;4096;88;0;0;2021-12-16T13:35:50.771788Z;2021-11-11T11:29:31.742368Z;2021-07-16T09:18:10.189375Z +C:/Windows/SysWOW64/SimAuth.dll;file;125440;33206;2019-12-07T09:09:11.926670Z;;;2785144255;2;0;1125899907638540;4096;248;0;0;2021-12-16T13:35:50.786749Z;2021-11-11T11:29:33.703360Z;2019-12-07T09:09:11.926670Z +C:/Windows/SysWOW64/SimCfg.dll;file;82432;33206;2019-12-07T09:09:11.926670Z;;;2785144255;2;0;1125899907638450;4096;168;0;0;2021-12-16T13:35:50.801709Z;2021-11-11T11:29:33.712335Z;2019-12-07T09:09:11.926670Z +C:/Windows/SysWOW64/simpdata.tlb;file;8192;33206;2019-12-07T09:10:02.162312Z;;;2785144255;2;0;1125899907627930;4096;16;0;0;2021-12-16T13:35:50.804700Z;2020-11-03T12:35:38.391609Z;2019-12-07T09:10:02.162312Z +C:/Windows/SysWOW64/sk-SK;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;2533274790716780;4096;0;0;0;2021-12-16T13:36:01.186763Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/sk-SK/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;5629499534882860;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:19.958283Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/sk-SK/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619450;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/sk-SK/SyncRes.dll.mui;file;30208;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648640;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.466793Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/sk-SK/windows.ui.xaml.dll.mui;file;18432;33206;2021-06-10T14:01:34.406110Z;;;2785144255;4;0;281474977764490;4096;40;0;0;2021-06-10T14:01:41.669260Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:34.406110Z +C:/Windows/SysWOW64/sl-SI;directory;0;16822;2021-06-10T14:11:37.570446Z;;;2785144255;1;0;2533274790716780;4096;0;0;0;2021-12-16T13:36:01.186763Z;2021-06-10T14:11:37.570446Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/sl-SI/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;5348024558172200;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:19.958283Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/sl-SI/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619370;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/sl-SI/SyncRes.dll.mui;file;30720;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648790;4096;64;0;0;2019-12-07T14:53:37.860782Z;2020-11-03T12:35:52.529279Z;2019-12-07T14:53:37.860782Z +C:/Windows/SysWOW64/sl-SI/windows.ui.xaml.dll.mui;file;17920;33206;2021-06-10T14:01:34.406110Z;;;2785144255;4;0;281474977764489;4096;40;0;0;2021-06-10T14:01:41.669260Z;2021-06-10T14:11:37.570446Z;2021-06-10T14:01:34.406110Z +C:/Windows/SysWOW64/slc.dll;file;114176;33206;2020-11-03T12:45:45.730032Z;;;2785144255;2;0;1125899907815960;4096;224;0;0;2021-12-16T13:35:50.805734Z;2021-11-11T11:29:33.717322Z;2020-11-03T12:45:45.730032Z +C:/Windows/SysWOW64/slcext.dll;file;19968;33206;2020-11-03T12:45:45.714451Z;;;2785144255;2;0;1125899907815960;4096;40;0;0;2021-12-16T13:35:50.817099Z;2021-11-11T11:29:33.729290Z;2020-11-03T12:45:45.714451Z +C:/Windows/SysWOW64/slmgr;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;2533274790716790;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:41:50.298074Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/slmgr/0407;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;2533274790716790;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/slmgr/0407/slmgr.ini;file;53816;33206;2019-12-07T14:51:00.908019Z;;;2785144255;4;0;3096224744563040;4096;112;0;0;2019-12-07T14:51:00.908019Z;2020-11-03T12:35:26.941022Z;2019-12-07T14:51:00.908019Z +C:/Windows/SysWOW64/slmgr/0409;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;1407374884227070;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:50.298074Z +C:/Windows/SysWOW64/slmgr/0409/slmgr.ini;file;47020;33206;2020-11-03T12:41:40.597192Z;;;2785144255;4;0;1125899907691620;4096;96;0;0;2020-11-03T12:41:40.706575Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.597192Z +C:/Windows/SysWOW64/slmgr.vbs;file;142904;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;1125899907638140;4096;280;0;0;2021-12-16T13:35:50.895700Z;2021-03-14T02:09:49.215458Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/slwga.dll;file;71680;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;1125899907638730;4096;144;0;0;2021-12-16T13:35:50.907669Z;2021-11-11T11:29:33.726298Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/SmartcardCredentialProvider.dll;file;640512;33206;2021-10-03T19:02:24.744619Z;;;2785144255;2;0;1688849861187290;4096;1256;0;0;2021-12-16T13:35:50.924773Z;2021-11-11T11:29:33.807083Z;2021-10-03T19:02:24.701758Z +C:/Windows/SysWOW64/smartscreenps.dll;file;232960;33206;2021-01-15T09:27:13.058723Z;;;2785144255;2;0;2533274790986940;4096;456;0;0;2021-12-16T13:35:50.940842Z;2021-11-11T11:29:33.779158Z;2021-01-15T09:27:13.058723Z +C:/Windows/SysWOW64/SMBHelperClass.dll;file;84480;33206;2021-01-15T09:27:21.568968Z;;;2785144255;2;0;18858823440233700;4096;168;0;0;2021-12-16T13:35:50.954923Z;2021-11-11T11:29:33.808081Z;2021-01-15T09:27:21.568968Z +C:/Windows/SysWOW64/SMI;directory;0;16822;2019-12-07T09:31:04.476672Z;;;2785144255;1;0;2533274790716790;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/SMI/Manifests;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2533274790716790;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/SMI/Store;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2533274790716790;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/SMI/Store/Machine;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2533274790716790;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/smphost.dll;file;33104;33206;2021-10-16T00:21:27.783418Z;;;2785144255;2;0;281474977857756;4096;72;0;0;2021-12-16T13:35:50.968864Z;2021-11-11T11:29:34.243013Z;2021-10-16T00:21:27.783418Z +C:/Windows/SysWOW64/SndVol.exe;file;225656;33206;2021-01-15T09:27:18.801971Z;;;2785144255;2;0;4785074604700310;4096;448;0;0;2021-12-16T13:35:51.016416Z;2021-11-11T11:29:33.763200Z;2021-01-15T09:27:18.801971Z +C:/Windows/SysWOW64/SndVolSSO.dll;file;246784;33206;2021-05-18T10:59:11.458830Z;;;2785144255;2;0;9288674232338870;4096;488;0;0;2021-12-16T13:35:51.034375Z;2021-11-11T11:29:33.760208Z;2021-05-18T10:59:11.455841Z +C:/Windows/SysWOW64/snmpapi.dll;file;25600;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907629690;4096;56;0;0;2021-12-16T13:35:51.046298Z;2021-11-11T11:29:34.214092Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/socialapis.dll;file;108544;33206;2021-01-15T09:27:15.546384Z;;;2785144255;2;0;5348024558115060;4096;216;0;0;2021-12-16T13:35:51.060693Z;2021-11-11T11:29:33.748240Z;2021-01-15T09:27:15.530781Z +C:/Windows/SysWOW64/softkbd.dll;file;130560;33206;2019-12-07T09:09:13.677341Z;;;2785144255;2;0;1125899907638050;4096;256;0;0;2021-12-16T13:35:51.074520Z;2021-11-11T11:29:33.725301Z;2019-12-07T09:09:13.677341Z +C:/Windows/SysWOW64/softpub.dll;file;10752;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;844424930926161;4096;24;0;0;2021-12-16T13:35:51.086460Z;2021-11-11T11:29:33.786186Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/sort.exe;file;24576;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907630690;4096;48;0;0;2021-12-16T13:35:51.097760Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/SortServer2003Compat.dll;file;39936;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907636310;4096;80;0;0;2021-12-16T13:35:51.110560Z;2021-11-11T11:29:30.970526Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/SortWindows61.dll;file;43008;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907639320;4096;88;0;0;2021-12-16T13:35:51.122426Z;2021-11-11T11:29:30.967561Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/SortWindows62.dll;file;58368;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907638830;4096;120;0;0;2021-12-16T13:35:51.134075Z;2021-11-11T11:29:30.997448Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/SortWindows6Compat.dll;file;54784;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1125899907634940;4096;112;0;0;2021-12-16T13:35:51.146528Z;2021-11-11T11:29:30.947615Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/spacebridge.dll;file;166912;33206;2021-03-11T12:12:28.667362Z;;;2785144255;2;0;844424931104553;4096;328;0;0;2021-12-16T13:35:51.168014Z;2021-11-11T11:29:34.242017Z;2021-03-11T12:12:28.667362Z +C:/Windows/SysWOW64/SpatialAudioLicenseSrv.exe;file;132096;33206;2021-10-16T00:21:15.362391Z;;;2785144255;2;0;281474977857307;4096;264;0;0;2021-12-16T13:35:51.188977Z;2021-11-11T11:29:33.709343Z;2021-10-16T00:21:15.362391Z +C:/Windows/SysWOW64/SpatializerApo.dll;file;176128;33206;2021-10-16T00:21:15.277666Z;;;2785144255;2;0;281474977857302;4096;344;0;0;2021-12-16T13:35:51.203611Z;2021-11-11T11:29:33.712335Z;2021-10-16T00:21:15.277666Z +C:/Windows/SysWOW64/spbcd.dll;file;86528;33206;2021-10-03T19:02:00.910124Z;;;2785144255;2;0;1688849861186630;4096;176;0;0;2021-12-16T13:35:51.216588Z;2021-11-11T11:29:33.725301Z;2021-10-03T19:02:00.902667Z +C:/Windows/SysWOW64/Speech;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;3096224744138100;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech/Common;directory;0;16822;2021-01-15T09:30:18.039307Z;;;2785144255;1;0;2533274790716790;4096;0;0;0;2021-12-16T13:36:01.186763Z;2021-01-15T09:30:18.039307Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech/Common/de-DE;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;2533274790716790;4096;0;0;0;2021-12-16T13:36:01.186763Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/Speech/Common/de-DE/sapi.dll.mui;file;16384;33206;2019-12-07T14:51:00.892025Z;;;2785144255;4;0;1125899907513880;4096;32;0;0;2019-12-07T14:51:00.892025Z;2020-11-03T12:35:20.442546Z;2019-12-07T14:51:00.892025Z +C:/Windows/SysWOW64/Speech/Common/en-US;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;1407374884227070;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:50.298074Z +C:/Windows/SysWOW64/Speech/Common/en-US/sapi.dll.mui;file;16384;33206;2020-11-03T12:41:40.597192Z;;;2785144255;4;0;1125899907691620;4096;32;0;0;2020-11-03T12:41:40.690919Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.597192Z +C:/Windows/SysWOW64/Speech/Common/sapi.dll;file;1296384;33206;2021-01-15T09:27:09.869226Z;;;2785144255;2;0;4222124651245410;4096;2536;0;0;2021-12-16T12:05:02.500158Z;2021-11-11T11:29:33.730288Z;2021-01-15T09:27:09.853606Z +C:/Windows/SysWOW64/Speech/Engines;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2533274790716790;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech/Engines/SR;directory;0;16822;2021-01-15T09:30:18.039307Z;;;2785144255;1;0;2533274790716800;4096;0;0;0;2021-12-16T13:36:01.187760Z;2021-01-15T09:30:18.039307Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech/Engines/SR/de-DE;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;2533274790716800;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/Speech/Engines/SR/de-DE/srloc.dll.mui;file;4096;33206;2019-12-07T14:51:00.908019Z;;;2785144255;4;0;1688849861030460;4096;8;0;0;2019-12-07T14:51:00.892025Z;2020-11-03T12:35:28.362564Z;2019-12-07T14:51:00.892025Z +C:/Windows/SysWOW64/Speech/Engines/SR/en-US;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;1407374884227070;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:50.298074Z +C:/Windows/SysWOW64/Speech/Engines/SR/en-US/srloc.dll.mui;file;4096;33206;2020-11-03T12:41:40.597192Z;;;2785144255;4;0;1125899907691620;4096;8;0;0;2020-11-03T12:41:40.690919Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.597192Z +C:/Windows/SysWOW64/Speech/Engines/SR/spsreng.dll;file;878592;33206;2021-01-15T09:27:09.884847Z;;;2785144255;2;0;3377699721113440;4096;1720;0;0;2021-01-15T09:30:25.506559Z;2021-11-11T11:29:33.715328Z;2021-01-15T09:27:09.884847Z +C:/Windows/SysWOW64/Speech/Engines/SR/spsrx.dll;file;96768;33206;2021-01-15T09:27:09.884847Z;;;2785144255;2;0;3377699721113440;4096;192;0;0;2021-01-15T09:30:31.766530Z;2021-11-11T11:29:33.721311Z;2021-01-15T09:27:09.884847Z +C:/Windows/SysWOW64/Speech/Engines/SR/srloc.dll;file;406016;33206;2021-01-15T09:27:09.900439Z;;;2785144255;2;0;3377699721113450;4096;800;0;0;2021-01-15T09:30:30.445669Z;2021-11-11T11:29:33.720314Z;2021-01-15T09:27:09.900439Z +C:/Windows/SysWOW64/Speech/Engines/TTS;directory;0;16822;2021-10-03T19:51:39.736202Z;;;2785144255;1;0;2533274790716800;4096;0;0;0;2021-12-16T13:36:01.187760Z;2021-10-03T19:51:39.736202Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech/Engines/TTS/MSTTSEngine.dll;file;789304;33206;2021-10-03T19:02:00.794288Z;;;2785144255;2;0;1688849861186630;4096;1544;0;0;2021-10-03T19:51:50.438334Z;2021-11-11T11:29:33.716325Z;2021-10-03T19:02:00.757364Z +C:/Windows/SysWOW64/Speech/Engines/TTS/MSTTSLoc.dll;file;385024;33206;2021-01-15T09:27:09.853606Z;;;2785144255;2;0;3377699721113410;4096;752;0;0;2021-10-03T18:55:42.107382Z;2021-11-11T11:29:33.726298Z;2021-01-15T09:27:09.837953Z +C:/Windows/SysWOW64/Speech/SpeechUX;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;2533274790716800;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:41:50.298074Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech/SpeechUX/de-DE;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;2533274790716800;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/Speech/SpeechUX/de-DE/sapi.cpl.mui;file;21504;33206;2019-12-07T14:51:00.892025Z;;;2785144255;4;0;1688849861030300;4096;48;0;0;2020-11-03T17:00:21.892277Z;2020-11-03T12:35:28.315701Z;2019-12-07T14:51:00.892025Z +C:/Windows/SysWOW64/Speech/SpeechUX/en-US;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;1407374884227080;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:50.298074Z +C:/Windows/SysWOW64/Speech/SpeechUX/en-US/sapi.cpl.mui;file;19456;33206;2020-11-03T12:41:40.597192Z;;;2785144255;4;0;1125899907691610;4096;40;0;0;2020-11-03T12:41:40.690919Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.597192Z +C:/Windows/SysWOW64/Speech/SpeechUX/sapi.cpl;file;219648;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;1125899907637860;4096;432;0;0;2020-11-03T12:35:44.843488Z;2021-11-11T11:29:33.727295Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/Speech/SpeechUX/SpeechUXPS.DLL;file;21504;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;1125899907637520;4096;48;0;0;2021-02-22T08:01:24.697959Z;2021-11-11T11:29:33.724303Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/Speech_OneCore;directory;0;16822;2019-12-07T09:31:04.476672Z;;;2785144255;1;0;2533274790716800;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech_OneCore/Common;directory;0;16822;2021-10-16T08:02:15.603229Z;;;2785144255;1;0;2533274790716800;4096;8;0;0;2021-12-16T13:36:01.187760Z;2021-10-16T08:02:15.603229Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech_OneCore/Common/de-DE;directory;0;16822;2019-12-07T14:53:21.080653Z;;;2785144255;1;0;2533274790716800;4096;8;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:53:21.063613Z +C:/Windows/SysWOW64/Speech_OneCore/Common/de-DE/DictationCommands.0407.grxml;file;15852;33206;2019-12-06T15:43:00Z;;;2785144255;2;0;1125899907619710;4096;32;0;0;2019-12-07T14:53:19.500655Z;2020-11-03T12:35:33.752070Z;2019-12-07T14:53:19.500655Z +C:/Windows/SysWOW64/Speech_OneCore/Common/de-DE/SpellingGrammar.0407.grxml;file;28486;33206;2019-12-06T15:43:00Z;;;2785144255;2;0;1125899907619730;4096;56;0;0;2019-12-07T14:53:19.500655Z;2020-11-03T12:35:33.892662Z;2019-12-07T14:53:19.500655Z +C:/Windows/SysWOW64/Speech_OneCore/Common/de-DE/Tokens_SR_de-DE-N.xml;file;3275;33206;2019-04-18T18:47:00Z;;;2785144255;2;0;1125899907619700;4096;8;0;0;2019-12-07T14:53:19.500655Z;2020-11-03T12:35:33.752070Z;2019-12-07T14:53:19.500655Z +C:/Windows/SysWOW64/Speech_OneCore/Common/de-DE/tokens_TTS_de-DE.xml;file;3011;33206;2019-04-18T18:47:00Z;;;2785144255;2;0;1125899907619680;4096;8;0;0;2019-12-07T14:53:18.644564Z;2020-11-03T12:35:33.736448Z;2019-12-07T14:53:18.644564Z +C:/Windows/SysWOW64/Speech_OneCore/Common/de-DE/tokens_TTS_de-DE_hedda.xml;file;1510;33206;2019-04-18T18:47:00Z;;;2785144255;2;0;1125899907619690;4096;8;0;0;2019-12-07T14:53:18.644564Z;2020-11-03T12:35:33.752070Z;2019-12-07T14:53:18.644564Z +C:/Windows/SysWOW64/Speech_OneCore/Common/de-DE/VES-Disambiguation.0407.grxml;file;2971;33206;2019-04-18T18:47:00Z;;;2785144255;2;0;1125899907619760;4096;8;0;0;2019-12-07T14:53:19.500655Z;2020-11-03T12:35:33.939526Z;2019-12-07T14:53:19.500655Z +C:/Windows/SysWOW64/Speech_OneCore/Common/de-DE/VES-SeeItSayIt.0407.grxml;file;4679;33206;2019-04-18T18:47:00Z;;;2785144255;2;0;1125899907619750;4096;16;0;0;2019-12-07T14:53:19.500655Z;2020-11-03T12:35:33.923905Z;2019-12-07T14:53:19.500655Z +C:/Windows/SysWOW64/Speech_OneCore/Common/de-DE/VES-Select.0407.grxml;file;1364;33206;2019-04-18T18:47:00Z;;;2785144255;2;0;1125899907619700;4096;8;0;0;2019-12-07T14:53:19.500655Z;2020-11-03T12:35:33.752070Z;2019-12-07T14:53:19.500655Z +C:/Windows/SysWOW64/Speech_OneCore/Common/en-AU;directory;0;16822;2019-03-19T04:53:26.317807Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:50:21.597647Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/en-CA;directory;0;16822;2019-03-19T04:53:26.333433Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:50:21.613268Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/en-GB;directory;0;16822;2019-03-19T04:53:26.349060Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:50:21.613268Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/en-US;directory;0;16822;2020-02-14T11:10:22.903789Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.187760Z;2020-11-03T12:50:21.613268Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/es-ES;directory;0;16822;2019-03-19T04:53:26.364685Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:50:21.613268Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/es-MX;directory;0;16822;2019-03-19T04:53:26.364685Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:50:21.613268Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/fr-CA;directory;0;16822;2019-03-19T04:53:26.380312Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:50:21.613268Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/fr-FR;directory;0;16822;2019-03-19T04:53:26.380312Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:50:21.613268Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/it-IT;directory;0;16822;2019-03-19T04:53:26.380312Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:50:21.613268Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/ja-JP;directory;0;16822;2019-03-19T04:53:26.395938Z;;;2785144255;1;0;1970324837784970;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:50:21.613268Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/sapi_onecore.dll;file;4044800;33206;2021-07-07T12:58:45.438527Z;;;2785144255;2;0;281474977790778;4096;7904;0;0;2021-07-07T13:15:37.915300Z;2021-11-11T11:29:33.765194Z;2021-07-07T12:58:45.369485Z +C:/Windows/SysWOW64/Speech_OneCore/Common/SpeechModelDownload.exe;file;141824;33206;2021-07-07T12:58:45.469726Z;;;2785144255;2;0;281474977790779;4096;280;0;0;2021-11-11T11:22:02.834009Z;2021-11-11T11:29:33.771179Z;2021-07-07T12:58:45.469726Z +C:/Windows/SysWOW64/Speech_OneCore/Common/SpeechServiceWinRTApi.ProxyStub.dll;file;46592;33206;2021-06-10T14:01:40.527226Z;;;2785144255;2;0;281474977765164;4096;96;0;0;2021-06-10T14:11:45.349592Z;2021-11-11T11:29:33.777163Z;2021-06-10T14:01:40.527226Z +C:/Windows/SysWOW64/Speech_OneCore/Common/tokens.xml;file;14037;33206;2019-12-07T09:09:21.535003Z;;;2785144255;2;0;1125899907637330;4096;32;0;0;2019-12-07T09:09:21.535003Z;2020-11-03T12:35:44.468576Z;2019-12-07T09:09:21.535003Z +C:/Windows/SysWOW64/Speech_OneCore/Common/Windows.Speech.Dictation.dll;file;139264;33206;2021-01-15T09:27:18.458304Z;;;2785144255;2;0;9288674232070780;4096;272;0;0;2021-10-16T00:19:55.898938Z;2021-11-15T13:07:18.049433Z;2021-01-15T09:27:18.458304Z +C:/Windows/SysWOW64/Speech_OneCore/Common/Windows.Speech.Pal.Desktop.dll;file;145920;33206;2021-01-15T09:27:09.009525Z;;;2785144255;2;0;3659174697820250;4096;288;0;0;2021-01-15T09:30:30.383182Z;2021-11-11T11:29:33.699370Z;2021-01-15T09:27:09.007530Z +C:/Windows/SysWOW64/Speech_OneCore/Common/Windows.Speech.Shell.dll;file;717824;33206;2021-10-16T00:21:17.183437Z;;;2785144255;2;0;281474977857372;4096;1408;0;0;2021-10-16T08:02:21.887026Z;2021-11-11T11:29:33.774171Z;2021-10-16T00:21:17.167817Z +C:/Windows/SysWOW64/Speech_OneCore/Common/zh-CN;directory;0;16822;2019-03-19T04:53:26.395938Z;;;2785144255;1;0;1970324837784980;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:50:21.628890Z;2019-03-19T04:52:46.736530Z +C:/Windows/SysWOW64/Speech_OneCore/Engines;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2533274790716800;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech_OneCore/Engines/SR;directory;0;16822;2021-01-15T09:30:18.054928Z;;;2785144255;1;0;2814749767427460;4096;0;0;0;2021-12-16T13:36:01.188759Z;2021-01-15T09:30:18.054928Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech_OneCore/Engines/SR/spsreng_onecore.dll;file;1289728;33206;2021-01-15T09:27:18.567663Z;;;2785144255;2;0;14073748836151900;4096;2520;0;0;2021-01-15T09:30:31.985229Z;2021-11-11T11:29:33.765194Z;2021-01-15T09:27:18.567663Z +C:/Windows/SysWOW64/Speech_OneCore/Engines/SR/spsrx_onecore.dll;file;70144;33206;2021-01-15T09:27:18.583277Z;;;2785144255;2;0;14355223812862600;4096;144;0;0;2021-01-15T09:30:27.091686Z;2021-11-11T11:29:33.765194Z;2021-01-15T09:27:18.583277Z +C:/Windows/SysWOW64/Speech_OneCore/Engines/TTS;directory;0;16822;2021-10-03T19:51:39.736202Z;;;2785144255;1;0;2533274790716810;4096;0;0;0;2021-12-16T13:36:01.188759Z;2021-10-03T19:51:39.736202Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/Speech_OneCore/Engines/TTS/MSTTSEngine_OneCore.dll;file;1658880;33206;2021-10-03T19:02:15.033054Z;;;2785144255;2;0;1688849861186940;4096;3240;0;0;2021-10-03T19:51:47.994271Z;2021-11-11T11:29:33.777163Z;2021-10-03T19:02:14.902427Z +C:/Windows/SysWOW64/Speech_OneCore/Engines/TTS/MSTTSLoc_OneCore.dll;file;588800;33206;2021-01-15T09:27:18.427073Z;;;2785144255;2;0;7036874418385530;4096;1152;0;0;2021-10-03T18:55:29.859569Z;2021-11-11T11:29:33.770182Z;2021-01-15T09:27:18.427073Z +C:/Windows/SysWOW64/Speech_OneCore/VoiceActivation;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2533274790716810;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/spfileq.dll;file;92160;33206;2021-11-11T11:29:01.100509Z;;;2785144255;2;0;281474977879241;4096;184;0;0;2021-12-16T13:35:51.229583Z;2021-11-11T11:38:53.233603Z;2021-11-11T11:29:01.098512Z +C:/Windows/SysWOW64/spinf.dll;file;82432;33206;2020-11-03T12:45:53.462707Z;;;2785144255;2;0;2533274791372520;4096;168;0;0;2021-12-16T13:35:51.230548Z;2021-11-11T11:29:33.817058Z;2020-11-03T12:45:53.462707Z +C:/Windows/SysWOW64/spnet.dll;file;9216;33206;2019-12-07T09:09:13.637568Z;;;2785144255;2;0;1125899907638790;4096;24;0;0;2021-12-16T13:35:51.241987Z;2021-11-11T11:29:33.718319Z;2019-12-07T09:09:13.637568Z +C:/Windows/SysWOW64/spopk.dll;file;75776;33206;2021-01-15T09:27:09.947302Z;;;2785144255;2;0;9288674232038610;4096;152;0;0;2021-12-16T13:35:51.256682Z;2021-11-11T11:29:33.717322Z;2021-01-15T09:27:09.947302Z +C:/Windows/SysWOW64/spp;directory;0;16822;2019-12-07T09:14:52.752189Z;;;2785144255;1;0;2533274790716810;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/spp/tokens;directory;0;16822;2019-12-07T14:54:51.391184Z;;;2785144255;1;0;2533274790716810;4096;0;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/spp/tokens/legacy;directory;0;16822;2019-12-07T14:54:52.719265Z;;;2785144255;1;0;2533274790716810;4096;8;0;0;2021-12-16T13:36:01.188759Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/spp/tokens/legacy/client-issuance-rac.xrm-ms;file;7371;33206;2019-12-07T14:54:42.391314Z;;;2785144255;2;0;1125899907620070;4096;16;0;0;2019-12-07T14:54:42.391314Z;2020-11-03T12:35:34.345681Z;2019-12-07T09:10:23.960661Z +C:/Windows/SysWOW64/spp/tokens/legacy/client-issuance-spc.xrm-ms;file;5259;33206;2019-12-07T14:54:42.391314Z;;;2785144255;2;0;1125899907620490;4096;16;0;0;2019-12-07T14:54:42.391314Z;2020-11-03T12:35:34.533147Z;2019-12-07T09:10:23.960661Z +C:/Windows/SysWOW64/spp/tokens/legacy/rac-generic-private.xrm-ms;file;5105;33206;2019-12-07T14:54:42.391314Z;;;2785144255;2;0;1125899907620860;4096;16;0;0;2019-12-07T14:54:42.391314Z;2020-11-03T12:35:34.673730Z;2019-12-07T09:10:23.960661Z +C:/Windows/SysWOW64/spp/tokens/legacy/rac-generic-public.xrm-ms;file;3978;33206;2019-12-07T09:10:23.976261Z;;;2785144255;2;0;1125899907620450;4096;8;0;0;2019-12-07T09:10:23.976261Z;2020-11-03T12:35:34.517515Z;2019-12-07T09:10:23.976261Z +C:/Windows/SysWOW64/spp/tokens/legacy/spc-generic-private.xrm-ms;file;5463;33206;2019-12-07T14:54:42.391314Z;;;2785144255;2;0;1125899907620310;4096;16;0;0;2019-12-07T14:54:42.391314Z;2020-11-03T12:35:34.470650Z;2019-12-07T09:10:23.960661Z +C:/Windows/SysWOW64/spp/tokens/legacy/spc-generic-public.xrm-ms;file;3033;33206;2019-12-07T09:10:23.960661Z;;;2785144255;2;0;1125899907620730;4096;8;0;0;2019-12-07T09:10:23.960661Z;2020-11-03T12:35:34.626866Z;2019-12-07T09:10:23.960661Z +C:/Windows/SysWOW64/spp/tokens/pkeyconfig;directory;0;16822;2021-10-03T19:51:39.736202Z;;;2785144255;1;0;2533274790716810;4096;0;0;0;2021-12-16T13:36:01.188759Z;2021-10-03T19:51:39.736202Z;2019-12-07T09:14:52.752189Z +C:/Windows/SysWOW64/spp/tokens/pkeyconfig/pkeyconfig-csvlk.xrm-ms;file;18264;33206;2019-12-07T14:54:42.422261Z;;;2785144255;2;0;1125899907621210;4096;40;0;0;2021-11-11T11:27:31.397010Z;2021-12-16T12:06:18.251712Z;2019-12-07T09:10:23.960661Z +C:/Windows/SysWOW64/spp/tokens/pkeyconfig/pkeyconfig-downlevel.xrm-ms;file;756796;33206;2021-10-03T19:00:32.694272Z;;;2785144255;2;0;1970324837895620;4096;1480;0;0;2021-10-03T19:00:32.716156Z;2021-10-03T19:51:39.736202Z;2021-10-03T19:00:32.674797Z +C:/Windows/SysWOW64/spp/tokens/pkeyconfig/pkeyconfig.xrm-ms;file;590976;33206;2021-10-03T19:00:32.653179Z;;;2785144255;2;0;1125899907763650;4096;1160;0;0;2021-10-03T19:00:32.667304Z;2021-10-03T19:51:39.736202Z;2021-10-03T19:00:32.634552Z +C:/Windows/SysWOW64/spp/tokens/ppdlic;directory;0;16822;2019-12-07T09:14:52.768215Z;;;2785144255;1;0;2533274790716810;4096;0;0;0;2021-12-16T13:36:01.189756Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/spp/tokens/skus;directory;0;16822;2019-12-07T14:54:51.407182Z;;;2785144255;1;0;2533274790716810;4096;0;0;0;2021-12-16T13:36:01.189756Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.391184Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack;directory;0;16822;2021-11-11T11:38:44.511352Z;;;2785144255;1;0;2533274790716810;4096;16;0;0;2021-12-16T13:36:01.189756Z;2021-11-11T11:38:44.511352Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-ppdlic.xrm-ms;file;5966;33206;2019-12-07T14:54:42.407306Z;;;2785144255;2;0;1125899907620970;4096;16;0;0;2021-11-11T11:27:31.313194Z;2021-12-16T12:06:18.231712Z;2019-12-07T09:10:23.945783Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-1-pl-rtm.xrm-ms;file;11763;33206;2020-11-03T12:45:18.689310Z;;;2785144255;2;0;562949954385288;4096;24;0;0;2021-11-11T11:27:31.316186Z;2021-12-16T12:06:18.231712Z;2020-11-03T12:45:18.689310Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-1-ul-oob-rtm.xrm-ms;file;12412;33206;2020-11-03T12:45:18.689310Z;;;2785144255;2;0;562949954385289;4096;32;0;0;2021-11-11T11:27:31.318180Z;2021-12-16T12:06:18.231712Z;2020-11-03T12:45:18.689310Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-1-ul-phn-rtm.xrm-ms;file;20955;33206;2020-11-03T12:45:18.689310Z;;;2785144255;2;0;562949954385290;4096;48;0;0;2021-11-11T11:27:31.320207Z;2021-12-16T12:06:18.235712Z;2020-11-03T12:45:18.689310Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-1-ul-store-rtm.xrm-ms;file;10534;33206;2020-11-03T12:45:18.689310Z;;;2785144255;2;0;562949954385291;4096;24;0;0;2021-11-11T11:27:31.322171Z;2021-12-16T12:06:18.235712Z;2020-11-03T12:45:18.689310Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-10-pl-rtm.xrm-ms;file;11283;33206;2020-11-03T12:45:18.689310Z;;;2785144255;2;0;562949954385292;4096;24;0;0;2021-11-11T11:27:31.324203Z;2021-12-16T12:06:18.239714Z;2020-11-03T12:45:18.689310Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-10-ul-oob-rtm.xrm-ms;file;11931;33206;2020-11-03T12:45:18.689310Z;;;2785144255;2;0;562949954385293;4096;24;0;0;2021-11-11T11:27:31.326202Z;2021-12-16T12:06:18.239714Z;2020-11-03T12:45:18.689310Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-10-ul-phn-rtm.xrm-ms;file;20474;33206;2020-11-03T12:45:18.704925Z;;;2785144255;2;0;562949954385294;4096;40;0;0;2021-11-11T11:27:31.328191Z;2021-12-16T12:06:18.239714Z;2020-11-03T12:45:18.704925Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-10-ul-store-rtm.xrm-ms;file;10053;33206;2020-11-03T12:45:18.704925Z;;;2785144255;2;0;562949954385295;4096;24;0;0;2021-11-11T11:27:31.330149Z;2021-12-16T12:06:18.239714Z;2020-11-03T12:45:18.704925Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-2-pl-rtm.xrm-ms;file;11923;33206;2020-11-03T12:45:18.704925Z;;;2785144255;2;0;562949954385296;4096;24;0;0;2021-11-11T11:27:31.332143Z;2021-12-16T12:06:18.239714Z;2020-11-03T12:45:18.704925Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-2-ul-oob-rtm.xrm-ms;file;12572;33206;2020-11-03T12:45:18.704925Z;;;2785144255;2;0;562949954385297;4096;32;0;0;2021-11-11T11:27:31.334138Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.704925Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-2-ul-phn-rtm.xrm-ms;file;21115;33206;2020-11-03T12:45:18.704925Z;;;2785144255;2;0;562949954385298;4096;48;0;0;2021-11-11T11:27:31.336166Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.704925Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-2-ul-store-rtm.xrm-ms;file;10694;33206;2020-11-03T12:45:18.704925Z;;;2785144255;2;0;562949954385299;4096;24;0;0;2021-11-11T11:27:31.338127Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.704925Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-3-pl-rtm.xrm-ms;file;11803;33206;2020-11-03T12:45:18.704925Z;;;2785144255;2;0;562949954385300;4096;24;0;0;2021-11-11T11:27:31.341120Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.704925Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-3-ul-oob-rtm.xrm-ms;file;12452;33206;2020-11-03T12:45:18.704925Z;;;2785144255;2;0;562949954385301;4096;32;0;0;2021-11-11T11:27:31.343114Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.704925Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-3-ul-phn-rtm.xrm-ms;file;20995;33206;2020-11-03T12:45:18.720546Z;;;2785144255;2;0;562949954385302;4096;48;0;0;2021-11-11T11:27:31.345133Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.720546Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-3-ul-store-rtm.xrm-ms;file;10574;33206;2020-11-03T12:45:18.720546Z;;;2785144255;2;0;562949954385303;4096;24;0;0;2021-11-11T11:27:31.347103Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.720546Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-4-pl-rtm.xrm-ms;file;11283;33206;2020-11-03T12:45:18.720546Z;;;2785144255;2;0;562949954385304;4096;24;0;0;2021-11-11T11:27:31.349099Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.720546Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-4-ul-oob-rtm.xrm-ms;file;11931;33206;2020-11-03T12:45:18.720546Z;;;2785144255;2;0;562949954385305;4096;24;0;0;2021-11-11T11:27:31.351093Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.720546Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-4-ul-phn-rtm.xrm-ms;file;20474;33206;2020-11-03T12:45:18.720546Z;;;2785144255;2;0;562949954385306;4096;40;0;0;2021-11-11T11:27:31.352091Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.720546Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-4-ul-store-rtm.xrm-ms;file;10053;33206;2020-11-03T12:45:18.720546Z;;;2785144255;2;0;562949954385307;4096;24;0;0;2021-11-11T11:27:31.355115Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.720546Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-5-pl-rtm.xrm-ms;file;11443;33206;2020-11-03T12:45:18.720546Z;;;2785144255;2;0;562949954385308;4096;24;0;0;2021-11-11T11:27:31.357104Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.720546Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-5-ul-oob-rtm.xrm-ms;file;12091;33206;2020-11-03T12:45:18.720546Z;;;2785144255;2;0;562949954385309;4096;24;0;0;2021-11-11T11:27:31.358109Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.720546Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-5-ul-phn-rtm.xrm-ms;file;20634;33206;2020-11-03T12:45:18.720546Z;;;2785144255;2;0;562949954385310;4096;48;0;0;2021-11-11T11:27:31.360099Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.720546Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-5-ul-store-rtm.xrm-ms;file;10213;33206;2020-11-03T12:45:18.736167Z;;;2785144255;2;0;562949954385311;4096;24;0;0;2021-11-11T11:27:31.362064Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.736167Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-6-pl-rtm.xrm-ms;file;11323;33206;2020-11-03T12:45:18.736167Z;;;2785144255;2;0;562949954385312;4096;24;0;0;2021-11-11T11:27:31.364058Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.736167Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-6-ul-oob-rtm.xrm-ms;file;11971;33206;2020-11-03T12:45:18.736167Z;;;2785144255;2;0;562949954385313;4096;24;0;0;2021-11-11T11:27:31.366055Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.736167Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-6-ul-phn-rtm.xrm-ms;file;20514;33206;2020-11-03T12:45:18.736167Z;;;2785144255;2;0;562949954385314;4096;48;0;0;2021-11-11T11:27:31.368047Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.736167Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-6-ul-store-rtm.xrm-ms;file;10093;33206;2020-11-03T12:45:18.736167Z;;;2785144255;2;0;562949954385315;4096;24;0;0;2021-11-11T11:27:31.370043Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.736167Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-7-pl-rtm.xrm-ms;file;11483;33206;2020-11-03T12:45:18.736167Z;;;2785144255;2;0;562949954385316;4096;24;0;0;2021-11-11T11:27:31.372037Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.736167Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-7-ul-oob-rtm.xrm-ms;file;12131;33206;2020-11-03T12:45:18.736167Z;;;2785144255;2;0;562949954385317;4096;24;0;0;2021-11-11T11:27:31.374032Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.736167Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-7-ul-phn-rtm.xrm-ms;file;20674;33206;2020-11-03T12:45:18.736167Z;;;2785144255;2;0;562949954385318;4096;48;0;0;2021-11-11T11:27:31.377041Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.736167Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-7-ul-store-rtm.xrm-ms;file;10253;33206;2020-11-03T12:45:18.751789Z;;;2785144255;2;0;562949954385319;4096;24;0;0;2021-11-11T11:27:31.379018Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.751789Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-8-pl-rtm.xrm-ms;file;11363;33206;2020-11-03T12:45:18.751789Z;;;2785144255;2;0;562949954385320;4096;24;0;0;2021-11-11T11:27:31.381013Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.751789Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-8-ul-oob-rtm.xrm-ms;file;12011;33206;2020-11-03T12:45:18.751789Z;;;2785144255;2;0;562949954385321;4096;24;0;0;2021-11-11T11:27:31.383007Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.751789Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-8-ul-phn-rtm.xrm-ms;file;20554;33206;2020-11-03T12:45:18.751789Z;;;2785144255;2;0;562949954385322;4096;48;0;0;2021-11-11T11:27:31.385002Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.751789Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-8-ul-store-rtm.xrm-ms;file;10133;33206;2020-11-03T12:45:18.751789Z;;;2785144255;2;0;562949954385323;4096;24;0;0;2021-11-11T11:27:31.387029Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.751789Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-9-pl-rtm.xrm-ms;file;11523;33206;2020-11-03T12:45:18.751789Z;;;2785144255;2;0;562949954385324;4096;24;0;0;2021-11-11T11:27:31.389027Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.751789Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-9-ul-oob-rtm.xrm-ms;file;12171;33206;2020-11-03T12:45:18.751789Z;;;2785144255;2;0;562949954385325;4096;24;0;0;2021-11-11T11:27:31.391019Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.751789Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-9-ul-phn-rtm.xrm-ms;file;20714;33206;2020-11-03T12:45:18.751789Z;;;2785144255;2;0;562949954385326;4096;48;0;0;2021-11-11T11:27:31.393018Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.751789Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/csvlk-pack-Volume-CSVLK-9-ul-store-rtm.xrm-ms;file;10293;33206;2020-11-03T12:45:18.767410Z;;;2785144255;2;0;562949954385327;4096;24;0;0;2021-11-11T11:27:31.395016Z;2021-12-16T12:06:18.243713Z;2020-11-03T12:45:18.751789Z +C:/Windows/SysWOW64/spp/tokens/skus/csvlk-pack/DefaultPpd-csvlk-pack-ppdlic.xrm-ms;file;45951;33206;2021-11-11T11:28:37.039153Z;;;2785144255;2;0;281474977878305;4096;96;0;0;2021-11-11T11:28:37.041148Z;2021-11-11T11:38:44.511352Z;2021-11-11T11:28:37.038156Z +C:/Windows/SysWOW64/spp.dll;file;215040;33206;2021-01-15T09:27:39.051298Z;;;2785144255;2;0;9288674232074330;4096;424;0;0;2021-12-16T13:35:51.270644Z;2021-11-11T11:29:31.740402Z;2021-01-15T09:27:39.035677Z +C:/Windows/SysWOW64/sppc.dll;file;98816;33206;2020-11-03T12:45:45.730032Z;;;2785144255;2;0;1125899907815970;4096;200;0;0;2021-12-16T13:35:51.271641Z;2021-11-11T11:29:33.726298Z;2020-11-03T12:45:45.730032Z +C:/Windows/SysWOW64/sppcext.dll;file;546816;33206;2021-04-17T10:34:28.670153Z;;;2785144255;2;0;844424930951350;4096;1072;0;0;2021-12-16T13:35:51.296449Z;2021-11-11T11:29:33.714330Z;2021-04-17T10:34:28.632651Z +C:/Windows/SysWOW64/sppcomapi.dll;file;283648;33206;2020-11-03T12:45:45.730032Z;;;2785144255;2;0;1125899907815970;4096;560;0;0;2021-12-16T13:35:51.311439Z;2021-11-11T11:29:33.727295Z;2020-11-03T12:45:45.730032Z +C:/Windows/SysWOW64/sppinst.dll;file;36152;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;16325548649655100;4096;72;0;0;2021-12-16T13:35:51.324401Z;2021-11-11T11:29:33.723306Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/sppui;directory;0;16822;2019-12-07T09:15:00.958365Z;;;2785144255;1;0;2533274790716820;4096;0;0;0;2021-12-16T13:36:01.189756Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/sppui/phone.inf;file;24171;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;1125899907634760;4096;48;0;0;2019-12-07T09:09:13.614209Z;2020-11-03T12:35:42.703326Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/sppwmi.dll;file;113664;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;1125899907637000;4096;224;0;0;2021-12-16T13:35:51.336983Z;2021-11-11T11:29:33.725301Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/spwinsat.dll;file;12288;33206;2019-12-07T09:10:05.507228Z;;;2785144255;2;0;1125899907627910;4096;24;0;0;2021-12-16T13:35:51.347955Z;2021-11-11T11:29:34.244011Z;2019-12-07T09:10:05.507228Z +C:/Windows/SysWOW64/spwizeng.dll;file;407880;33206;2021-01-15T09:27:21.693939Z;;;2785144255;2;0;9288674232071390;4096;800;0;0;2021-12-16T13:35:51.365905Z;2021-11-11T11:29:33.817058Z;2021-01-15T09:27:21.693939Z +C:/Windows/SysWOW64/spwmp.dll;file;9216;33206;2021-10-16T00:21:37.948115Z;;;2785144255;2;0;281474977858424;4096;24;0;0;2021-12-16T13:35:51.377114Z;2021-11-11T11:29:35.575400Z;2021-10-16T00:21:37.948115Z +C:/Windows/SysWOW64/sqlsrv32.dll;file;665088;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907628480;4096;1304;0;0;2021-12-16T13:35:51.386623Z;2021-11-11T11:29:34.221108Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/sqlsrv32.rll;file;94208;33206;2019-12-07T09:10:02.131501Z;;;2785144255;2;0;1125899907629310;4096;184;0;0;2021-12-16T13:35:51.396435Z;2021-11-11T11:29:34.220113Z;2019-12-07T09:10:02.131501Z +C:/Windows/SysWOW64/sqlunirl.dll;file;188768;33206;2019-12-07T09:10:02.162312Z;;;2785144255;2;0;1125899907628260;4096;376;0;0;2021-12-16T13:35:51.416426Z;2021-11-11T11:29:34.222071Z;2019-12-07T09:10:02.162312Z +C:/Windows/SysWOW64/sqlwid.dll;file;17760;33206;2019-12-07T09:10:02.162312Z;;;2785144255;2;0;1125899907629100;4096;40;0;0;2021-12-16T13:35:51.426158Z;2021-11-11T11:29:34.232043Z;2019-12-07T09:10:02.162312Z +C:/Windows/SysWOW64/sqlwoa.dll;file;43872;33206;2019-12-07T09:10:02.162312Z;;;2785144255;2;0;1125899907629060;4096;88;0;0;2021-12-16T13:35:51.441074Z;2021-11-11T11:29:34.229083Z;2019-12-07T09:10:02.162312Z +C:/Windows/SysWOW64/sqmapi.dll;file;40232;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;1125899907636050;4096;80;0;0;2021-12-16T13:35:51.456237Z;2021-11-11T11:29:33.724303Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/sr-Latn-RS;directory;0;16822;2021-06-10T14:11:37.586068Z;;;2785144255;1;0;2533274790716820;4096;0;0;0;2021-12-16T13:36:01.189756Z;2021-06-10T14:11:37.586068Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/sr-Latn-RS/comctl32.dll.mui;file;6144;33206;2021-06-10T14:01:41.700569Z;;;2785144255;2;0;281474977765217;4096;16;0;0;2021-06-10T14:01:41.700569Z;2021-06-10T14:11:37.586068Z;2021-06-10T14:01:41.700569Z +C:/Windows/SysWOW64/sr-Latn-RS/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619440;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/sr-Latn-RS/SyncRes.dll.mui;file;30208;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648660;4096;64;0;0;2019-12-07T14:53:37.875787Z;2020-11-03T12:35:52.482415Z;2019-12-07T14:53:37.875787Z +C:/Windows/SysWOW64/sr-Latn-RS/windows.ui.xaml.dll.mui;file;17920;33206;2021-06-10T14:01:34.390488Z;;;2785144255;4;0;281474977764488;4096;40;0;0;2021-06-10T14:01:41.669260Z;2021-06-10T14:11:37.586068Z;2021-06-10T14:01:34.390488Z +C:/Windows/SysWOW64/srchadmin.dll;file;169472;33206;2021-01-15T09:27:21.615828Z;;;2785144255;2;0;6473924464964830;4096;336;0;0;2021-12-16T13:35:51.466425Z;2021-11-11T11:29:33.817058Z;2021-01-15T09:27:21.615828Z +C:/Windows/SysWOW64/srclient.dll;file;61440;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907629700;4096;120;0;0;2021-12-16T13:35:51.476560Z;2021-11-11T11:29:31.743365Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/srdelayed.exe;file;16384;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907629420;4096;32;0;0;2021-12-16T13:35:51.486495Z;2021-11-11T11:29:31.742368Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/srm.dll;file;279040;33206;2019-12-07T14:54:35.079285Z;;;2785144255;2;0;1125899907624420;4096;552;0;0;2021-12-16T13:35:51.506132Z;2021-11-11T11:29:31.880802Z;2019-12-07T09:10:19.805135Z +C:/Windows/SysWOW64/srmclient.dll;file;945664;33206;2021-01-15T09:27:41.195019Z;;;2785144255;2;0;9288674232074770;4096;1848;0;0;2021-12-16T13:35:51.536175Z;2021-11-11T11:29:31.880802Z;2021-01-15T09:27:41.163774Z +C:/Windows/SysWOW64/srmlib.dll;file;90112;33206;2019-12-07T14:54:39.079280Z;;;2785144255;3;0;1125899907622040;4096;176;0;0;2021-12-16T13:35:51.546506Z;2021-11-11T11:29:31.878836Z;2019-12-07T09:10:19.960563Z +C:/Windows/SysWOW64/srms-apr-v.dat;file;11292;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907630170;4096;24;0;0;2021-12-16T13:35:51.546506Z;2021-04-15T08:15:56.881599Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/srms-apr.dat;file;19485;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907630420;4096;40;0;0;2021-12-16T13:35:51.546506Z;2021-04-15T08:15:56.881599Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/srmscan.dll;file;465920;33206;2021-01-15T09:27:41.210640Z;;;2785144255;2;0;9288674232074770;4096;912;0;0;2021-12-16T13:35:51.566214Z;2021-11-11T11:29:31.879830Z;2021-01-15T09:27:41.195019Z +C:/Windows/SysWOW64/srmshell.dll;file;125440;33206;2021-01-15T09:27:41.210640Z;;;2785144255;2;0;15199648742998500;4096;248;0;0;2021-12-16T13:35:51.586138Z;2021-11-11T11:29:31.878836Z;2021-01-15T09:27:41.210640Z +C:/Windows/SysWOW64/srmstormod.dll;file;194048;33206;2021-01-15T09:27:41.226260Z;;;2785144255;2;0;14355223812866600;4096;384;0;0;2021-12-16T13:35:51.605012Z;2021-11-11T11:29:31.880802Z;2021-01-15T09:27:41.226260Z +C:/Windows/SysWOW64/srmtrace.dll;file;66048;33206;2019-12-07T14:54:35.094280Z;;;2785144255;2;0;1125899907626620;4096;136;0;0;2021-12-16T13:35:51.622006Z;2021-11-11T11:29:31.880802Z;2019-12-07T09:10:19.805135Z +C:/Windows/SysWOW64/srm_ps.dll;file;16896;33206;2019-12-07T14:54:35.094280Z;;;2785144255;2;0;1125899907627720;4096;40;0;0;2021-12-16T13:35:51.521504Z;2021-11-11T11:29:31.879830Z;2019-12-07T09:10:19.805135Z +C:/Windows/SysWOW64/srpapi.dll;file;132096;33206;2021-07-07T12:58:45.491885Z;;;2785144255;2;0;281474977790782;4096;264;0;0;2021-12-16T13:35:51.625001Z;2021-11-11T11:29:33.768187Z;2021-07-07T12:58:45.491885Z +C:/Windows/SysWOW64/SrpUxNativeSnapIn.dll;file;31232;33206;2019-12-07T14:54:44.985217Z;;;2785144255;2;0;1125899907621460;4096;64;0;0;2021-12-16T13:35:51.638127Z;2021-11-11T11:29:32.373135Z;2019-12-07T09:10:23.882467Z +C:/Windows/SysWOW64/sru;;;;;;;;;;;;;;;;; +C:/Windows/SysWOW64/srumapi.dll;file;50688;33206;2021-01-15T09:27:34.256490Z;;;2785144255;2;0;12384898975890900;4096;104;0;0;2021-12-16T13:35:51.650507Z;2021-11-11T11:29:34.199161Z;2021-01-15T09:27:34.256490Z +C:/Windows/SysWOW64/srumsvc.dll;file;196096;33206;2021-01-15T09:27:34.272110Z;;;2785144255;2;0;12947848929312200;4096;384;0;0;2021-12-16T13:35:51.661057Z;2021-11-11T11:29:34.198164Z;2021-01-15T09:27:34.256490Z +C:/Windows/SysWOW64/srvcli.dll;file;76952;33206;2020-11-03T12:45:51.947407Z;;;2785144255;2;0;562949954397216;4096;152;0;0;2021-12-16T13:35:51.661057Z;2021-11-11T11:29:33.773174Z;2020-11-03T12:45:51.947407Z +C:/Windows/SysWOW64/sscore.dll;file;37376;33206;2021-10-03T19:02:17.274329Z;;;2785144255;2;0;1688849861186970;4096;80;0;0;2021-12-16T13:35:51.678767Z;2021-11-11T11:29:33.761205Z;2021-10-03T19:02:17.271003Z +C:/Windows/SysWOW64/ssdm.dll;file;330752;33206;2021-01-15T09:27:09.141488Z;;;2785144255;2;0;3940649674530920;4096;648;0;0;2021-12-16T13:35:51.694724Z;2021-11-15T13:07:17.573432Z;2021-01-15T09:27:09.141488Z +C:/Windows/SysWOW64/ssdpapi.dll;file;48640;33206;2019-12-07T09:09:57.412688Z;;;2785144255;2;0;1125899907630470;4096;96;0;0;2021-12-16T13:35:51.707689Z;2021-11-11T11:29:34.199161Z;2019-12-07T09:09:57.225226Z +C:/Windows/SysWOW64/sspicli.dll;file;123480;33206;2021-04-17T10:34:27.437955Z;;;2785144255;2;0;844424930951342;4096;248;0;0;2021-12-16T13:35:51.708685Z;2021-11-11T11:29:33.711338Z;2021-04-17T10:34:27.423961Z +C:/Windows/SysWOW64/SSShim.dll;file;110096;33206;2019-12-07T09:09:10.239079Z;;;2785144255;2;0;18858823440051000;4096;216;0;0;2021-12-16T13:35:51.722678Z;2021-11-11T11:29:33.680421Z;2019-12-07T09:09:10.239079Z +C:/Windows/SysWOW64/Startupscan.dll;file;19968;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907636970;4096;40;0;0;2021-12-16T13:35:51.735614Z;2021-11-11T11:29:33.785173Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/StateRepository.Core.dll;file;583600;33206;2021-03-11T12:12:17.590607Z;;;2785144255;2;0;844424931103266;4096;1144;0;0;2021-12-16T13:35:51.751570Z;2021-11-11T11:29:33.754225Z;2021-03-11T12:12:17.574986Z +C:/Windows/SysWOW64/stclient.dll;file;53760;33206;2021-01-15T09:27:18.989435Z;;;2785144255;2;0;10133099162202800;4096;112;0;0;2021-12-16T13:35:51.763569Z;2021-11-11T11:29:33.766192Z;2021-01-15T09:27:18.989435Z +C:/Windows/SysWOW64/stdole2.tlb;file;18432;33206;2019-12-07T09:09:11.817330Z;;;2785144255;2;0;1125899907514790;4096;40;0;0;2021-12-16T13:35:51.764536Z;2020-11-03T12:35:21.692253Z;2019-12-07T09:09:11.817330Z +C:/Windows/SysWOW64/stdole32.tlb;file;7168;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907514790;4096;16;0;0;2021-12-16T13:35:51.768525Z;2020-11-03T12:35:21.692253Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/sti.dll;file;229376;33206;2020-11-03T12:46:01.414047Z;;;2785144255;2;0;562949954400458;4096;448;0;0;2021-12-16T13:35:51.788518Z;2021-11-11T11:29:34.213094Z;2020-11-03T12:46:01.414047Z +C:/Windows/SysWOW64/stobject.dll;file;256512;33206;2021-05-18T10:59:07.203148Z;;;2785144255;2;0;2251799814572420;4096;504;0;0;2021-12-16T13:35:51.806443Z;2021-11-11T11:29:33.711338Z;2021-05-18T10:59:07.192430Z +C:/Windows/SysWOW64/storage.dll;file;8960;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907635490;4096;24;0;0;2021-12-16T13:35:51.806443Z;2021-11-11T11:29:33.800102Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/StorageContextHandler.dll;file;80896;33206;2021-01-15T09:27:34.600127Z;;;2785144255;2;0;19984723347078600;4096;160;0;0;2021-12-16T13:35:51.821118Z;2021-11-11T11:29:34.202158Z;2021-01-15T09:27:34.600127Z +C:/Windows/SysWOW64/storagewmi.dll;file;2007552;33206;2021-05-18T10:59:41.732876Z;;;2785144255;2;0;1407374884441490;4096;3928;0;0;2021-12-16T13:35:51.846389Z;2021-11-11T11:29:34.248Z;2021-05-18T10:59:41.649444Z +C:/Windows/SysWOW64/storagewmi_passthru.dll;file;19968;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;1125899907628990;4096;40;0;0;2021-12-16T13:35:51.856178Z;2021-11-11T11:29:34.241020Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/stordiag.exe;file;111616;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907630630;4096;224;0;0;2021-12-16T13:35:51.906864Z;2021-11-11T11:29:34.216121Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/Storprop.dll;file;57344;33206;2019-12-07T09:09:13.614209Z;;;2785144255;2;0;1125899907635480;4096;112;0;0;2021-12-16T13:35:51.921028Z;2021-11-11T11:29:33.725301Z;2019-12-07T09:09:13.614209Z +C:/Windows/SysWOW64/StructuredQuery.dll;file;523728;33206;2021-01-15T09:27:15.983770Z;;;2785144255;2;0;14073748836151500;4096;1024;0;0;2021-12-16T13:35:51.937232Z;2021-11-11T11:29:33.814066Z;2021-01-15T09:27:15.983770Z +C:/Windows/SysWOW64/SubRange.uce;file;93702;33206;2019-12-07T09:10:04.101070Z;;;2785144255;2;0;1125899907629520;4096;184;0;0;2021-12-16T13:35:51.940531Z;2020-11-03T12:35:39.125810Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/subst.exe;file;14848;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907628860;4096;32;0;0;2021-12-16T13:35:51.950297Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/sud.dll;file;147456;33206;2021-01-15T09:27:34.553263Z;;;2785144255;2;0;19703248370368000;4096;288;0;0;2021-12-16T13:35:51.967021Z;2021-11-11T11:29:34.202158Z;2021-01-15T09:27:34.553263Z +C:/Windows/SysWOW64/sv-SE;directory;0;16822;2019-12-07T14:53:40.626174Z;;;2785144255;1;0;2533274790716820;4096;8;0;0;2021-12-16T13:36:01.189756Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/sv-SE/APHostRes.dll.mui;file;14848;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648640;4096;32;0;0;2019-12-07T14:53:37.766934Z;2020-11-03T12:35:52.466793Z;2019-12-07T14:53:37.766934Z +C:/Windows/SysWOW64/sv-SE/cdosys.dll.mui;file;48640;33206;2019-12-07T09:09:30.442382Z;;;2785144255;2;0;6473924465014750;4096;96;0;0;2019-12-07T09:09:30.442382Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.442382Z +C:/Windows/SysWOW64/sv-SE/comctl32.dll.mui;file;6144;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;5348024558172200;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:19.958283Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/sv-SE/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619370;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/sv-SE/SyncRes.dll.mui;file;30208;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648530;4096;64;0;0;2019-12-07T14:53:37.875787Z;2020-11-03T12:35:52.404309Z;2019-12-07T14:53:37.875787Z +C:/Windows/SysWOW64/sv-SE/windows.ui.xaml.dll.mui;file;16384;33206;2019-12-07T09:09:02.067275Z;;;2785144255;4;0;1125899907638820;4096;32;0;0;2019-12-07T09:09:02.067275Z;2020-11-03T12:35:45.280885Z;2019-12-07T09:09:02.067275Z +C:/Windows/SysWOW64/svchost.exe;file;47016;33206;2020-11-03T12:45:51.713123Z;;;2785144255;2;0;562949954397171;4096;96;0;0;2021-12-16T13:35:51.979100Z;2021-11-11T11:29:33.774171Z;2020-11-03T12:45:51.713123Z +C:/Windows/SysWOW64/sxproxy.dll;file;35840;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907628060;4096;72;0;0;2021-12-16T13:35:51.992669Z;2021-11-11T11:29:31.746357Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/sxs.dll;file;548544;33206;2020-11-03T12:45:45.761303Z;;;2785144255;3;0;1125899907815970;4096;1072;0;0;2021-12-16T13:35:51.993148Z;2021-11-11T11:29:33.723306Z;2020-11-03T12:45:45.745675Z +C:/Windows/SysWOW64/sxshared.dll;file;19456;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907628620;4096;40;0;0;2021-12-16T13:35:52.004795Z;2021-11-11T11:29:34.213094Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/sxsstore.dll;file;23040;33206;2019-12-07T09:09:13.637568Z;;;2785144255;2;0;1125899907639420;4096;48;0;0;2021-12-16T13:35:52.017725Z;2021-11-11T11:29:33.715328Z;2019-12-07T09:09:13.637568Z +C:/Windows/SysWOW64/sxstrace.exe;file;29696;33206;2020-11-03T12:45:45.761303Z;;;2785144255;2;0;1125899907815970;4096;64;0;0;2021-12-16T13:35:52.040703Z;2021-11-11T11:29:33.720314Z;2020-11-03T12:45:45.761303Z +C:/Windows/SysWOW64/SyncCenter.dll;file;396288;33206;2020-11-03T12:46:03.210521Z;;;2785144255;2;0;562949954401079;4096;776;0;0;2021-12-16T13:35:52.060469Z;2021-11-11T11:29:34.236070Z;2020-11-03T12:46:03.210521Z +C:/Windows/SysWOW64/SyncController.dll;file;476672;33206;2021-01-15T09:27:50.238841Z;;;2785144255;2;0;19140298416949400;4096;936;0;0;2021-12-16T13:35:52.076426Z;2021-11-11T11:29:35.506584Z;2021-01-15T09:27:50.238841Z +C:/Windows/SysWOW64/SyncHost.exe;file;38912;33206;2021-01-15T09:27:34.568884Z;;;2785144255;2;0;11821949022469600;4096;80;0;0;2021-12-16T13:35:52.088338Z;2021-11-11T11:29:34.206112Z;2021-01-15T09:27:34.568884Z +C:/Windows/SysWOW64/SyncHostps.dll;file;10752;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907628110;4096;24;0;0;2021-12-16T13:35:52.099182Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/SyncInfrastructure.dll;file;347136;33206;2021-01-15T09:27:34.568884Z;;;2785144255;2;0;10977524092337600;4096;680;0;0;2021-12-16T13:35:52.114277Z;2021-11-11T11:29:34.214092Z;2021-01-15T09:27:34.568884Z +C:/Windows/SysWOW64/SyncInfrastructureps.dll;file;17408;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907628820;4096;40;0;0;2021-12-16T13:35:52.126210Z;2021-11-11T11:29:34.207109Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/SyncProxy.dll;file;46592;33206;2021-01-15T09:27:50.238841Z;;;2785144255;2;0;12384898975893700;4096;96;0;0;2021-12-16T13:35:52.138132Z;2021-11-11T11:29:35.505588Z;2021-01-15T09:27:50.238841Z +C:/Windows/SysWOW64/Syncreg.dll;file;61440;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907629720;4096;120;0;0;2021-12-16T13:35:52.150079Z;2021-11-11T11:29:34.216121Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/SyncRes.dll;file;2560;33206;2019-12-06T16:26:00Z;;;2785144255;2;0;1125899907648680;4096;8;0;0;2021-12-16T13:35:52.153064Z;2021-11-11T11:29:35.503592Z;2019-12-07T14:53:38.016783Z +C:/Windows/SysWOW64/SyncSettings.dll;file;230912;33206;2021-10-03T19:01:59.843304Z;;;2785144255;2;0;1688849861186610;4096;456;0;0;2021-12-16T13:35:52.166396Z;2021-11-11T11:29:33.712335Z;2021-10-03T19:01:59.818403Z +C:/Windows/SysWOW64/syncutil.dll;file;304640;33206;2021-01-15T09:27:50.254464Z;;;2785144255;2;0;13792273859446900;4096;600;0;0;2021-12-16T13:35:52.176220Z;2021-11-11T11:29:35.505588Z;2021-01-15T09:27:50.238841Z +C:/Windows/SysWOW64/sysdm.cpl;file;115200;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907630490;4096;232;0;0;2021-12-16T13:35:52.196166Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/sysmon.ocx;file;337408;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907630260;4096;664;0;0;2021-12-16T13:35:52.206127Z;2021-11-11T11:29:34.236070Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/sysprep;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;2533274790716820;4096;0;0;0;2021-12-16T13:36:01.189756Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/sysprep/en-US;directory;0;16822;2019-12-07T14:51:16.736320Z;;;2785144255;1;0;2533274790716820;4096;0;0;0;2021-12-16T13:36:01.189756Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/sysprint.sep;file;3317;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907638840;4096;8;0;0;2021-12-16T13:35:52.216425Z;2020-11-03T12:35:45.296507Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/sysprtj.sep;file;3666;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907639320;4096;8;0;0;2021-12-16T13:35:52.216425Z;2020-11-03T12:35:45.530826Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/syssetup.dll;file;15360;33206;2019-12-07T09:09:30.880472Z;;;2785144255;2;0;70368744178101300;4096;32;0;0;2021-12-16T13:35:52.226488Z;2021-11-11T11:29:33.809077Z;2019-12-07T09:09:30.880472Z +C:/Windows/SysWOW64/systemcpl.dll;file;109568;33206;2020-11-03T12:45:45.776925Z;;;2785144255;2;0;1125899907815980;4096;216;0;0;2021-12-16T13:35:52.246157Z;2021-11-11T11:29:34.248Z;2020-11-03T12:45:45.761303Z +C:/Windows/SysWOW64/SystemEventsBrokerClient.dll;file;21504;33206;2021-10-03T19:02:03.865146Z;;;2785144255;2;0;1688849861186650;4096;48;0;0;2021-12-16T13:35:52.256308Z;2021-11-11T11:29:33.751232Z;2021-10-03T19:02:03.862827Z +C:/Windows/SysWOW64/systeminfo.exe;file;76800;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907630460;4096;152;0;0;2021-12-16T13:35:52.276577Z;2021-11-11T11:29:34.248997Z;2019-12-07T09:10:05.475470Z +C:/Windows/SysWOW64/SystemPropertiesAdvanced.exe;file;82944;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907628650;4096;168;0;0;2021-12-16T13:35:52.296509Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/SystemPropertiesComputerName.exe;file;82944;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907630400;4096;168;0;0;2021-12-16T13:35:52.311141Z;2021-11-11T11:29:34.242017Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/SystemPropertiesDataExecutionPrevention.exe;file;82944;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907628200;4096;168;0;0;2021-12-16T13:35:52.316204Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/SystemPropertiesHardware.exe;file;82944;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907630570;4096;168;0;0;2021-12-16T13:35:52.338083Z;2021-11-11T11:29:34.253035Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/SystemPropertiesPerformance.exe;file;82944;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907628440;4096;168;0;0;2021-12-16T13:35:52.356288Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/SystemPropertiesProtection.exe;file;82944;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907629500;4096;168;0;0;2021-12-16T13:35:52.371490Z;2021-11-11T11:29:34.252028Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/SystemPropertiesRemote.exe;file;82944;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907630550;4096;168;0;0;2021-12-16T13:35:52.385778Z;2021-11-11T11:29:34.241020Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/SystemSettings.DataModel.dll;file;314192;33206;2021-01-15T09:27:09.572424Z;;;2785144255;2;0;18577348463487100;4096;616;0;0;2021-12-16T13:35:52.402502Z;2021-11-11T11:29:33.711338Z;2021-01-15T09:27:09.556770Z +C:/Windows/SysWOW64/SystemSupportInfo.dll;file;43008;33206;2021-01-15T09:27:16.374336Z;;;2785144255;2;0;5066549581410490;4096;88;0;0;2021-12-16T13:35:52.414803Z;2021-11-11T11:29:33.753227Z;2021-01-15T09:27:16.374336Z +C:/Windows/SysWOW64/SystemUWPLauncher.exe;file;66560;33206;2021-01-15T09:27:12.418251Z;;;2785144255;2;0;2533274790986890;4096;136;0;0;2021-12-16T13:35:52.427768Z;2021-11-11T11:29:33.732282Z;2021-01-15T09:27:12.418251Z +C:/Windows/SysWOW64/systray.exe;file;9728;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907638940;4096;24;0;0;2021-12-16T13:35:52.446611Z;2021-11-11T11:29:33.707349Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/t2embed.dll;file;138240;33206;2020-11-03T12:45:52.759716Z;;;2785144255;2;0;562949954397847;4096;272;0;0;2021-12-16T13:35:52.459580Z;2021-11-11T11:29:33.798140Z;2020-11-03T12:45:52.759716Z +C:/Windows/SysWOW64/takeown.exe;file;51712;33206;2019-12-07T09:10:05.491292Z;;;2785144255;2;0;1125899907628780;4096;104;0;0;2021-12-16T13:35:52.466080Z;2021-11-11T11:29:34.245008Z;2019-12-07T09:10:05.491292Z +C:/Windows/SysWOW64/tapi3.dll;file;850944;33206;2021-01-15T09:27:38.426446Z;;;2785144255;2;0;30680772462084100;4096;1664;0;0;2021-12-16T13:35:52.486215Z;2021-11-11T11:29:34.248Z;2021-01-15T09:27:38.426446Z +C:/Windows/SysWOW64/tapi32.dll;file;193536;33206;2020-11-03T12:46:03.319869Z;;;2785144255;2;0;562949954401090;4096;384;0;0;2021-12-16T13:35:52.501503Z;2021-11-11T11:29:34.249996Z;2020-11-03T12:46:03.319869Z +C:/Windows/SysWOW64/TapiMigPlugin.dll;file;51200;33206;2021-01-15T09:27:38.442067Z;;;2785144255;2;0;19140298416947200;4096;104;0;0;2021-12-16T13:35:52.506067Z;2021-11-11T11:29:34.252028Z;2021-01-15T09:27:38.442067Z +C:/Windows/SysWOW64/tapiperf.dll;file;9728;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907630610;4096;24;0;0;2021-12-16T13:35:52.526089Z;2021-11-11T11:29:34.245008Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/tapisrv.dll;file;251904;33206;2020-11-03T12:46:03.335493Z;;;2785144255;2;0;562949954401093;4096;496;0;0;2021-12-16T13:35:52.538025Z;2021-11-11T11:29:34.247003Z;2020-11-03T12:46:03.335493Z +C:/Windows/SysWOW64/TapiSysprep.dll;file;10240;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907628030;4096;24;0;0;2021-12-16T13:35:52.546113Z;2021-11-11T11:29:34.248Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/tapiui.dll;file;2560;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907630230;4096;8;0;0;2021-12-16T13:35:52.556139Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/TapiUnattend.exe;file;12800;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907628100;4096;32;0;0;2021-12-16T13:35:52.566154Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/tar.exe;file;43520;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907630170;4096;88;0;0;2021-12-16T13:35:52.576132Z;2021-11-11T11:29:34.203158Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/TaskApis.dll;file;299008;33206;2021-01-15T09:27:15.655721Z;;;2785144255;2;0;4785074604699800;4096;584;0;0;2021-12-16T13:35:52.596200Z;2021-11-11T11:29:33.754225Z;2021-01-15T09:27:15.655721Z +C:/Windows/SysWOW64/taskcomp.dll;file;366592;33206;2021-04-17T10:34:28.906344Z;;;2785144255;2;0;844424930951354;4096;720;0;0;2021-12-16T13:35:52.606076Z;2021-11-11T11:29:33.721311Z;2021-04-17T10:34:28.874441Z +C:/Windows/SysWOW64/taskkill.exe;file;74240;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907629890;4096;152;0;0;2021-12-16T13:35:52.626086Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:10:05.475470Z +C:/Windows/SysWOW64/tasklist.exe;file;79360;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907629380;4096;160;0;0;2021-12-16T13:35:52.656474Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:05.475470Z +C:/Windows/SysWOW64/Taskmgr.exe;file;964776;33206;2021-10-03T19:02:15.369536Z;;;2785144255;2;0;1688849861186950;4096;1888;0;0;2021-12-16T13:35:52.686115Z;2021-11-11T11:29:33.760208Z;2021-10-03T19:02:15.300816Z +C:/Windows/SysWOW64/Tasks;directory;0;16822;2019-12-07T09:31:04.476672Z;;;2785144255;1;0;2533274790716820;4096;0;0;0;2021-11-11T11:22:10.149657Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/taskschd.dll;file;509232;33206;2021-10-16T00:21:15.701105Z;;;2785144255;2;0;281474977857320;4096;1000;0;0;2021-12-16T13:35:52.686115Z;2021-11-11T11:29:33.726298Z;2021-10-16T00:21:15.694558Z +C:/Windows/SysWOW64/taskschd.msc;file;145059;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907637730;4096;288;0;0;2021-12-16T13:35:52.686115Z;2020-11-03T12:35:44.734138Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/TaskSchdPS.dll;file;36864;33206;2021-04-17T10:34:28.765775Z;;;2785144255;2;0;844424930951352;4096;72;0;0;2021-12-16T13:35:52.706074Z;2021-11-11T11:29:33.716325Z;2021-04-17T10:34:28.760741Z +C:/Windows/SysWOW64/tbauth.dll;file;56832;33206;2021-10-16T00:21:15.801349Z;;;2785144255;2;0;281474977857325;4096;112;0;0;2021-12-16T13:35:52.716494Z;2021-11-11T11:29:33.736273Z;2021-10-16T00:21:15.801349Z +C:/Windows/SysWOW64/tbs.dll;file;72312;33206;2021-04-17T10:34:28.072308Z;;;2785144255;2;0;844424930951347;4096;144;0;0;2021-12-16T13:35:52.726546Z;2021-11-11T11:29:33.763200Z;2021-04-17T10:34:28.062061Z +C:/Windows/SysWOW64/tcmsetup.exe;file;14848;33206;2019-12-07T09:10:04.162952Z;;;2785144255;2;0;1125899907628910;4096;32;0;0;2021-12-16T13:35:52.746444Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:10:04.162952Z +C:/Windows/SysWOW64/tcpbidi.xml;file;1673;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907638100;4096;8;0;0;2021-12-16T13:35:52.756661Z;2020-11-03T12:35:44.952836Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/tcpipcfg.dll;file;177152;33206;2021-01-15T09:27:21.412721Z;;;2785144255;2;0;50665495808537800;4096;352;0;0;2021-12-16T13:35:52.766535Z;2021-11-11T11:29:33.802096Z;2021-01-15T09:27:21.412721Z +C:/Windows/SysWOW64/tcpmib.dll;file;31744;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1407374884350130;4096;64;0;0;2021-12-16T13:35:52.776389Z;2021-11-11T11:29:33.811072Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/tcpmonui.dll;file;58368;33206;2019-12-07T09:09:30.897005Z;;;2785144255;2;0;1125899907635930;4096;120;0;0;2021-12-16T13:35:52.796085Z;2021-11-11T11:29:33.806085Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/TCPSVCS.EXE;file;10752;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907630140;4096;24;0;0;2021-12-16T13:35:52.806134Z;2021-11-11T11:29:34.216121Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/tdc.ocx;file;72704;33206;2021-01-15T09:27:35.084387Z;;;2785144255;2;0;54043195529068100;4096;144;0;0;2021-12-16T13:35:52.816519Z;2021-11-11T11:29:34.228087Z;2021-01-15T09:27:35.084387Z +C:/Windows/SysWOW64/tdh.dll;file;885248;33206;2021-11-11T11:29:00.605002Z;;;2785144255;2;0;281474977879233;4096;1736;0;0;2021-12-16T13:35:52.816519Z;2021-11-11T11:38:53.314574Z;2021-11-11T11:29:00.593035Z +C:/Windows/SysWOW64/TEEManagement.dll;file;259456;33206;2021-01-23T23:53:10Z;;;2785144255;2;0;32369622321966600;4096;512;0;0;2021-12-16T13:35:52.846287Z;2021-06-02T09:18:40.591472Z;2021-01-23T23:53:10Z +C:/Windows/SysWOW64/telephon.cpl;file;107520;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907628700;4096;216;0;0;2021-12-16T13:35:52.866162Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/TempSignedLicenseExchangeTask.dll;file;69632;33206;2020-11-03T12:45:48.713739Z;;;2785144255;2;0;562949954395896;4096;136;0;0;2021-12-16T13:35:52.881082Z;2021-11-11T11:29:33.733279Z;2020-11-03T12:45:48.713739Z +C:/Windows/SysWOW64/TenantRestrictionsPlugin.dll;file;77648;33206;2021-11-11T11:28:38.577381Z;;;2785144255;2;0;1125899908010260;4096;152;0;0;2021-12-16T13:35:52.901215Z;2021-11-11T11:38:50.749642Z;2021-11-11T11:28:38.575386Z +C:/Windows/SysWOW64/termmgr.dll;file;361472;33206;2021-01-15T09:27:38.457689Z;;;2785144255;2;0;20266198323789900;4096;712;0;0;2021-12-16T13:35:52.916080Z;2021-11-11T11:29:34.242017Z;2021-01-15T09:27:38.457689Z +C:/Windows/SysWOW64/tetheringclient.dll;file;61440;33206;2019-12-07T09:09:11.840403Z;;;2785144255;2;0;1125899907635670;4096;120;0;0;2021-12-16T13:35:52.926503Z;2021-11-11T11:29:33.702363Z;2019-12-07T09:09:11.840403Z +C:/Windows/SysWOW64/TextInputFramework.dll;file;753568;33206;2021-11-11T11:28:59.328365Z;;;2785144255;2;0;281474977879188;4096;1472;0;0;2021-12-16T13:35:52.926503Z;2021-11-11T11:38:52.348598Z;2021-11-11T11:28:59.309418Z +C:/Windows/SysWOW64/TextInputMethodFormatter.dll;file;1333760;33206;2021-10-03T19:02:10.205550Z;;;2785144255;2;0;1688849861186900;4096;2608;0;0;2021-12-16T13:35:52.978901Z;2021-12-16T12:06:18.171712Z;2021-10-03T19:02:10.127416Z +C:/Windows/SysWOW64/TextShaping.dll;file;611960;33206;2021-10-16T00:21:16.180270Z;;;2785144255;2;0;281474977857339;4096;1200;0;0;2021-12-16T13:35:52.978901Z;2021-11-11T11:29:33.791164Z;2021-10-16T00:21:16.164686Z +C:/Windows/SysWOW64/th-TH;directory;0;16822;2019-12-07T14:53:40.626174Z;;;2785144255;1;0;2533274790716830;4096;0;0;0;2021-12-16T13:36:01.190753Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/th-TH/comctl32.dll.mui;file;5632;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;4222124651330280;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:20.005149Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/th-TH/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619410;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.470887Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/th-TH/SyncRes.dll.mui;file;26112;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648720;4096;56;0;0;2019-12-07T14:53:37.875787Z;2020-11-03T12:35:52.498036Z;2019-12-07T14:53:37.875787Z +C:/Windows/SysWOW64/th-TH/windows.ui.xaml.dll.mui;file;16384;33206;2019-12-07T09:09:02.067275Z;;;2785144255;4;0;1125899907637630;4096;32;0;0;2019-12-07T09:09:02.067275Z;2020-11-03T12:35:44.640411Z;2019-12-07T09:09:02.067275Z +C:/Windows/SysWOW64/themecpl.dll;file;345600;33206;2020-11-03T12:46:03.351083Z;;;2785144255;2;0;562949954401095;4096;680;0;0;2021-12-16T13:35:52.996052Z;2021-11-11T11:29:34.242017Z;2020-11-03T12:46:03.351083Z +C:/Windows/SysWOW64/themeui.dll;file;325632;33206;2021-01-15T09:27:10.103793Z;;;2785144255;2;0;9288674232038780;4096;640;0;0;2021-12-16T13:35:53.006139Z;2021-11-11T11:29:33.715328Z;2021-01-15T09:27:10.103793Z +C:/Windows/SysWOW64/threadpoolwinrt.dll;file;54784;33206;2021-01-15T09:27:16.499299Z;;;2785144255;2;0;5910974511542470;4096;112;0;0;2021-12-16T13:35:53.026197Z;2021-11-11T11:29:33.785173Z;2021-01-15T09:27:16.499299Z +C:/Windows/SysWOW64/thumbcache.dll;file;289608;33206;2021-10-03T19:02:04.371603Z;;;2785144255;2;0;1688849861186660;4096;568;0;0;2021-12-16T13:35:53.046204Z;2021-11-11T11:29:33.737270Z;2021-10-03T19:02:04.353844Z +C:/Windows/SysWOW64/ThumbnailExtractionHost.exe;file;28160;33206;2021-01-15T09:27:21.827898Z;;;2785144255;2;0;15199648742995200;4096;56;0;0;2021-12-16T13:35:53.056100Z;2021-11-11T11:29:33.807083Z;2021-01-15T09:27:21.827898Z +C:/Windows/SysWOW64/TileDataRepository.dll;file;438784;33206;2021-07-07T12:58:44.720980Z;;;2785144255;2;0;281474977790756;4096;864;0;0;2021-12-16T13:35:53.071008Z;2021-11-11T11:29:33.738267Z;2021-07-07T12:58:44.720980Z +C:/Windows/SysWOW64/timedate.cpl;file;182272;33206;2021-01-15T09:27:09.603633Z;;;2785144255;2;0;27866022694938800;4096;360;0;0;2021-12-16T13:35:53.086216Z;2021-11-11T11:29:33.705354Z;2021-01-15T09:27:09.603633Z +C:/Windows/SysWOW64/TimeDateMUICallback.dll;file;9216;33206;2019-12-07T09:09:29.114855Z;;;2785144255;2;0;1125899907638910;4096;24;0;0;2021-12-16T13:35:53.099115Z;2021-11-11T11:29:30.968531Z;2019-12-07T09:09:29.114855Z +C:/Windows/SysWOW64/timeout.exe;file;25088;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907628670;4096;56;0;0;2021-12-16T13:35:53.111164Z;2021-11-11T11:29:34.248997Z;2019-12-07T09:10:05.475470Z +C:/Windows/SysWOW64/tlscsp.dll;file;35840;33206;2019-12-07T09:10:04.225445Z;;;2785144255;2;0;1125899907628720;4096;72;0;0;2021-12-16T13:35:53.126180Z;2021-11-11T11:29:34.248997Z;2019-12-07T09:10:04.225445Z +C:/Windows/SysWOW64/tokenbinding.dll;file;39936;33206;2020-11-03T12:45:51.947407Z;;;2785144255;2;0;562949954397215;4096;80;0;0;2021-12-16T13:35:53.141229Z;2021-11-11T11:29:33.759211Z;2020-11-03T12:45:51.947407Z +C:/Windows/SysWOW64/TokenBroker.dll;file;1239040;33206;2021-10-16T00:21:15.794841Z;;;2785144255;2;0;281474977857324;4096;2424;0;0;2021-12-16T13:35:53.156344Z;2021-11-11T11:29:33.741259Z;2021-10-16T00:21:15.763599Z +C:/Windows/SysWOW64/TokenBrokerCookies.exe;file;36352;33206;2021-10-16T00:21:15.801349Z;;;2785144255;2;0;281474977857326;4096;72;0;0;2021-12-16T13:35:53.186157Z;2021-11-11T11:29:33.735274Z;2021-10-16T00:21:15.801349Z +C:/Windows/SysWOW64/TokenBrokerUI.dll;file;58880;33206;2021-10-16T00:21:15.816975Z;;;2785144255;2;0;281474977857327;4096;120;0;0;2021-12-16T13:35:53.199182Z;2021-11-11T11:29:33.727295Z;2021-10-16T00:21:15.816975Z +C:/Windows/SysWOW64/tpm.msc;file;144862;33206;2019-12-07T09:09:13.524584Z;;;2785144255;2;0;1125899907635410;4096;288;0;0;2021-12-16T13:35:53.206292Z;2020-11-03T12:35:43.093859Z;2019-12-07T09:09:13.524584Z +C:/Windows/SysWOW64/TpmCertResources.dll;file;3584;33206;2021-11-11T11:28:57.118049Z;;;2785144255;2;0;281474977878948;4096;8;0;0;2021-12-16T13:35:53.206292Z;2021-11-11T11:38:53.193110Z;2021-11-11T11:28:57.117065Z +C:/Windows/SysWOW64/tpmcompc.dll;file;41984;33206;2019-12-07T09:09:13.524584Z;;;2785144255;2;0;1407374884348600;4096;88;0;0;2021-12-16T13:35:53.226513Z;2021-11-11T11:29:33.710341Z;2019-12-07T09:09:13.524584Z +C:/Windows/SysWOW64/TpmCoreProvisioning.dll;file;921600;33206;2021-11-11T11:28:57.109079Z;;;2785144255;2;0;281474977878947;4096;1800;0;0;2021-12-16T13:35:53.241081Z;2021-11-11T11:38:50.749642Z;2021-11-11T11:28:57.092084Z +C:/Windows/SysWOW64/TpmInit.exe;file;62976;33206;2019-12-07T09:09:13.524584Z;;;2785144255;2;0;1125899907636740;4096;128;0;0;2021-12-16T13:35:53.276421Z;2021-11-11T11:29:33.710341Z;2019-12-07T09:09:13.524584Z +C:/Windows/SysWOW64/TpmTool.exe;file;223744;33206;2021-11-11T11:28:57.124996Z;;;2785144255;2;0;281474977878949;4096;440;0;0;2021-12-16T13:35:53.299181Z;2021-11-11T11:38:50.310049Z;2021-11-11T11:28:57.121053Z +C:/Windows/SysWOW64/tquery.dll;file;2602496;33206;2021-10-03T19:02:10.026704Z;;;2785144255;2;0;1688849861186900;4096;5088;0;0;2021-12-16T13:35:53.306259Z;2021-11-11T11:29:33.742257Z;2021-10-03T19:02:09.832242Z +C:/Windows/SysWOW64/tr-TR;directory;0;16822;2021-06-10T14:11:37.586068Z;;;2785144255;1;0;2533274790716830;4096;8;0;0;2021-12-16T13:36:01.190753Z;2021-06-10T14:11:37.586068Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/tr-TR/APHostRes.dll.mui;file;15360;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648820;4096;32;0;0;2019-12-07T14:53:37.766934Z;2020-11-03T12:35:52.544900Z;2019-12-07T14:53:37.766934Z +C:/Windows/SysWOW64/tr-TR/cdosys.dll.mui;file;48128;33206;2019-12-07T09:09:30.442382Z;;;2785144255;2;0;6755399441725390;4096;96;0;0;2019-12-07T09:09:30.442382Z;2020-11-03T12:35:19.927041Z;2019-12-07T09:09:30.442382Z +C:/Windows/SysWOW64/tr-TR/comctl32.dll.mui;file;6144;33206;2021-06-10T14:01:41.700569Z;;;2785144255;2;0;281474977765216;4096;16;0;0;2021-06-10T14:01:41.700569Z;2021-06-10T14:11:37.586068Z;2021-06-10T14:01:41.700569Z +C:/Windows/SysWOW64/tr-TR/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619350;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.455264Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/tr-TR/SyncRes.dll.mui;file;28160;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648520;4096;56;0;0;2019-12-07T14:53:37.875787Z;2020-11-03T12:35:52.404309Z;2019-12-07T14:53:37.875787Z +C:/Windows/SysWOW64/tr-TR/windows.ui.xaml.dll.mui;file;16384;33206;2019-12-07T09:09:02.067275Z;;;2785144255;4;0;1125899907639450;4096;32;0;0;2019-12-07T09:09:02.067275Z;2020-11-03T12:35:45.593318Z;2019-12-07T09:09:02.067275Z +C:/Windows/SysWOW64/tracerpt.exe;file;376320;33206;2020-11-03T12:46:02.694988Z;;;2785144255;2;0;562949954400525;4096;736;0;0;2021-12-16T13:35:53.321042Z;2021-11-11T11:29:34.239061Z;2020-11-03T12:46:02.694988Z +C:/Windows/SysWOW64/TRACERT.EXE;file;15360;33206;2019-12-07T09:09:57.804259Z;;;2785144255;2;0;1125899907628930;4096;32;0;0;2021-12-16T13:35:53.326145Z;2021-11-11T11:29:34.214092Z;2019-12-07T09:09:57.804259Z +C:/Windows/SysWOW64/traffic.dll;file;35328;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907638160;4096;72;0;0;2021-12-16T13:35:53.336414Z;2021-11-11T11:29:33.802096Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/tree.com;file;17920;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907629480;4096;40;0;0;2021-12-16T13:35:53.346473Z;2020-11-03T12:35:39.094568Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/TrustedSignalCredProv.dll;file;88576;33206;2021-01-15T09:27:19.409569Z;;;2785144255;2;0;11540474045756100;4096;176;0;0;2021-12-16T13:35:53.369273Z;2021-11-11T11:29:33.788164Z;2021-01-15T09:27:19.409569Z +C:/Windows/SysWOW64/tsbyuv.dll;file;13312;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907629220;4096;32;0;0;2021-12-16T13:35:53.386030Z;2021-11-11T11:29:34.244011Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/tsgqec.dll;file;54784;33206;2021-11-11T11:29:10.227945Z;;;2785144255;2;0;281474977879591;4096;112;0;0;2021-12-16T13:35:53.406222Z;2021-11-11T11:38:51.301528Z;2021-11-11T11:29:10.225950Z +C:/Windows/SysWOW64/tsmf.dll;file;344520;33206;2021-01-15T09:27:38.692008Z;;;2785144255;2;0;14073748836155500;4096;680;0;0;2021-12-16T13:35:53.426396Z;2021-11-11T11:29:34.244011Z;2021-01-15T09:27:38.692008Z +C:/Windows/SysWOW64/TSpkg.dll;file;120320;33206;2021-11-11T11:29:01.263803Z;;;2785144255;2;0;281474977879254;4096;240;0;0;2021-12-16T13:35:53.446216Z;2021-11-11T11:38:52.397055Z;2021-11-11T11:29:01.260855Z +C:/Windows/SysWOW64/TSTheme.exe;file;56320;33206;2021-01-15T09:27:38.738873Z;;;2785144255;2;0;14355223812866100;4096;112;0;0;2021-12-16T13:35:53.486340Z;2021-11-11T11:29:34.241020Z;2021-01-15T09:27:38.738873Z +C:/Windows/SysWOW64/TSWorkspace.dll;file;984064;33206;2021-01-15T09:27:10.197497Z;;;2785144255;2;0;21955048184018700;4096;1928;0;0;2021-12-16T13:35:53.526198Z;2021-11-11T11:29:33.727295Z;2021-01-15T09:27:10.197497Z +C:/Windows/SysWOW64/ttdinject.exe;file;212928;33206;2019-12-07T09:09:17.977976Z;;;2785144255;2;0;1125899907637780;4096;416;0;0;2021-12-16T13:35:53.566407Z;2021-11-11T11:29:33.753227Z;2019-12-07T09:09:17.977976Z +C:/Windows/SysWOW64/ttdloader.dll;file;15176;33206;2019-12-07T09:09:17.977976Z;;;2785144255;2;0;1125899907638330;4096;32;0;0;2021-12-16T13:35:53.576184Z;2021-11-11T11:29:33.754225Z;2019-12-07T09:09:17.977976Z +C:/Windows/SysWOW64/ttdplm.dll;file;54072;33206;2019-12-07T09:09:17.977976Z;;;2785144255;2;0;1125899907637830;4096;112;0;0;2021-12-16T13:35:53.586211Z;2021-11-11T11:29:33.749237Z;2019-12-07T09:09:17.977976Z +C:/Windows/SysWOW64/ttdrecord.dll;file;447256;33206;2019-12-07T09:09:17.977976Z;;;2785144255;2;0;1125899907636080;4096;880;0;0;2021-12-16T13:35:53.611242Z;2021-11-11T11:29:33.756219Z;2019-12-07T09:09:17.977976Z +C:/Windows/SysWOW64/ttdrecordcpu.dll;file;1312072;33206;2019-12-07T09:09:17.977976Z;;;2785144255;2;0;1125899907636110;4096;2568;0;0;2021-12-16T13:35:53.631047Z;2021-11-11T11:29:33.755222Z;2019-12-07T09:09:17.977976Z +C:/Windows/SysWOW64/TtlsAuth.dll;file;193536;33206;2019-12-07T09:09:11.911069Z;;;2785144255;2;0;1125899907638270;4096;384;0;0;2021-12-16T13:35:53.646378Z;2021-11-11T11:29:33.705354Z;2019-12-07T09:09:11.911069Z +C:/Windows/SysWOW64/TtlsCfg.dll;file;163328;33206;2019-12-07T09:09:11.911069Z;;;2785144255;2;0;1125899907639080;4096;320;0;0;2021-12-16T13:35:53.666113Z;2021-11-11T11:29:33.704357Z;2019-12-07T09:09:11.911069Z +C:/Windows/SysWOW64/TtlsExt.dll;file;148480;33206;2021-01-15T09:27:19.518942Z;;;2785144255;2;0;19984723347075800;4096;296;0;0;2021-12-16T13:35:53.676167Z;2021-11-11T11:29:33.798140Z;2021-01-15T09:27:19.518942Z +C:/Windows/SysWOW64/tttracer.exe;file;71496;33206;2021-01-15T09:27:15.358948Z;;;2785144255;2;0;3940649674560850;4096;144;0;0;2021-12-16T13:35:53.776325Z;2021-11-11T11:29:33.747242Z;2021-01-15T09:27:15.358948Z +C:/Windows/SysWOW64/tvratings.dll;file;30208;33206;2021-01-15T09:27:38.770115Z;;;2785144255;2;0;11540474045759600;4096;64;0;0;2021-12-16T13:35:53.786217Z;2021-11-11T11:29:34.247003Z;2021-01-15T09:27:38.770115Z +C:/Windows/SysWOW64/twext.dll;file;150016;33206;2021-04-17T10:34:48.780480Z;;;2785144255;2;0;844424930951685;4096;296;0;0;2021-12-16T13:35:53.806224Z;2021-11-11T11:29:33.806085Z;2021-04-17T10:34:48.765916Z +C:/Windows/SysWOW64/twinapi.appcore.dll;file;1634208;33206;2021-01-15T09:27:16.530545Z;;;2785144255;2;0;7599824371806400;4096;3192;0;0;2021-12-16T13:35:53.806224Z;2021-11-11T11:29:33.747242Z;2021-01-15T09:27:16.499299Z +C:/Windows/SysWOW64/twinapi.dll;file;512000;33206;2021-10-03T19:02:01.132948Z;;;2785144255;2;0;1688849861186630;4096;1000;0;0;2021-12-16T13:35:53.816021Z;2021-11-11T11:29:33.718319Z;2021-10-03T19:02:01.096842Z +C:/Windows/SysWOW64/twinui.appcore.dll;file;502272;33206;2021-06-10T14:01:38.122020Z;;;2785144255;2;0;281474977764855;4096;984;0;0;2021-12-16T13:35:53.831484Z;2021-11-11T11:29:33.733279Z;2021-06-10T14:01:38.106399Z +C:/Windows/SysWOW64/twinui.dll;file;4783104;33206;2021-11-11T11:28:57.408975Z;;;2785144255;2;0;281474977878954;4096;9344;0;0;2021-12-16T13:35:53.856124Z;2021-11-11T11:38:51.180258Z;2021-11-11T11:28:57.275661Z +C:/Windows/SysWOW64/txflog.dll;file;94208;33206;2019-12-07T09:09:22.223955Z;;;2785144255;2;0;1125899907636020;4096;184;0;0;2021-12-16T13:35:53.876015Z;2021-11-11T11:29:33.773174Z;2019-12-07T09:09:22.223955Z +C:/Windows/SysWOW64/txfw32.dll;file;11776;33206;2019-12-07T09:09:22.146381Z;;;2785144255;2;0;1125899907637970;4096;24;0;0;2021-12-16T13:35:53.886160Z;2021-11-11T11:29:33.774171Z;2019-12-07T09:09:22.146381Z +C:/Windows/SysWOW64/typelib.dll;file;8960;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907635490;4096;24;0;0;2021-12-16T13:35:53.886160Z;2021-11-11T11:29:33.800102Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/typeperf.exe;file;41984;33206;2020-11-03T12:46:02.694988Z;;;2785144255;2;0;562949954400524;4096;88;0;0;2021-12-16T13:35:53.899977Z;2021-11-11T11:29:34.234037Z;2020-11-03T12:46:02.694988Z +C:/Windows/SysWOW64/tzautoupdate.dll;file;73728;33206;2021-01-15T09:27:16.561792Z;;;2785144255;2;0;13229323906019500;4096;144;0;0;2021-12-16T13:35:53.916089Z;2021-11-11T11:29:33.757217Z;2021-01-15T09:27:16.561792Z +C:/Windows/SysWOW64/tzres.dll;file;2560;33206;2021-04-17T10:34:40.622182Z;;;2785144255;2;0;844424930951437;4096;8;0;0;2021-12-16T13:35:53.920322Z;2021-11-11T11:29:33.777163Z;2021-04-17T10:34:40.618200Z +C:/Windows/SysWOW64/tzutil.exe;file;48640;33206;2019-12-07T09:09:13.536352Z;;;2785144255;2;0;1125899907637480;4096;96;0;0;2021-12-16T13:35:53.933651Z;2021-11-11T11:29:33.724303Z;2019-12-07T09:09:13.536352Z +C:/Windows/SysWOW64/ucmhc.dll;file;49664;33206;2021-01-15T09:27:38.488931Z;;;2785144255;2;0;12947848929312800;4096;104;0;0;2021-12-16T13:35:53.948612Z;2021-11-11T11:29:34.247003Z;2021-01-15T09:27:38.488931Z +C:/Windows/SysWOW64/ucrtbase.dll;file;1181208;33206;2021-02-11T15:05:14.879630Z;;;2785144255;2;0;562949954318949;4096;2312;0;0;2021-12-16T13:35:53.948612Z;2021-11-11T11:29:33.763200Z;2021-02-11T15:05:14.848432Z +C:/Windows/SysWOW64/ucrtbase_clr0400.dll;file;702400;33206;2019-12-07T09:10:48.633473Z;;;2785144255;2;0;1125899907626840;4096;1376;0;0;2021-12-16T13:35:53.949293Z;2021-11-11T11:29:31.974018Z;2019-12-07T09:10:48.633473Z +C:/Windows/SysWOW64/udhisapi.dll;file;58368;33206;2021-03-11T12:12:28.789727Z;;;2785144255;2;0;844424931104562;4096;120;0;0;2021-12-16T13:35:53.963012Z;2021-11-11T11:29:34.198164Z;2021-03-11T12:12:28.789727Z +C:/Windows/SysWOW64/UevCustomActionTypes.tlb;file;3420;33206;2019-12-07T09:10:22.585651Z;;;2785144255;2;0;1125899907621400;4096;8;0;0;2021-12-16T13:35:53.966209Z;2021-12-16T12:06:18.143713Z;2019-12-07T09:10:22.585651Z +C:/Windows/SysWOW64/uexfat.dll;file;92160;33206;2021-06-10T14:01:40.495980Z;;;2785144255;2;0;281474977765160;4096;184;0;0;2021-12-16T13:35:53.977968Z;2021-11-11T11:29:33.773174Z;2021-06-10T14:01:40.495980Z +C:/Windows/SysWOW64/ufat.dll;file;122368;33206;2021-06-10T14:01:40.495980Z;;;2785144255;2;0;281474977765161;4096;240;0;0;2021-12-16T13:35:53.991628Z;2021-11-11T11:29:34.200158Z;2021-06-10T14:01:40.495980Z +C:/Windows/SysWOW64/UiaManager.dll;file;516096;33206;2021-01-15T09:27:13.011829Z;;;2785144255;2;0;2533274790986930;4096;1008;0;0;2021-12-16T13:35:54.007590Z;2021-11-11T11:29:33.737270Z;2021-01-15T09:27:13.011829Z +C:/Windows/SysWOW64/UIAnimation.dll;file;227840;33206;2021-01-15T09:27:12.886858Z;;;2785144255;2;0;2533274790986920;4096;448;0;0;2021-12-16T13:35:54.008585Z;2021-11-11T11:29:33.781152Z;2021-01-15T09:27:12.886858Z +C:/Windows/SysWOW64/UIAutomationCore.dll;file;2542080;33206;2021-10-16T00:21:16.048705Z;;;2785144255;2;0;281474977857334;4096;4968;0;0;2021-12-16T13:35:54.008585Z;2021-11-11T11:29:33.814066Z;2021-10-16T00:21:15.979705Z +C:/Windows/SysWOW64/uicom.dll;file;35840;33206;2021-01-15T09:27:38.832600Z;;;2785144255;2;0;13510798882734100;4096;72;0;0;2021-12-16T13:35:54.021551Z;2021-11-11T11:29:34.245008Z;2021-01-15T09:27:38.832600Z +C:/Windows/SysWOW64/UIManagerBrokerps.dll;file;10752;33206;2019-12-07T09:09:13.677341Z;;;2785144255;2;0;1407374884348560;4096;24;0;0;2021-12-16T13:35:54.033791Z;2021-11-11T11:29:33.728293Z;2019-12-07T09:09:13.677341Z +C:/Windows/SysWOW64/uireng.dll;file;247808;33206;2019-12-07T09:09:21.756153Z;;;2785144255;2;0;1125899907639040;4096;488;0;0;2021-12-16T13:35:54.054737Z;2021-11-11T11:29:33.778160Z;2019-12-07T09:09:21.756153Z +C:/Windows/SysWOW64/UIRibbon.dll;file;3381760;33206;2019-12-07T09:10:32.852512Z;;;2785144255;2;0;1125899907642270;4096;6608;0;0;2021-12-16T13:35:54.084784Z;2021-11-11T11:29:33.655487Z;2019-12-07T09:10:32.852512Z +C:/Windows/SysWOW64/uk-UA;directory;0;16822;2021-06-10T14:11:37.586068Z;;;2785144255;1;0;2533274790716830;4096;0;0;0;2021-12-16T13:36:01.190753Z;2021-06-10T14:11:37.586068Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/uk-UA/comctl32.dll.mui;file;6144;33206;2021-06-10T14:01:41.684884Z;;;2785144255;2;0;281474977765215;4096;16;0;0;2021-06-10T14:01:41.684884Z;2021-06-10T14:11:37.586068Z;2021-06-10T14:01:41.684884Z +C:/Windows/SysWOW64/uk-UA/quickassist.exe.mui;file;3584;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619320;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.439645Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/uk-UA/SyncRes.dll.mui;file;30208;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648620;4096;64;0;0;2019-12-07T14:53:37.875787Z;2020-11-03T12:35:52.451173Z;2019-12-07T14:53:37.875787Z +C:/Windows/SysWOW64/uk-UA/windows.ui.xaml.dll.mui;file;18432;33206;2019-12-07T09:09:02.067275Z;;;2785144255;4;0;1125899907634810;4096;40;0;0;2019-12-07T09:09:02.067275Z;2020-11-03T12:35:42.718946Z;2019-12-07T09:09:02.067275Z +C:/Windows/SysWOW64/ulib.dll;file;149816;33206;2021-10-16T00:21:17.114410Z;;;2785144255;2;0;281474977857367;4096;296;0;0;2021-12-16T13:35:54.101729Z;2021-11-11T11:29:33.776165Z;2021-10-16T00:21:17.098791Z +C:/Windows/SysWOW64/umdmxfrm.dll;file;16384;33206;2019-12-07T09:10:04.257180Z;;;2785144255;2;0;1125899907630270;4096;32;0;0;2021-12-16T13:35:54.114434Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:04.257180Z +C:/Windows/SysWOW64/umpdc.dll;file;47472;33206;2020-11-03T12:45:50.166603Z;;;2785144255;2;0;562949954396470;4096;96;0;0;2021-12-16T13:35:54.114434Z;2021-11-11T11:29:33.773174Z;2020-11-03T12:45:50.166603Z +C:/Windows/SysWOW64/unenrollhook.dll;file;61440;33206;2020-11-03T12:45:52.197371Z;;;2785144255;2;0;1688849861239900;4096;120;0;0;2021-12-16T13:35:54.129015Z;2021-11-11T11:29:33.783178Z;2020-11-03T12:45:52.197371Z +C:/Windows/SysWOW64/unimdm.tsp;file;252928;33206;2019-12-07T09:10:04.257180Z;;;2785144255;2;0;1125899907630100;4096;496;0;0;2021-12-16T13:35:54.150001Z;2021-11-11T11:29:34.248Z;2019-12-07T09:10:04.257180Z +C:/Windows/SysWOW64/unimdmat.dll;file;61440;33206;2019-12-07T09:10:04.257180Z;;;2785144255;2;0;1125899907629130;4096;120;0;0;2021-12-16T13:35:54.163879Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:10:04.257180Z +C:/Windows/SysWOW64/uniplat.dll;file;17920;33206;2019-12-07T09:10:04.257180Z;;;2785144255;2;0;1125899907629420;4096;40;0;0;2021-12-16T13:35:54.176546Z;2021-11-11T11:29:34.251028Z;2019-12-07T09:10:04.257180Z +C:/Windows/SysWOW64/Unistore.dll;file;962048;33206;2021-01-15T09:27:15.546384Z;;;2785144255;2;0;16888498603252000;4096;1880;0;0;2021-12-16T13:35:54.193644Z;2021-11-11T11:29:33.756219Z;2021-01-15T09:27:15.546384Z +C:/Windows/SysWOW64/unlodctr.exe;file;34304;33206;2019-12-07T09:09:26.130491Z;;;2785144255;2;0;1125899907638740;4096;72;0;0;2021-12-16T13:35:54.205615Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:26.130491Z +C:/Windows/SysWOW64/unregmp2.exe;file;214528;33206;2019-12-06T19:47:00Z;;;2785144255;2;0;1125899907619620;4096;424;0;0;2021-12-16T13:35:54.246099Z;2021-11-15T13:07:18.033808Z;2019-12-07T14:52:21.126178Z +C:/Windows/SysWOW64/untfs.dll;file;514560;33206;2021-10-16T00:21:17.136537Z;;;2785144255;2;0;281474977857370;4096;1008;0;0;2021-12-16T13:35:54.256181Z;2021-11-11T11:29:34.199161Z;2021-10-16T00:21:17.136537Z +C:/Windows/SysWOW64/updatepolicy.dll;file;182784;33206;2021-10-16T00:21:16.882606Z;;;2785144255;2;0;281474977857358;4096;360;0;0;2021-12-16T13:35:54.276460Z;2021-11-11T11:29:33.749237Z;2021-10-16T00:21:16.882606Z +C:/Windows/SysWOW64/upnp.dll;file;352768;33206;2021-07-07T12:58:51.811553Z;;;2785144255;2;0;281474977791101;4096;696;0;0;2021-12-16T13:35:54.286479Z;2021-11-11T11:29:34.199161Z;2021-07-07T12:58:51.811553Z +C:/Windows/SysWOW64/upnpcont.exe;file;35328;33206;2021-03-11T12:12:28.789727Z;;;2785144255;2;0;844424931104561;4096;72;0;0;2021-12-16T13:35:54.300701Z;2021-11-11T11:29:34.200158Z;2021-03-11T12:12:28.789727Z +C:/Windows/SysWOW64/upnphost.dll;file;327680;33206;2021-03-11T12:12:28.783221Z;;;2785144255;2;0;844424931104560;4096;640;0;0;2021-12-16T13:35:54.321126Z;2021-11-11T11:29:34.198164Z;2021-03-11T12:12:28.767600Z +C:/Windows/SysWOW64/uReFS.dll;file;690688;33206;2021-11-11T11:29:00.198142Z;;;2785144255;2;0;281474977879212;4096;1352;0;0;2021-12-16T13:35:54.336155Z;2021-11-11T11:38:51.170185Z;2021-11-11T11:29:00.185135Z +C:/Windows/SysWOW64/uReFSv1.dll;file;418816;33206;2019-12-07T09:09:22.161729Z;;;2785144255;2;0;21110623253736600;4096;824;0;0;2021-12-16T13:35:54.351364Z;2021-11-11T11:29:33.770182Z;2019-12-07T09:09:22.161729Z +C:/Windows/SysWOW64/ureg.dll;file;24064;33206;2019-12-07T09:09:57.897598Z;;;2785144255;2;0;1125899907630500;4096;48;0;0;2021-12-16T13:35:54.366453Z;2021-11-11T11:29:34.213094Z;2019-12-07T09:09:57.897598Z +C:/Windows/SysWOW64/url.dll;file;233472;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907630350;4096;456;0;0;2021-12-16T13:35:54.386014Z;2021-11-11T11:29:34.220113Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/urlmon.dll;file;1678848;33206;2021-11-11T11:29:00.848184Z;;;2785144255;2;0;281474977879238;4096;3280;0;0;2021-12-16T13:35:54.386085Z;2021-11-11T11:38:50.356951Z;2021-11-11T11:29:00.813277Z +C:/Windows/SysWOW64/usbceip.dll;file;92672;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907637300;4096;184;0;0;2021-12-16T13:35:54.396153Z;2021-11-11T11:29:33.723306Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/usbperf.dll;file;12288;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907639080;4096;24;0;0;2021-12-16T13:35:54.406308Z;2021-11-11T11:29:33.729290Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/usbui.dll;file;75776;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907635050;4096;152;0;0;2021-12-16T13:35:54.421202Z;2021-11-11T11:29:33.720314Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/user.exe;file;4608;33206;2021-06-10T14:01:41.445002Z;;;2785144255;2;0;281474977765208;4096;16;0;0;2021-12-16T13:35:54.421202Z;2021-11-11T11:29:33.790129Z;2021-06-10T14:01:41.445002Z +C:/Windows/SysWOW64/user32.dll;file;1694616;33206;2021-11-11T11:28:59.941725Z;;;2785144255;2;0;281474977879198;4096;3312;0;0;2021-12-16T13:35:54.426209Z;2021-11-11T11:38:52.338372Z;2021-11-11T11:28:59.917787Z +C:/Windows/SysWOW64/UserAccountBroker.exe;file;39184;33206;2021-01-15T09:27:10.447437Z;;;2785144255;2;0;7599824371775770;4096;80;0;0;2021-12-16T13:35:54.436171Z;2021-11-11T11:29:33.724303Z;2021-01-15T09:27:10.447437Z +C:/Windows/SysWOW64/UserAccountControlSettings.dll;file;99328;33206;2020-11-03T12:45:52.822231Z;;;2785144255;2;0;562949954397853;4096;200;0;0;2021-12-16T13:35:54.446467Z;2021-11-11T11:29:33.784180Z;2020-11-03T12:45:52.822231Z +C:/Windows/SysWOW64/UserAccountControlSettings.exe;file;89600;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907638400;4096;176;0;0;2021-12-16T13:35:54.466133Z;2021-11-11T11:29:33.796165Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/useractivitybroker.dll;file;151552;33206;2021-01-15T09:27:13.339902Z;;;2785144255;2;0;14918173766255800;4096;296;0;0;2021-12-16T13:35:54.486341Z;2021-11-11T11:29:33.738267Z;2021-01-15T09:27:13.339902Z +C:/Windows/SysWOW64/usercpl.dll;file;590848;33206;2021-01-15T09:27:10.431814Z;;;2785144255;2;0;19421773393623200;4096;1160;0;0;2021-12-16T13:35:54.508655Z;2021-11-11T11:29:33.717322Z;2021-01-15T09:27:10.431814Z +C:/Windows/SysWOW64/UserDataAccessRes.dll;file;8192;33206;2019-12-07T09:09:18.005520Z;;;2785144255;2;0;1125899907634940;4096;16;0;0;2021-12-16T13:35:54.512792Z;2021-11-11T11:29:33.746245Z;2019-12-07T09:09:18.005520Z +C:/Windows/SysWOW64/UserDataAccountApis.dll;file;331264;33206;2021-01-15T09:27:15.655721Z;;;2785144255;2;0;9007199255359640;4096;648;0;0;2021-12-16T13:35:54.526729Z;2021-11-11T11:29:33.757217Z;2021-01-15T09:27:15.640142Z +C:/Windows/SysWOW64/UserDataLanguageUtil.dll;file;36352;33206;2019-12-07T09:09:18.020777Z;;;2785144255;2;0;1125899907636340;4096;72;0;0;2021-12-16T13:35:54.538728Z;2021-11-11T11:29:33.745249Z;2019-12-07T09:09:18.005520Z +C:/Windows/SysWOW64/UserDataPlatformHelperUtil.dll;file;50688;33206;2021-01-15T09:27:15.686963Z;;;2785144255;2;0;13510798882730100;4096;104;0;0;2021-12-16T13:35:54.551661Z;2021-11-11T11:29:33.746245Z;2021-01-15T09:27:15.686963Z +C:/Windows/SysWOW64/UserDataTimeUtil.dll;file;96256;33206;2021-07-07T12:58:44.736602Z;;;2785144255;2;0;281474977790757;4096;192;0;0;2021-12-16T13:35:54.565623Z;2021-11-11T11:29:33.756219Z;2021-07-07T12:58:44.736602Z +C:/Windows/SysWOW64/UserDataTypeHelperUtil.dll;file;37888;33206;2019-12-07T09:09:18.020777Z;;;2785144255;2;0;1125899907638530;4096;80;0;0;2021-12-16T13:35:54.577592Z;2021-11-11T11:29:33.747242Z;2019-12-07T09:09:18.020777Z +C:/Windows/SysWOW64/UserDeviceRegistration.dll;file;163328;33206;2021-10-03T19:02:04.606216Z;;;2785144255;2;0;1688849861186660;4096;320;0;0;2021-12-16T13:35:54.592554Z;2021-11-15T13:07:18.049433Z;2021-10-03T19:02:04.599478Z +C:/Windows/SysWOW64/UserDeviceRegistration.Ngc.dll;file;273408;33206;2021-10-03T19:02:04.584869Z;;;2785144255;2;0;1688849861186660;4096;536;0;0;2021-12-16T13:35:54.607512Z;2021-11-15T13:07:18.049433Z;2021-10-03T19:02:04.566340Z +C:/Windows/SysWOW64/userenv.dll;file;141008;33206;2020-11-03T12:45:51.963028Z;;;2785144255;2;0;562949954397217;4096;280;0;0;2021-12-16T13:35:54.607512Z;2021-11-11T11:29:33.772176Z;2020-11-03T12:45:51.947407Z +C:/Windows/SysWOW64/userinit.exe;file;28160;33206;2019-12-07T09:09:26.005823Z;;;2785144255;2;0;1125899907635460;4096;56;0;0;2021-12-16T13:35:54.622472Z;2021-11-11T11:29:33.774171Z;2019-12-07T09:09:26.005823Z +C:/Windows/SysWOW64/userinitext.dll;file;16896;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907638140;4096;40;0;0;2021-12-16T13:35:54.633478Z;2021-11-11T11:29:33.794117Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/UserLanguageProfileCallback.dll;file;45056;33206;2020-11-03T12:45:49.213620Z;;;2785144255;2;0;562949954395937;4096;88;0;0;2021-12-16T13:35:54.647412Z;2021-11-11T11:29:33.756219Z;2020-11-03T12:45:49.213620Z +C:/Windows/SysWOW64/usermgrcli.dll;file;58848;33206;2020-11-03T12:45:52.134862Z;;;2785144255;2;0;844424931107914;4096;120;0;0;2021-12-16T13:35:54.661404Z;2021-11-11T11:29:33.797110Z;2020-11-03T12:45:52.134862Z +C:/Windows/SysWOW64/UserMgrProxy.dll;file;203776;33206;2021-01-15T09:27:19.331463Z;;;2785144255;2;0;25332747904578200;4096;400;0;0;2021-12-16T13:35:54.678358Z;2021-11-11T11:29:33.788164Z;2021-01-15T09:27:19.331463Z +C:/Windows/SysWOW64/usk.rs;file;31232;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907638770;4096;64;0;0;2021-12-16T13:35:54.682343Z;2021-11-11T11:29:33.701365Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/usoapi.dll;file;84480;33206;2021-11-11T11:29:00.088331Z;;;2785144255;2;0;281474977879204;4096;168;0;0;2021-12-16T13:35:54.699266Z;2021-11-11T11:38:51.747861Z;2021-11-11T11:29:00.085339Z +C:/Windows/SysWOW64/usp10.dll;file;77824;33206;2020-11-03T12:45:52.134862Z;;;2785144255;2;0;1125899907818570;4096;152;0;0;2021-12-16T13:35:54.699266Z;2021-11-11T11:29:33.792123Z;2020-11-03T12:45:52.134862Z +C:/Windows/SysWOW64/ustprov.dll;file;39936;33206;2019-12-07T09:09:13.727163Z;;;2785144255;2;0;1125899907637220;4096;80;0;0;2021-12-16T13:35:54.716221Z;2021-11-11T11:29:33.725301Z;2019-12-07T09:09:13.727163Z +C:/Windows/SysWOW64/utildll.dll;file;40784;33206;2019-12-07T09:09:13.697280Z;;;2785144255;2;0;1125899907636230;4096;80;0;0;2021-12-16T13:35:54.730184Z;2021-11-11T11:29:33.718319Z;2019-12-07T09:09:13.697280Z +C:/Windows/SysWOW64/Utilman.exe;file;97280;33206;2021-01-15T09:27:18.755077Z;;;2785144255;2;0;8725724278649490;4096;192;0;0;2021-12-16T13:35:54.755116Z;2021-11-11T11:29:33.776165Z;2021-01-15T09:27:18.755077Z +C:/Windows/SysWOW64/uudf.dll;file;138752;33206;2021-06-10T14:01:50.089596Z;;;2785144255;2;0;281474977765628;4096;272;0;0;2021-12-16T13:35:54.770076Z;2021-11-11T11:29:34.244011Z;2021-06-10T14:01:50.083090Z +C:/Windows/SysWOW64/UXInit.dll;file;90112;33206;2021-10-16T00:21:15.701105Z;;;2785144255;2;0;281474977857321;4096;176;0;0;2021-12-16T13:35:54.784040Z;2021-11-11T11:29:33.714330Z;2021-10-16T00:21:15.701105Z +C:/Windows/SysWOW64/uxlib.dll;file;135496;33206;2020-11-03T12:45:54.212530Z;;;2785144255;2;0;562949954398506;4096;272;0;0;2021-12-16T13:35:54.799997Z;2021-11-11T11:29:33.816060Z;2020-11-03T12:45:54.212530Z +C:/Windows/SysWOW64/uxlibres.dll;file;11576;33206;2019-12-07T09:09:32.401382Z;;;2785144255;2;0;1125899907638140;4096;24;0;0;2021-12-16T13:35:54.804985Z;2021-11-11T11:29:33.812069Z;2019-12-07T09:09:32.401382Z +C:/Windows/SysWOW64/uxtheme.dll;file;455168;33206;2021-10-16T00:21:15.716774Z;;;2785144255;2;0;281474977857322;4096;896;0;0;2021-12-16T13:35:54.804985Z;2021-11-11T11:29:33.725301Z;2021-10-16T00:21:15.716774Z +C:/Windows/SysWOW64/VAN.dll;file;249856;33206;2021-01-15T09:27:38.848221Z;;;2785144255;2;0;12947848929312800;4096;488;0;0;2021-12-16T13:35:54.822936Z;2021-11-11T11:29:34.241020Z;2021-01-15T09:27:38.832600Z +C:/Windows/SysWOW64/Vault.dll;file;271360;33206;2020-11-03T12:46:03.538572Z;;;2785144255;2;0;562949954401107;4096;536;0;0;2021-12-16T13:35:54.838894Z;2021-11-11T11:29:34.246005Z;2020-11-03T12:46:03.538572Z +C:/Windows/SysWOW64/vaultcli.dll;file;214528;33206;2021-01-15T09:27:16.905424Z;;;2785144255;2;0;18295873486811400;4096;424;0;0;2021-12-16T13:35:54.840887Z;2021-11-11T11:29:33.763200Z;2021-01-15T09:27:16.905424Z +C:/Windows/SysWOW64/vbajet32.dll;file;30749;33206;2019-12-07T09:09:29.088570Z;;;2785144255;2;0;1125899907629680;4096;64;0;0;2021-12-16T13:35:54.848866Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:09:29.088570Z +C:/Windows/SysWOW64/VBICodec.ax;file;135168;33206;2021-01-15T09:27:38.770115Z;;;2785144255;2;0;15199648742998100;4096;264;0;0;2021-12-16T13:35:54.864826Z;2021-11-11T11:29:34.246005Z;2021-01-15T09:27:38.770115Z +C:/Windows/SysWOW64/vbisurf.ax;file;37888;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907630720;4096;80;0;0;2021-12-16T13:35:54.879785Z;2021-11-11T11:29:34.241020Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/vbscript.dll;file;547328;33206;2021-10-16T00:21:19.227427Z;;;2785144255;2;0;281474977857657;4096;1072;0;0;2021-12-16T13:35:54.896739Z;2021-11-11T11:29:34.230049Z;2021-10-16T00:21:19.211845Z +C:/Windows/SysWOW64/vcamp120.dll;file;339616;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894960;4096;664;0;0;2021-12-16T13:35:54.912695Z;2019-09-17T00:14:54.727485Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/vcamp140.dll;file;355608;33206;2019-09-27T19:04:06Z;;;2785144255;1;0;281474978244382;4096;696;0;0;2021-12-16T13:35:54.930647Z;2021-12-03T14:03:09.616517Z;2019-09-27T19:04:06Z +C:/Windows/SysWOW64/VCardParser.dll;file;145408;33206;2021-01-15T09:27:15.686963Z;;;2785144255;2;0;4503599627989150;4096;288;0;0;2021-12-16T13:35:54.944610Z;2021-11-11T11:29:33.747242Z;2021-01-15T09:27:15.686963Z +C:/Windows/SysWOW64/vccorlib110.dll;file;252400;33206;2012-11-06T00:20:52Z;;;2785144255;1;0;562949953589144;4096;496;0;0;2021-12-16T13:35:54.960568Z;2019-11-20T13:34:39.508546Z;2012-11-06T00:20:52Z +C:/Windows/SysWOW64/vccorlib120.dll;file;247984;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;1125899906894970;4096;488;0;0;2021-12-16T13:35:54.974566Z;2019-09-17T00:14:54.731661Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/vccorlib140.dll;file;269080;33206;2019-09-27T18:04:06Z;;;2785144255;1;0;15481123719583300;4096;528;0;0;2021-12-16T13:35:54.994478Z;2020-05-14T16:25:33.338989Z;2019-09-27T18:04:06Z +C:/Windows/SysWOW64/vcomp100.dll;file;51024;33206;2011-06-11T00:58:52Z;;;2785144255;1;0;281474978244447;4096;104;0;0;2021-12-16T13:35:55.007442Z;2021-12-03T14:03:13.428225Z;2011-06-11T00:58:52Z +C:/Windows/SysWOW64/vcomp120.dll;file;119456;33206;2013-10-05T00:38:22Z;;;2785144255;1;0;844424930184311;4096;240;0;0;2021-12-16T13:35:55.021405Z;2019-09-17T00:14:54.736887Z;2013-10-05T00:38:22Z +C:/Windows/SysWOW64/vcomp140.dll;file;141584;33206;2019-09-27T19:04:22Z;;;2785144255;1;0;562949954955039;4096;280;0;0;2021-12-16T13:35:55.037362Z;2021-12-03T14:03:09.616517Z;2019-09-27T19:04:22Z +C:/Windows/SysWOW64/vcruntime140.dll;file;83224;33206;2019-09-27T18:04:10Z;;;2785144255;1;0;9007199254890510;4096;168;0;0;2021-12-16T13:35:55.037362Z;2020-11-03T12:52:03.285130Z;2019-09-27T18:04:10Z +C:/Windows/SysWOW64/vcruntime140_clr0400.dll;file;83768;33206;2019-12-07T09:10:48.696460Z;;;2785144255;2;0;1125899907622850;4096;168;0;0;2021-12-16T13:35:55.038359Z;2021-11-11T11:29:31.918121Z;2019-12-07T09:10:48.696460Z +C:/Windows/SysWOW64/vdmdbg.dll;file;17920;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907635520;4096;40;0;0;2021-12-16T13:35:55.050340Z;2021-11-11T11:29:33.802096Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/vds_ps.dll;file;47616;33206;2019-12-07T09:09:14.958027Z;;;2785144255;2;0;1125899907635510;4096;96;0;0;2021-12-16T13:35:55.063589Z;2021-11-11T11:29:33.724303Z;2019-12-07T09:09:14.958027Z +C:/Windows/SysWOW64/verclsid.exe;file;11776;33206;2019-12-07T09:09:32.427493Z;;;2785144255;2;0;1125899907637700;4096;24;0;0;2021-12-16T13:35:55.074407Z;2021-11-11T11:29:33.804091Z;2019-12-07T09:09:32.427493Z +C:/Windows/SysWOW64/verifier.dll;file;360144;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907629790;4096;704;0;0;2021-12-16T13:35:55.091899Z;2021-11-11T11:29:34.202158Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/verifiergui.exe;file;154112;33206;2019-12-07T09:09:13.707215Z;;;2785144255;2;0;1125899907639050;4096;304;0;0;2021-12-16T13:35:55.127488Z;2021-11-11T11:29:33.717322Z;2019-12-07T09:09:13.707215Z +C:/Windows/SysWOW64/version.dll;file;27320;33206;2020-11-03T12:45:54.243779Z;;;2785144255;2;0;562949954398510;4096;56;0;0;2021-12-16T13:35:55.127488Z;2021-11-11T11:29:33.805088Z;2020-11-03T12:45:54.243779Z +C:/Windows/SysWOW64/vfwwdm32.dll;file;56832;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907629530;4096;112;0;0;2021-12-16T13:35:55.128851Z;2021-11-11T11:29:34.245008Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/vidcap.ax;file;28672;33206;2019-12-07T09:10:04.116117Z;;;2785144255;2;0;1125899907628180;4096;56;0;0;2021-12-16T13:35:55.129260Z;2021-11-11T11:29:34.246005Z;2019-12-07T09:10:04.116117Z +C:/Windows/SysWOW64/VIDRESZR.DLL;file;100672;33206;2021-03-11T12:12:36.353812Z;;;2785144255;2;0;844424931105593;4096;200;0;0;2021-12-16T13:35:55.143203Z;2021-11-11T11:29:32.485826Z;2021-03-11T12:12:36.353812Z +C:/Windows/SysWOW64/virtdisk.dll;file;62288;33206;2021-10-16T00:21:17.236780Z;;;2785144255;2;0;281474977857376;4096;128;0;0;2021-12-16T13:35:55.157943Z;2021-11-11T11:29:33.768187Z;2021-10-16T00:21:17.236780Z +C:/Windows/SysWOW64/VoiceActivationManager.dll;file;69120;33206;2021-01-15T09:27:18.380196Z;;;2785144255;2;0;15762598696415900;4096;136;0;0;2021-12-16T13:35:55.172316Z;2021-11-11T11:29:33.770182Z;2021-01-15T09:27:18.380196Z +C:/Windows/SysWOW64/VoipRT.dll;file;112128;33206;2021-01-15T09:27:09.063409Z;;;2785144255;2;0;3940649674530910;4096;224;0;0;2021-12-16T13:35:55.186352Z;2021-11-11T11:29:33.701365Z;2021-01-15T09:27:09.063409Z +C:/Windows/SysWOW64/vpnikeapi.dll;file;43008;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907636530;4096;88;0;0;2021-12-16T13:35:55.200393Z;2021-11-11T11:29:33.815064Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/VscMgrPS.dll;file;13312;33206;2019-12-07T09:10:32.869053Z;;;2785144255;2;0;1125899907637690;4096;32;0;0;2021-12-16T13:35:55.212809Z;2021-11-11T11:29:33.740262Z;2019-12-07T09:10:32.869053Z +C:/Windows/SysWOW64/vssapi.dll;file;1160704;33206;2021-11-11T11:29:00.141225Z;;;2785144255;2;0;281474977879207;4096;2272;0;0;2021-12-16T13:35:55.245854Z;2021-11-11T11:38:52.002753Z;2021-11-11T11:29:00.119248Z +C:/Windows/SysWOW64/vsstrace.dll;file;53760;33206;2020-11-03T12:45:51.010161Z;;;2785144255;2;0;562949954396555;4096;112;0;0;2021-12-16T13:35:55.259855Z;2021-12-16T12:06:18.199713Z;2020-11-03T12:45:51.010161Z +C:/Windows/SysWOW64/vss_ps.dll;file;29184;33206;2019-12-07T09:09:21.723927Z;;;2785144255;2;0;1125899907634940;4096;64;0;0;2021-12-16T13:35:55.225587Z;2021-11-11T11:29:33.772176Z;2019-12-07T09:09:21.551713Z +C:/Windows/SysWOW64/vulkan-1-999-0-0-0.dll;file;969200;33206;2021-09-12T23:12:28Z;;;2785144255;3;0;5348024557786100;4096;1896;0;0;2021-12-16T13:35:55.260813Z;2021-12-11T15:59:53.919564Z;2021-10-31T08:18:45.368955Z +C:/Windows/SysWOW64/vulkan-1.dll;file;969200;33206;2021-09-12T23:12:28Z;;;2785144255;3;0;5348024557786100;4096;1896;0;0;2021-12-16T13:35:55.260813Z;2021-12-11T15:59:53.919564Z;2021-10-31T08:18:45.368955Z +C:/Windows/SysWOW64/vulkaninfo-1-999-0-0-0.exe;file;1450000;33206;2021-09-12T23:12:30Z;;;2785144255;3;0;5629499534493960;4096;2840;0;0;2021-12-16T13:35:55.311565Z;2021-12-11T15:59:53.919564Z;2021-10-31T08:18:45.415859Z +C:/Windows/SysWOW64/vulkaninfo.exe;file;1450000;33206;2021-09-12T23:12:30Z;;;2785144255;3;0;5629499534493960;4096;2840;0;0;2021-12-16T13:35:55.311565Z;2021-12-11T15:59:53.919564Z;2021-10-31T08:18:45.415859Z +C:/Windows/SysWOW64/w32tm.exe;file;92672;33206;2019-12-07T09:09:13.536352Z;;;2785144255;2;0;1407374884347750;4096;184;0;0;2021-12-16T13:35:55.327522Z;2021-11-11T11:29:33.700367Z;2019-12-07T09:09:13.536352Z +C:/Windows/SysWOW64/w32topl.dll;file;28160;33206;2020-11-03T12:45:46.526749Z;;;2785144255;2;0;3940649674923080;4096;56;0;0;2021-12-16T13:35:55.340237Z;2021-11-11T11:29:33.768187Z;2020-11-03T12:45:46.526749Z +C:/Windows/SysWOW64/WABSyncProvider.dll;file;58880;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907629340;4096;120;0;0;2021-12-16T13:35:55.354104Z;2021-11-11T11:29:34.205151Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/waitfor.exe;file;32768;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907630080;4096;64;0;0;2021-12-16T13:35:55.380061Z;2021-11-11T11:29:34.248Z;2019-12-07T09:10:05.475470Z +C:/Windows/SysWOW64/WalletBackgroundServiceProxy.dll;file;10752;33206;2019-12-07T09:09:18.020777Z;;;2785144255;2;0;1125899907637480;4096;24;0;0;2021-12-16T13:35:55.393645Z;2021-11-11T11:29:33.747242Z;2019-12-07T09:09:18.020777Z +C:/Windows/SysWOW64/WalletProxy.dll;file;36864;33206;2019-12-07T09:09:18.020777Z;;;2785144255;2;0;1125899907638700;4096;72;0;0;2021-12-16T13:35:55.405379Z;2021-11-11T11:29:33.757217Z;2019-12-07T09:09:18.020777Z +C:/Windows/SysWOW64/wavemsp.dll;file;225280;33206;2021-01-15T09:27:38.442067Z;;;2785144255;2;0;21673573207343100;4096;440;0;0;2021-12-16T13:35:55.419416Z;2021-11-11T11:29:34.249996Z;2021-01-15T09:27:38.442067Z +C:/Windows/SysWOW64/wbem;directory;0;16822;2021-11-11T11:38:44.527003Z;;;2785144255;1;0;2533274790716830;4096;56;0;0;2021-12-16T13:36:01.190753Z;2021-11-11T11:38:44.527003Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/wbem/AgentWmi.mof;file;17510;33206;2019-12-07T14:54:39.625288Z;;;2785144255;2;0;1125899907621600;4096;40;0;0;2021-11-11T11:27:34.117693Z;2021-12-16T12:06:18.139712Z;2019-12-07T09:10:22.569977Z +C:/Windows/SysWOW64/wbem/AgentWmiUninstall.mof;file;693;33206;2019-12-07T09:10:22.569977Z;;;2785144255;2;0;1125899907621580;4096;8;0;0;2021-11-11T11:27:34.118693Z;2021-12-16T12:06:18.139712Z;2019-12-07T09:10:22.569977Z +C:/Windows/SysWOW64/wbem/AutoRecover;directory;0;16822;2019-12-07T09:14:52.768215Z;;;2785144255;1;0;2533274790716830;4096;0;0;0;2021-12-16T13:36:01.190753Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/wbem/BthMtpEnum.mof;file;2626;33206;2019-12-07T09:10:14.726575Z;;;2785144255;2;0;1125899907618440;4096;8;0;0;2019-12-07T09:10:14.726575Z;2020-11-03T12:35:32.814789Z;2019-12-07T09:10:14.726575Z +C:/Windows/SysWOW64/wbem/CIWmi.mof;file;2088;33206;2019-12-07T09:10:23.866944Z;;;2785144255;2;0;1125899907621570;4096;8;0;0;2021-01-14T06:14:14.338250Z;2021-01-14T06:14:14.338250Z;2019-12-07T09:10:23.866944Z +C:/Windows/SysWOW64/wbem/cli.mof;file;32626;33206;2019-12-07T09:08:19.737167Z;;;2785144255;4;0;7881299348567630;4096;64;0;0;2021-11-19T10:04:18.777676Z;2020-11-03T12:35:19.833313Z;2019-12-07T09:08:19.737167Z +C:/Windows/SysWOW64/wbem/cliegaliases.mof;file;2815350;33206;2019-12-07T09:08:19.737167Z;;;2785144255;4;0;4785074604750410;4096;5504;0;0;2021-11-19T10:04:18.777676Z;2020-11-03T12:35:19.833313Z;2019-12-07T09:08:19.737167Z +C:/Windows/SysWOW64/wbem/de;directory;0;16822;2019-12-07T14:54:52.797182Z;;;2785144255;1;0;2533274790716840;4096;0;0;0;2021-12-16T13:36:01.190753Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/wbem/de/Microsoft.AppV.AppVClientWmi.resources.dll;file;4096;33206;2019-12-07T14:50:56.049041Z;;;2785144255;2;0;1688849861008560;4096;8;0;0;2020-11-03T12:35:26.628596Z;2021-11-11T11:29:35.158454Z;2019-12-07T14:50:56.049041Z +C:/Windows/SysWOW64/wbem/de-DE;directory;0;16822;2019-12-07T14:54:52.797182Z;;;2785144255;1;0;2533274790716840;4096;24;0;0;2021-12-16T13:36:01.190753Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.736320Z +C:/Windows/SysWOW64/wbem/de-DE/cli.mfl;file;33872;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;9007199255410190;4096;72;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/cliegaliases.mfl;file;36856;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;9288674232120850;4096;72;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/csv.xsl;file;2496;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1125899907514940;4096;8;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:21.739117Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/FolderRedirectionWMIProvider.mfl;file;44;33206;2019-12-07T14:51:01.532988Z;;;2785144255;4;0;8162774325278260;4096;0;0;0;2019-12-07T14:51:01.532988Z;2020-11-03T12:35:19.833313Z;2019-12-07T14:51:01.532988Z +C:/Windows/SysWOW64/wbem/de-DE/hbaapi.mfl;file;370404;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;9288674232120850;4096;728;0;0;2019-12-07T14:50:47.705049Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/wbem/de-DE/hform.xsl;file;4930;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1125899907514950;4096;16;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:21.739117Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/htable.xsl;file;4594;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1125899907514950;4096;16;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:21.739117Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/ipmiprr.dll.mui;file;4096;33206;2019-12-07T14:51:01.579981Z;;;2785144255;4;0;1688849861029760;4096;8;0;0;2019-12-07T14:51:01.579981Z;2020-11-03T12:35:28.065759Z;2019-12-07T14:51:01.579981Z +C:/Windows/SysWOW64/wbem/de-DE/ipmiprv.mfl;file;206004;33206;2019-12-07T14:51:01.579981Z;;;2785144255;4;0;1688849861028940;4096;408;0;0;2019-12-07T14:51:01.579981Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:51:01.579981Z +C:/Windows/SysWOW64/wbem/de-DE/iscsidsc.mfl;file;30756;33206;2019-12-07T14:50:48.627084Z;;;2785144255;4;0;9570149208831510;4096;64;0;0;2019-12-07T14:50:48.627084Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:48.627084Z +C:/Windows/SysWOW64/wbem/de-DE/iscsiprf.mfl;file;39888;33206;2019-12-07T14:50:48.627084Z;;;2785144255;4;0;13792273859491300;4096;80;0;0;2019-12-07T14:50:48.627084Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:48.627084Z +C:/Windows/SysWOW64/wbem/de-DE/iscsiwmiv2.mfl;file;91550;33206;2019-12-07T14:50:48.627084Z;;;2785144255;4;0;10133099162252800;4096;184;0;0;2019-12-07T14:50:48.627084Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:48.627084Z +C:/Windows/SysWOW64/wbem/de-DE/iscsiwmiv2_uninstall.mfl;file;1970;33206;2019-12-07T14:50:48.627084Z;;;2785144255;4;0;9851624185542170;4096;8;0;0;2019-12-07T14:50:48.627084Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:48.627084Z +C:/Windows/SysWOW64/wbem/de-DE/l2gpstore.mfl;file;984;33206;2019-12-07T14:50:56.971065Z;;;2785144255;4;0;1688849861028940;4096;8;0;0;2019-12-07T14:50:56.971065Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:56.971065Z +C:/Windows/SysWOW64/wbem/de-DE/mispace.mfl;file;21;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;10133099162252800;4096;0;0;0;2021-03-11T12:10:00.403164Z;2021-04-15T08:15:56.850356Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/wbem/de-DE/mispace_uninstall.mfl;file;21;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;10696049115674100;4096;0;0;0;2021-03-11T12:10:00.403164Z;2021-04-15T08:15:56.850356Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/wbem/de-DE/MMFUtil.dll.mui;file;4096;33206;2019-12-07T14:51:01.596061Z;;;2785144255;4;0;1688849861029890;4096;8;0;0;2019-12-07T14:51:01.596061Z;2020-11-03T12:35:28.097003Z;2019-12-07T14:51:01.596061Z +C:/Windows/SysWOW64/wbem/de-DE/mof.xsl;file;11386;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1125899907514950;4096;24;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:21.739117Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/mofcomp.exe.mui;file;8192;33206;2019-12-07T14:50:56.939013Z;;;2785144255;4;0;1407374884224260;4096;16;0;0;2020-11-03T12:58:00.086850Z;2020-11-03T12:35:20.145740Z;2019-12-07T14:50:56.939013Z +C:/Windows/SysWOW64/wbem/de-DE/mofd.dll.mui;file;8704;33206;2019-12-07T14:50:56.939013Z;;;2785144255;4;0;1407374884224260;4096;24;0;0;2020-11-03T12:57:34.018611Z;2020-11-03T12:35:20.145740Z;2019-12-07T14:50:56.924033Z +C:/Windows/SysWOW64/wbem/de-DE/MsDtcWmi.mfl;file;13890;33206;2019-12-07T14:50:47.721046Z;;;2785144255;4;0;1688849861028950;4096;32;0;0;2019-12-07T14:50:47.721046Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:47.721046Z +C:/Windows/SysWOW64/wbem/de-DE/msfeeds.mfl;file;1428;33206;2019-12-07T14:50:48.610793Z;;;2785144255;4;0;1688849861028950;4096;8;0;0;2019-12-07T14:50:48.610793Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:48.610793Z +C:/Windows/SysWOW64/wbem/de-DE/msfeedsbs.mfl;file;1544;33206;2019-12-07T14:50:50.881117Z;;;2785144255;2;0;1688849861028950;4096;8;0;0;2019-12-07T14:50:50.881117Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:50.881117Z +C:/Windows/SysWOW64/wbem/de-DE/MsNetImPlatform.mfl;file;44;33206;2019-12-07T14:51:00.767087Z;;;2785144255;4;0;8444249301988910;4096;0;0;0;2019-12-07T14:51:00.767087Z;2020-11-03T12:35:19.833313Z;2019-12-07T14:51:00.767087Z +C:/Windows/SysWOW64/wbem/de-DE/mstscax.mfl;file;1284;33206;2019-12-07T14:50:50.158109Z;;;2785144255;4;0;1688849861028990;4096;8;0;0;2019-12-07T14:50:50.158109Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:50:50.158109Z +C:/Windows/SysWOW64/wbem/de-DE/ndisimplatcim.dll.mui;file;112640;33206;2019-12-07T14:51:00.767087Z;;;2785144255;4;0;1688849861030000;4096;224;0;0;2019-12-07T14:51:00.767087Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:51:00.767087Z +C:/Windows/SysWOW64/wbem/de-DE/netdacim.dll.mui;file;22528;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861030010;4096;48;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/wbem/de-DE/netdacim.mfl;file;23404;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861028990;4096;48;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/wbem/de-DE/netdacim_uninstall.mfl;file;548;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861028990;4096;8;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/wbem/de-DE/netnccim.dll.mui;file;20480;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861030020;4096;40;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/wbem/de-DE/netnccim.mfl;file;18120;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861029000;4096;40;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/wbem/de-DE/netnccim_uninstall.mfl;file;422;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861029000;4096;8;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/wbem/de-DE/NetSwitchTeam.mfl;file;44;33206;2019-12-07T14:51:00.767087Z;;;2785144255;4;0;5066549581461040;4096;0;0;0;2019-12-07T14:51:00.767087Z;2020-11-03T12:35:19.833313Z;2019-12-07T14:51:00.767087Z +C:/Windows/SysWOW64/wbem/de-DE/netswitchteamcim.dll.mui;file;19456;33206;2019-12-07T14:51:00.767087Z;;;2785144255;4;0;1688849861030020;4096;40;0;0;2019-12-07T14:51:00.767087Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:51:00.767087Z +C:/Windows/SysWOW64/wbem/de-DE/netttcim.dll.mui;file;174080;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861030030;4096;344;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:28.128244Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/wbem/de-DE/netttcim.mfl;file;232556;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861029000;4096;456;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/wbem/de-DE/netttcim_uninstall.mfl;file;1876;33206;2019-12-07T14:51:00.142054Z;;;2785144255;4;0;1688849861029010;4096;8;0;0;2019-12-07T14:51:00.142054Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:00.142054Z +C:/Windows/SysWOW64/wbem/de-DE/nlmcim.dll.mui;file;17408;33206;2019-12-07T14:51:00.157999Z;;;2785144255;4;0;1688849861030050;4096;40;0;0;2019-12-07T14:51:00.157999Z;2020-11-03T12:35:28.143867Z;2019-12-07T14:51:00.157999Z +C:/Windows/SysWOW64/wbem/de-DE/nlmcim.mfl;file;16556;33206;2019-12-07T14:51:00.767087Z;;;2785144255;4;0;1688849861029010;4096;40;0;0;2019-12-07T14:51:00.767087Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:00.767087Z +C:/Windows/SysWOW64/wbem/de-DE/nlmcim_uninstall.mfl;file;238;33206;2019-12-07T14:51:00.767087Z;;;2785144255;4;0;1688849861029010;4096;0;0;0;2019-12-07T14:51:00.767087Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:00.767087Z +C:/Windows/SysWOW64/wbem/de-DE/npivwmi.mfl;file;15546;33206;2019-12-07T14:51:01.496025Z;;;2785144255;4;0;1688849861029010;4096;32;0;0;2019-12-07T14:51:01.496025Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:01.496025Z +C:/Windows/SysWOW64/wbem/de-DE/p2p-mesh.mfl;file;2;33206;2019-12-07T14:50:50.251406Z;;;2785144255;4;0;1688849861028950;4096;0;0;0;2019-12-07T14:50:50.251406Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:50.251406Z +C:/Windows/SysWOW64/wbem/de-DE/p2p-pnrp.mfl;file;2;33206;2019-12-07T14:50:50.251406Z;;;2785144255;4;0;1688849861028960;4096;0;0;0;2019-12-07T14:50:50.251406Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:50.251406Z +C:/Windows/SysWOW64/wbem/de-DE/PolicMan.mfl;file;5352;33206;2019-12-07T14:50:55.174001Z;;;2785144255;4;0;9570149208831520;4096;16;0;0;2019-12-07T14:50:55.174001Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:55.174001Z +C:/Windows/SysWOW64/wbem/de-DE/PrintManagementProvider.dll.mui;file;76288;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1688849861030170;4096;152;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/wbem/de-DE/PrintManagementProvider.mfl;file;112478;33206;2019-12-07T14:50:49.471062Z;;;2785144255;4;0;1688849861029020;4096;224;0;0;2019-12-07T14:50:49.471062Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:50:49.471062Z +C:/Windows/SysWOW64/wbem/de-DE/PS_MMAgent.mfl;file;11792;33206;2019-12-07T14:50:50.829525Z;;;2785144255;4;0;1688849861029030;4096;24;0;0;2019-12-07T14:50:50.829525Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:50:50.829525Z +C:/Windows/SysWOW64/wbem/de-DE/regevent.mfl;file;104014;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;9288674232120870;4096;208;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/schedprov.dll.mui;file;20480;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861030310;4096;40;0;0;2019-12-07T14:51:01.504910Z;2020-11-03T12:35:28.315701Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/wbem/de-DE/schedprov.mfl;file;474;33206;2019-12-07T14:51:01.504910Z;;;2785144255;4;0;1688849861029040;4096;8;0;0;2019-12-07T14:51:01.504910Z;2020-11-03T12:35:27.878303Z;2019-12-07T14:51:01.504910Z +C:/Windows/SysWOW64/wbem/de-DE/ServDeps.dll.mui;file;5120;33206;2019-12-07T14:51:01.596061Z;;;2785144255;4;0;1688849861030350;4096;16;0;0;2019-12-07T14:51:01.596061Z;2020-11-03T12:35:28.331322Z;2019-12-07T14:51:01.596061Z +C:/Windows/SysWOW64/wbem/de-DE/storagewmi.mfl;file;1049434;33206;2019-12-07T14:50:47.689025Z;;;2785144255;4;0;8162774325278250;4096;2056;0;0;2019-12-07T14:50:47.689025Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:47.689025Z +C:/Windows/SysWOW64/wbem/de-DE/storagewmi_passthru.mfl;file;44;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;8162774325278260;4096;0;0;0;2019-12-07T14:50:47.705049Z;2020-11-03T12:35:19.833313Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/wbem/de-DE/storagewmi_passthru_uninstall.mfl;file;21;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;9851624185542170;4096;0;0;0;2019-12-07T14:50:47.705049Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/wbem/de-DE/storagewmi_uninstall.mfl;file;12130;33206;2019-12-07T14:50:47.705049Z;;;2785144255;4;0;8444249301988920;4096;24;0;0;2019-12-07T14:50:47.705049Z;2020-11-03T12:35:19.833313Z;2019-12-07T14:50:47.705049Z +C:/Windows/SysWOW64/wbem/de-DE/UserStateWMIProvider.mfl;file;44;33206;2019-12-07T14:51:01.532988Z;;;2785144255;4;0;8162774325278260;4096;0;0;0;2019-12-07T14:51:01.532988Z;2020-11-03T12:35:19.833313Z;2019-12-07T14:51:01.532988Z +C:/Windows/SysWOW64/wbem/de-DE/vds.mfl;file;54456;33206;2019-12-07T14:51:01.596061Z;;;2785144255;4;0;7036874418435650;4096;112;0;0;2019-12-07T14:51:01.596061Z;2020-11-03T12:35:19.833313Z;2019-12-07T14:51:01.596061Z +C:/Windows/SysWOW64/wbem/de-DE/vdswmi.dll.mui;file;3584;33206;2019-12-07T14:51:01.596061Z;;;2785144255;4;0;1125899907513980;4096;8;0;0;2019-12-07T14:51:01.596061Z;2020-11-03T12:35:20.473789Z;2019-12-07T14:51:01.596061Z +C:/Windows/SysWOW64/wbem/de-DE/vss.mfl;file;43576;33206;2019-12-07T14:50:50.189145Z;;;2785144255;4;0;1688849861029050;4096;88;0;0;2019-12-07T14:50:50.189145Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:50:50.189145Z +C:/Windows/SysWOW64/wbem/de-DE/vsswmi.dll.mui;file;8704;33206;2019-12-07T14:50:50.189145Z;;;2785144255;4;0;1688849861030700;4096;24;0;0;2019-12-07T14:50:50.189145Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:50.189145Z +C:/Windows/SysWOW64/wbem/de-DE/wbemcntl.dll.mui;file;29184;33206;2019-12-07T14:51:01.596061Z;;;2785144255;4;0;1688849861030700;4096;64;0;0;2019-12-07T14:51:01.596061Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:51:01.596061Z +C:/Windows/SysWOW64/wbem/de-DE/wbemcore.dll.mui;file;3584;33206;2019-12-07T14:50:56.939013Z;;;2785144255;4;0;1125899907514000;4096;8;0;0;2019-12-07T14:50:56.939013Z;2020-11-03T12:35:20.473789Z;2019-12-07T14:50:56.939013Z +C:/Windows/SysWOW64/wbem/de-DE/WdacWmiProv.Dll.mui;file;39936;33206;2019-12-07T14:50:48.642071Z;;;2785144255;4;0;1688849861030710;4096;80;0;0;2019-12-07T14:50:48.642071Z;2020-11-03T12:35:28.440671Z;2019-12-07T14:50:48.642071Z +C:/Windows/SysWOW64/wbem/de-DE/whqlprov.mfl;file;8470;33206;2019-12-07T14:50:50.251406Z;;;2785144255;4;0;1688849861029060;4096;24;0;0;2019-12-07T14:50:50.251406Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:50:50.251406Z +C:/Windows/SysWOW64/wbem/de-DE/wininit.mfl;file;714;33206;2019-12-07T14:51:01.532988Z;;;2785144255;4;0;7881299348567620;4096;8;0;0;2019-12-07T14:51:01.532988Z;2020-11-03T12:35:19.833313Z;2019-12-07T14:51:01.532988Z +C:/Windows/SysWOW64/wbem/de-DE/WinMgmt.exe.mui;file;11264;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1125899907514040;4096;24;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/WmiApRpl.dll.mui;file;3072;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1125899907514080;4096;8;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/WMIC.exe.mui;file;75776;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1125899907514080;4096;152;0;0;2021-12-03T13:53:33.275985Z;2020-11-03T12:35:20.489409Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/wmiutils.dll.mui;file;22528;33206;2019-12-07T14:50:56.924033Z;;;2785144255;4;0;1125899907514080;4096;48;0;0;2020-11-03T17:03:41.390809Z;2020-11-03T12:35:20.505031Z;2019-12-07T14:50:56.924033Z +C:/Windows/SysWOW64/wbem/de-DE/wscenter.mfl;file;44;33206;2019-12-07T14:50:50.829525Z;;;2785144255;4;0;8162774325278260;4096;0;0;0;2019-12-07T14:50:50.829525Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:50.829525Z +C:/Windows/SysWOW64/wbem/de-DE/wsp_fs.mfl;file;44;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;8162774325278250;4096;0;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/wbem/de-DE/wsp_fs_uninstall.mfl;file;44;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;5066549581461030;4096;0;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/wbem/de-DE/wsp_health.mfl;file;44;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;8444249301988910;4096;0;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/wbem/de-DE/wsp_health_uninstall.mfl;file;44;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;7881299348567590;4096;0;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/wbem/de-DE/wsp_sr.mfl;file;44;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;8162774325278250;4096;0;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/wbem/de-DE/wsp_sr_uninstall.mfl;file;44;33206;2019-12-07T14:50:49.517056Z;;;2785144255;4;0;8162774325278250;4096;0;0;0;2019-12-07T14:50:49.517056Z;2020-11-03T12:35:19.817692Z;2019-12-07T14:50:49.517056Z +C:/Windows/SysWOW64/wbem/de-DE/xml.xsl;file;1847;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;1125899907514950;4096;8;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:21.739117Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/wbem/de-DE/xwizards.mfl;file;1148;33206;2019-12-07T14:50:50.205086Z;;;2785144255;4;0;1688849861029070;4096;8;0;0;2019-12-07T14:50:50.205086Z;2020-11-03T12:35:27.893924Z;2019-12-07T14:50:50.205086Z +C:/Windows/SysWOW64/wbem/dimsjob.mof;file;1239;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907628680;4096;8;0;0;2019-12-07T09:09:57.944449Z;2020-11-03T12:35:38.766520Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/wbem/dimsroam.mof;file;1284;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1407374884339910;4096;8;0;0;2019-12-07T09:09:57.935588Z;2020-11-03T12:35:39.000839Z;2019-12-07T09:09:57.935588Z +C:/Windows/SysWOW64/wbem/dot3.mof;file;6072;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907637850;4096;16;0;0;2019-12-07T09:09:13.567452Z;2020-11-03T12:35:44.827866Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/wbem/DscCoreConfProv.mof;file;6680;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907628370;4096;16;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:38.610307Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/wbem/eaimeapi.mof;file;1300;33206;2019-12-07T09:10:00.490959Z;;;2785144255;2;0;1125899907629340;4096;8;0;0;2019-12-07T09:10:00.490959Z;2020-11-03T12:35:39.016461Z;2019-12-07T09:10:00.490959Z +C:/Windows/SysWOW64/wbem/en;directory;0;16822;2020-11-03T12:41:50.298074Z;;;2785144255;1;0;1407374884227080;4096;0;0;0;2021-12-16T13:36:01.191750Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:50.298074Z +C:/Windows/SysWOW64/wbem/en/Microsoft.AppV.AppVClientWmi.resources.dll;file;4096;33206;2020-11-03T12:41:37.456985Z;;;2785144255;2;0;1125899907688780;4096;8;0;0;2020-11-03T12:41:37.550747Z;2021-11-11T11:29:34.616877Z;2020-11-03T12:41:37.456985Z +C:/Windows/SysWOW64/wbem/en-US;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;2533274790716840;4096;32;0;0;2021-12-16T13:36:01.191750Z;2020-11-03T12:41:50.313665Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/wbem/en-US/cli.mfl;file;29384;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691730;4096;64;0;0;2020-11-03T12:41:51.719674Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/cliegaliases.mfl;file;36460;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691730;4096;72;0;0;2020-11-03T12:41:51.750887Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/csv.xsl;file;2496;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691730;4096;8;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/FolderRedirectionWMIProvider.mfl;file;44;33206;2020-11-03T12:41:40.628465Z;;;2785144255;4;0;1125899907691690;4096;0;0;0;2020-11-03T12:41:53.673195Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.628465Z +C:/Windows/SysWOW64/wbem/en-US/hbaapi.mfl;file;362242;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396280;4096;712;0;0;2020-11-03T12:41:54.407380Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/wbem/en-US/hform.xsl;file;4930;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691730;4096;16;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/htable.xsl;file;4594;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691730;4096;16;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/ipmiprr.dll.mui;file;4096;33206;2020-11-03T12:41:40.659706Z;;;2785144255;4;0;1125899907691780;4096;8;0;0;2020-11-03T12:41:40.784648Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.659706Z +C:/Windows/SysWOW64/wbem/en-US/ipmiprv.mfl;file;174930;33206;2020-11-03T12:41:40.659706Z;;;2785144255;4;0;1125899907691780;4096;344;0;0;2020-11-03T12:41:52.422641Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.659706Z +C:/Windows/SysWOW64/wbem/en-US/iscsidsc.mfl;file;29202;33206;2020-11-03T12:41:34.082574Z;;;2785144255;4;0;1407374884396700;4096;64;0;0;2020-11-03T12:41:52.485149Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:34.082574Z +C:/Windows/SysWOW64/wbem/en-US/iscsiprf.mfl;file;36374;33206;2020-11-03T12:41:34.082574Z;;;2785144255;4;0;1407374884396700;4096;72;0;0;2020-11-03T12:41:52.469503Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:34.082574Z +C:/Windows/SysWOW64/wbem/en-US/iscsiwmiv2.mfl;file;91550;33206;2020-11-03T12:41:34.082574Z;;;2785144255;4;0;1407374884396700;4096;184;0;0;2020-11-03T12:41:52.516333Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:34.082574Z +C:/Windows/SysWOW64/wbem/en-US/iscsiwmiv2_uninstall.mfl;file;1970;33206;2020-11-03T12:41:34.082574Z;;;2785144255;4;0;1407374884396700;4096;8;0;0;2020-11-03T12:41:34.207540Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:34.082574Z +C:/Windows/SysWOW64/wbem/en-US/l2gpstore.mfl;file;890;33206;2020-11-03T12:41:38.034974Z;;;2785144255;4;0;1125899907689220;4096;8;0;0;2020-11-03T12:41:54.376107Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:38.034974Z +C:/Windows/SysWOW64/wbem/en-US/mispace.mfl;file;21;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396280;4096;0;0;0;2021-03-11T12:10:01.136109Z;2021-04-15T08:15:56.850356Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/wbem/en-US/mispace_uninstall.mfl;file;21;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396280;4096;0;0;0;2021-03-11T12:10:01.136109Z;2021-04-15T08:15:56.850356Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/wbem/en-US/MMFUtil.dll.mui;file;4096;33206;2020-11-03T12:41:40.659706Z;;;2785144255;4;0;1125899907691780;4096;8;0;0;2020-11-03T12:41:40.784648Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.659706Z +C:/Windows/SysWOW64/wbem/en-US/mof.xsl;file;11386;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691740;4096;24;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/mofcomp.exe.mui;file;7168;33206;2020-11-03T12:41:37.535091Z;;;2785144255;4;0;1125899907688980;4096;16;0;0;2020-11-03T12:41:46.908213Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:37.535091Z +C:/Windows/SysWOW64/wbem/en-US/mofd.dll.mui;file;8192;33206;2020-11-03T12:41:37.535091Z;;;2785144255;4;0;1125899907688980;4096;16;0;0;2020-11-03T12:41:46.908213Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:37.535091Z +C:/Windows/SysWOW64/wbem/en-US/MsDtcWmi.mfl;file;13890;33206;2020-11-03T12:41:33.582611Z;;;2785144255;4;0;1407374884396310;4096;32;0;0;2020-11-03T12:41:53.220125Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:33.582611Z +C:/Windows/SysWOW64/wbem/en-US/msfeeds.mfl;file;1428;33206;2020-11-03T12:41:34.066952Z;;;2785144255;4;0;1407374884396670;4096;8;0;0;2020-11-03T12:41:53.094724Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:34.066952Z +C:/Windows/SysWOW64/wbem/en-US/msfeedsbs.mfl;file;1544;33206;2020-11-03T12:41:35.488459Z;;;2785144255;2;0;1688849861108330;4096;8;0;0;2020-11-03T12:41:35.613462Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.488459Z +C:/Windows/SysWOW64/wbem/en-US/MsNetImPlatform.mfl;file;44;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691200;4096;0;0;0;2020-11-03T12:41:54.016861Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/mstscax.mfl;file;1284;33206;2020-11-03T12:41:34.988595Z;;;2785144255;4;0;1407374884397440;4096;8;0;0;2020-11-03T12:41:52.266432Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:34.988595Z +C:/Windows/SysWOW64/wbem/en-US/ndisimplatcim.dll.mui;file;112640;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691190;4096;224;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/netdacim.dll.mui;file;22528;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691170;4096;48;0;0;2020-11-03T12:41:40.206627Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/netdacim.mfl;file;23404;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691170;4096;48;0;0;2020-11-03T12:41:52.735434Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/netdacim_uninstall.mfl;file;548;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691170;4096;8;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/netnccim.dll.mui;file;20480;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691170;4096;40;0;0;2020-11-03T12:41:40.206627Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/netnccim.mfl;file;18120;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691180;4096;40;0;0;2020-11-03T12:41:52.751059Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/netnccim_uninstall.mfl;file;422;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691180;4096;8;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/NetSwitchTeam.mfl;file;44;33206;2020-11-03T12:41:40.112900Z;;;2785144255;4;0;1125899907691200;4096;0;0;0;2020-11-03T12:41:54.016861Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.112900Z +C:/Windows/SysWOW64/wbem/en-US/netswitchteamcim.dll.mui;file;16896;33206;2020-11-03T12:41:40.112900Z;;;2785144255;4;0;1125899907691200;4096;40;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.112900Z +C:/Windows/SysWOW64/wbem/en-US/netttcim.dll.mui;file;174080;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691170;4096;344;0;0;2020-11-03T12:41:40.206627Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/netttcim.mfl;file;232556;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691170;4096;456;0;0;2020-11-03T12:41:52.688604Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/netttcim_uninstall.mfl;file;1876;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691170;4096;8;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/nlmcim.dll.mui;file;17408;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691190;4096;40;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/nlmcim.mfl;file;16556;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691190;4096;40;0;0;2020-11-03T12:41:53.267026Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/nlmcim_uninstall.mfl;file;238;33206;2020-11-03T12:41:40.097278Z;;;2785144255;4;0;1125899907691190;4096;0;0;0;2020-11-03T12:41:40.222248Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.097278Z +C:/Windows/SysWOW64/wbem/en-US/npivwmi.mfl;file;15546;33206;2020-11-03T12:41:40.597192Z;;;2785144255;4;0;1125899907691640;4096;32;0;0;2020-11-03T12:41:53.985574Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.597192Z +C:/Windows/SysWOW64/wbem/en-US/p2p-mesh.mfl;file;2;33206;2020-11-03T12:41:35.051091Z;;;2785144255;4;0;1407374884397610;4096;0;0;0;2020-11-03T12:41:35.144789Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.051091Z +C:/Windows/SysWOW64/wbem/en-US/p2p-pnrp.mfl;file;2;33206;2020-11-03T12:41:35.051091Z;;;2785144255;4;0;1407374884397610;4096;0;0;0;2020-11-03T12:41:35.144789Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.051091Z +C:/Windows/SysWOW64/wbem/en-US/PolicMan.mfl;file;4904;33206;2020-11-03T12:41:36.894575Z;;;2785144255;4;0;1407374884398770;4096;16;0;0;2020-11-03T12:41:51.797750Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:36.894575Z +C:/Windows/SysWOW64/wbem/en-US/PrintManagementProvider.dll.mui;file;65536;33206;2020-11-03T12:41:34.551179Z;;;2785144255;4;0;1407374884397070;4096;128;0;0;2020-11-03T12:41:34.644910Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:34.551179Z +C:/Windows/SysWOW64/wbem/en-US/PrintManagementProvider.mfl;file;102350;33206;2020-11-03T12:41:34.551179Z;;;2785144255;4;0;1407374884397080;4096;200;0;0;2020-11-03T12:41:52.766687Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:34.551179Z +C:/Windows/SysWOW64/wbem/en-US/PS_MMAgent.mfl;file;11792;33206;2020-11-03T12:41:35.066724Z;;;2785144255;4;0;1407374884397640;4096;24;0;0;2020-11-03T12:41:54.485490Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:35.066724Z +C:/Windows/SysWOW64/wbem/en-US/regevent.mfl;file;93270;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691750;4096;184;0;0;2020-11-03T12:41:51.860272Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/schedprov.dll.mui;file;20480;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691650;4096;40;0;0;2020-11-03T12:41:40.706575Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/wbem/en-US/schedprov.mfl;file;474;33206;2020-11-03T12:41:40.612813Z;;;2785144255;4;0;1125899907691650;4096;8;0;0;2020-11-03T12:41:53.079103Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.612813Z +C:/Windows/SysWOW64/wbem/en-US/ServDeps.dll.mui;file;5120;33206;2020-11-03T12:41:40.659706Z;;;2785144255;4;0;1125899907691790;4096;16;0;0;2020-11-03T12:41:40.784648Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:40.659706Z +C:/Windows/SysWOW64/wbem/en-US/storagewmi.mfl;file;1049434;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396270;4096;2056;0;0;2020-11-03T12:41:54.157443Z;2020-11-03T12:41:50.298074Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/wbem/en-US/storagewmi_passthru.mfl;file;44;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396280;4096;0;0;0;2020-11-03T12:41:54.329244Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/wbem/en-US/storagewmi_passthru_uninstall.mfl;file;21;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396280;4096;0;0;0;2020-11-03T12:41:33.692039Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/wbem/en-US/storagewmi_uninstall.mfl;file;12130;33206;2020-11-03T12:41:33.566995Z;;;2785144255;4;0;1407374884396270;4096;24;0;0;2020-11-03T12:41:33.692039Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:33.566995Z +C:/Windows/SysWOW64/wbem/en-US/UserStateWMIProvider.mfl;file;44;33206;2020-11-03T12:41:40.628465Z;;;2785144255;4;0;1125899907691690;4096;0;0;0;2020-11-03T12:41:53.688768Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:40.628465Z +C:/Windows/SysWOW64/wbem/en-US/vds.mfl;file;47692;33206;2020-11-03T12:41:40.659706Z;;;2785144255;4;0;1125899907691790;4096;96;0;0;2020-11-03T12:41:52.328913Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:40.659706Z +C:/Windows/SysWOW64/wbem/en-US/vdswmi.dll.mui;file;3072;33206;2020-11-03T12:41:40.659706Z;;;2785144255;4;0;1125899907691790;4096;8;0;0;2020-11-03T12:41:40.800268Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:40.659706Z +C:/Windows/SysWOW64/wbem/en-US/vss.mfl;file;39042;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397490;4096;80;0;0;2020-11-03T12:41:52.297634Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/wbem/en-US/vsswmi.dll.mui;file;7680;33206;2020-11-03T12:41:35.004197Z;;;2785144255;4;0;1407374884397490;4096;16;0;0;2020-11-03T12:41:35.113552Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:35.004197Z +C:/Windows/SysWOW64/wbem/en-US/wbemcntl.dll.mui;file;25600;33206;2020-11-03T12:41:40.659706Z;;;2785144255;4;0;1125899907691790;4096;56;0;0;2020-11-03T12:41:40.784648Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:40.659706Z +C:/Windows/SysWOW64/wbem/en-US/wbemcore.dll.mui;file;3584;33206;2020-11-03T12:41:37.535091Z;;;2785144255;4;0;1125899907688980;4096;8;0;0;2020-11-03T12:41:37.613233Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:37.535091Z +C:/Windows/SysWOW64/wbem/en-US/WdacWmiProv.Dll.mui;file;33280;33206;2020-11-03T12:41:34.082574Z;;;2785144255;4;0;1407374884396730;4096;72;0;0;2020-11-03T12:41:34.223161Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.082574Z +C:/Windows/SysWOW64/wbem/en-US/whqlprov.mfl;file;7664;33206;2020-11-03T12:41:35.051091Z;;;2785144255;4;0;1407374884397600;4096;16;0;0;2020-11-03T12:41:52.547575Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:35.051091Z +C:/Windows/SysWOW64/wbem/en-US/wininit.mfl;file;714;33206;2020-11-03T12:41:40.628465Z;;;2785144255;4;0;1125899907691680;4096;8;0;0;2020-11-03T12:41:53.360725Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:40.628465Z +C:/Windows/SysWOW64/wbem/en-US/WinMgmt.exe.mui;file;9728;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691740;4096;24;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/WmiApRpl.dll.mui;file;3072;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691740;4096;8;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/WMIC.exe.mui;file;64000;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691730;4096;128;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/wmiutils.dll.mui;file;17920;33206;2020-11-03T12:41:37.535091Z;;;2785144255;4;0;1125899907688970;4096;40;0;0;2020-11-03T12:41:46.908213Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:37.535091Z +C:/Windows/SysWOW64/wbem/en-US/wscenter.mfl;file;44;33206;2020-11-03T12:41:35.066724Z;;;2785144255;4;0;1407374884397630;4096;0;0;0;2020-11-03T12:41:52.360149Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:35.066724Z +C:/Windows/SysWOW64/wbem/en-US/wsp_fs.mfl;file;44;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397150;4096;0;0;0;2020-11-03T12:41:53.704389Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/wbem/en-US/wsp_fs_uninstall.mfl;file;44;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397150;4096;0;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/wbem/en-US/wsp_health.mfl;file;44;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397150;4096;0;0;0;2020-11-03T12:41:53.485691Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/wbem/en-US/wsp_health_uninstall.mfl;file;44;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397150;4096;0;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/wbem/en-US/wsp_sr.mfl;file;44;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397140;4096;0;0;0;2020-11-03T12:41:53.688768Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/wbem/en-US/wsp_sr_uninstall.mfl;file;44;33206;2020-11-03T12:41:34.582452Z;;;2785144255;4;0;1407374884397150;4096;0;0;0;2020-11-03T12:41:34.676185Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.582452Z +C:/Windows/SysWOW64/wbem/en-US/xml.xsl;file;1847;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691740;4096;8;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/wbem/en-US/xwizards.mfl;file;1148;33206;2020-11-03T12:41:35.019855Z;;;2785144255;4;0;1407374884397520;4096;8;0;0;2020-11-03T12:41:53.673195Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:35.019855Z +C:/Windows/SysWOW64/wbem/esscli.dll;file;373248;33206;2021-11-11T11:28:57.466854Z;;;2785144255;2;0;281474977878957;4096;736;0;0;2021-11-11T11:38:53.223461Z;2021-11-11T11:38:53.223461Z;2021-11-11T11:28:57.460838Z +C:/Windows/SysWOW64/wbem/fastprox.dll;file;804352;33206;2020-11-03T12:45:46.620470Z;;;2785144255;2;0;3377699721501790;4096;1576;0;0;2021-12-16T13:33:08.936312Z;2021-11-11T11:29:33.718319Z;2020-11-03T12:45:46.620470Z +C:/Windows/SysWOW64/wbem/fdSSDP.mof;file;656;33206;2019-12-07T09:09:57.412688Z;;;2785144255;2;0;1125899907628320;4096;8;0;0;2021-02-22T08:01:23.594552Z;2021-02-22T08:01:23.594552Z;2019-12-07T09:09:57.412688Z +C:/Windows/SysWOW64/wbem/fdWNet.mof;file;716;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;1125899907637430;4096;8;0;0;2021-02-22T08:01:23.595474Z;2021-02-22T08:01:23.595474Z;2019-12-07T09:09:26.178036Z +C:/Windows/SysWOW64/wbem/fdWSD.mof;file;656;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907629790;4096;8;0;0;2021-02-22T08:01:23.596425Z;2021-02-22T08:01:23.596425Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/wbem/FolderRedirectionWMIProvider.mof;file;9000;33206;2019-12-07T09:08:19.612208Z;;;2785144255;4;0;1125899907635190;4096;24;0;0;2021-11-19T10:04:18.793287Z;2020-11-03T12:35:42.953267Z;2019-12-07T09:08:19.612208Z +C:/Windows/SysWOW64/wbem/FunDisc.mof;file;702;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;1125899907638950;4096;8;0;0;2019-12-07T09:09:26.178036Z;2020-11-03T12:35:45.343371Z;2019-12-07T09:09:26.178036Z +C:/Windows/SysWOW64/wbem/hbaapi.mof;file;482504;33206;2019-12-07T09:09:00.535909Z;;;2785144255;4;0;4785074604750420;4096;944;0;0;2021-11-19T10:04:18.793287Z;2020-11-03T12:35:19.833313Z;2019-12-07T09:09:00.535909Z +C:/Windows/SysWOW64/wbem/IMAPIv2-Base.mof;file;32115;33206;2019-12-07T09:09:39.647436Z;;;2785144255;4;0;7881299348567640;4096;64;0;0;2021-11-19T10:04:18.808908Z;2020-11-03T12:35:19.833313Z;2019-12-07T09:09:39.647436Z +C:/Windows/SysWOW64/wbem/IMAPIv2-FileSystemSupport.mof;file;2074;33206;2019-12-07T09:10:00.475327Z;;;2785144255;2;0;4785074604750420;4096;8;0;0;2019-12-07T09:10:00.475327Z;2020-11-03T12:35:19.833313Z;2019-12-07T09:10:00.475327Z +C:/Windows/SysWOW64/wbem/IMAPIv2-LegacyShim.mof;file;759;33206;2019-12-07T09:10:00.475327Z;;;2785144255;2;0;7881299348567640;4096;8;0;0;2019-12-07T09:10:00.475327Z;2020-11-03T12:35:19.833313Z;2019-12-07T09:10:00.475327Z +C:/Windows/SysWOW64/wbem/IpmiDTrc.mof;file;638;33206;2019-12-07T09:08:41.659893Z;;;2785144255;4;0;1125899907635430;4096;8;0;0;2021-11-19T10:04:18.808908Z;2020-11-03T12:35:43.093859Z;2019-12-07T09:08:41.659893Z +C:/Windows/SysWOW64/wbem/ipmiprr.dll;file;3584;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907639440;4096;8;0;0;2020-11-03T12:35:45.593318Z;2021-11-11T11:29:33.790129Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/wbem/ipmiprv.dll;file;163328;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907634860;4096;320;0;0;2020-11-03T12:35:42.765811Z;2021-11-11T11:29:33.793120Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/wbem/ipmiprv.mof;file;212796;33206;2019-12-07T09:08:41.659893Z;;;2785144255;4;0;1125899907638470;4096;416;0;0;2021-11-19T10:04:18.808908Z;2020-11-03T12:35:45.109051Z;2019-12-07T09:08:41.659893Z +C:/Windows/SysWOW64/wbem/IpmiPTrc.mof;file;763;33206;2019-12-07T09:08:41.659893Z;;;2785144255;4;0;1125899907638400;4096;8;0;0;2021-11-19T10:04:18.808908Z;2020-11-03T12:35:45.077807Z;2019-12-07T09:08:41.659893Z +C:/Windows/SysWOW64/wbem/ipsecsvc.mof;file;1278;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;8162774325278300;4096;8;0;0;2021-07-07T10:42:14.883416Z;2021-07-07T10:42:14.884414Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/wbem/iscsidsc.mof;file;19872;33206;2019-12-07T09:09:41.287168Z;;;2785144255;4;0;4785074604750430;4096;40;0;0;2021-11-19T10:04:18.814917Z;2020-11-03T12:35:19.833313Z;2019-12-07T09:09:41.287168Z +C:/Windows/SysWOW64/wbem/iscsihba.mof;file;114000;33206;2019-12-07T09:09:41.287168Z;;;2785144255;4;0;7881299348567650;4096;224;0;0;2021-11-19T10:04:18.814917Z;2020-11-03T12:35:19.833313Z;2019-12-07T09:09:41.287168Z +C:/Windows/SysWOW64/wbem/iscsiprf.mof;file;46042;33206;2019-12-07T09:09:41.287168Z;;;2785144255;4;0;8162774325278310;4096;96;0;0;2021-11-19T10:04:18.814917Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:41.287168Z +C:/Windows/SysWOW64/wbem/iscsirem.mof;file;4503;33206;2019-12-07T09:09:41.287168Z;;;2785144255;4;0;7599824371857000;4096;16;0;0;2021-11-19T10:04:18.814917Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:41.287168Z +C:/Windows/SysWOW64/wbem/iscsiwmiv2.mof;file;37162;33206;2019-12-07T09:09:41.287168Z;;;2785144255;4;0;7599824371857000;4096;80;0;0;2021-11-19T10:04:18.814917Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:41.287168Z +C:/Windows/SysWOW64/wbem/iscsiwmiv2_uninstall.mof;file;2780;33206;2019-12-07T09:09:41.287168Z;;;2785144255;4;0;7599824371857000;4096;8;0;0;2021-11-19T10:04:18.814917Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:41.287168Z +C:/Windows/SysWOW64/wbem/kerberos.mof;file;8758;33206;2019-12-07T09:09:09.223475Z;;;2785144255;4;0;7599824371857000;4096;24;0;0;2021-11-19T10:04:18.814917Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:09.223475Z +C:/Windows/SysWOW64/wbem/l2gpstore.mof;file;1570;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907634940;4096;8;0;0;2019-12-07T09:09:13.567452Z;2020-11-03T12:35:42.812674Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/wbem/L2SecHC.mof;file;2334;33206;2019-12-07T09:09:13.587626Z;;;2785144255;2;0;844424930925964;4096;8;0;0;2021-10-03T18:55:40.698511Z;2021-11-11T08:10:02.340854Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/wbem/Logs;directory;0;16822;2019-12-07T09:14:52.768215Z;;;2785144255;1;0;2533274790716840;4096;0;0;0;2021-12-16T13:36:01.191750Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/wbem/lsasrv.mof;file;13780;33206;2019-12-07T09:09:05.785626Z;;;2785144255;4;0;7599824371857000;4096;32;0;0;2021-11-19T10:04:18.814917Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:05.785626Z +C:/Windows/SysWOW64/wbem/Microsoft.AppV.AppVClientWmi.dll;file;31760;33206;2019-12-07T14:54:40.672268Z;;;2785144255;2;0;1125899907621350;4096;64;0;0;2021-07-12T14:16:02.167511Z;2021-11-11T11:29:32.343215Z;2019-12-07T09:10:22.555233Z +C:/Windows/SysWOW64/wbem/Microsoft.AppV.AppVClientWmi.mof;file;11694;33206;2019-12-07T14:54:40.672268Z;;;2785144255;2;0;1125899907621430;4096;24;0;0;2021-07-12T14:16:02.167511Z;2021-07-12T14:16:02.167511Z;2019-12-07T09:10:22.555233Z +C:/Windows/SysWOW64/wbem/Microsoft.Uev.AgentWmi.dll;file;1082880;33206;2021-11-11T11:29:11.652801Z;;;2785144255;2;0;281474977879645;4096;2120;0;0;2021-11-11T11:38:51.972095Z;2021-11-11T11:38:51.972095Z;2021-11-11T11:29:11.629821Z +C:/Windows/SysWOW64/wbem/Microsoft.Uev.ManagedAgentWmi.mof;file;3129;33206;2019-12-07T09:10:22.569977Z;;;2785144255;2;0;1125899907621490;4096;8;0;0;2021-11-11T11:27:34.119689Z;2021-12-16T12:06:18.143713Z;2019-12-07T09:10:22.569977Z +C:/Windows/SysWOW64/wbem/Microsoft.Uev.ManagedAgentWmiUninstall.mof;file;514;33206;2019-12-07T09:10:22.569977Z;;;2785144255;2;0;1125899907621380;4096;8;0;0;2021-11-11T11:27:34.120686Z;2021-12-16T12:06:18.143713Z;2019-12-07T09:10:22.569977Z +C:/Windows/SysWOW64/wbem/mispace.mof;file;1094778;33206;2019-12-07T09:09:34.693645Z;;;2785144255;4;0;7599824371857000;4096;2144;0;0;2021-11-19T10:04:18.830541Z;2021-11-15T13:07:18.049433Z;2019-12-07T09:09:34.693645Z +C:/Windows/SysWOW64/wbem/mispace_uninstall.mof;file;9342;33206;2019-12-07T09:09:34.693645Z;;;2785144255;4;0;7599824371857000;4096;24;0;0;2021-11-19T10:04:18.830541Z;2021-11-15T13:07:18.049433Z;2019-12-07T09:09:34.693645Z +C:/Windows/SysWOW64/wbem/mmc.mof;file;698;33206;2019-12-07T09:10:02.195070Z;;;2785144255;2;0;1125899907628140;4096;8;0;0;2021-02-22T08:01:24.157259Z;2021-02-22T08:01:24.157259Z;2019-12-07T09:10:02.195070Z +C:/Windows/SysWOW64/wbem/mofcomp.exe;file;26624;33206;2021-11-11T11:28:57.489761Z;;;2785144255;2;0;281474977878960;4096;56;0;0;2021-12-14T11:15:22.033454Z;2021-11-11T11:38:50.442336Z;2021-11-11T11:28:57.488763Z +C:/Windows/SysWOW64/wbem/mofd.dll;file;200704;33206;2021-11-11T11:28:57.484773Z;;;2785144255;2;0;281474977878959;4096;392;0;0;2021-12-14T11:15:22.089305Z;2021-11-11T11:38:53.041198Z;2021-11-11T11:28:57.478816Z +C:/Windows/SysWOW64/wbem/msdtcwmi.dll;file;145920;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907629220;4096;288;0;0;2020-11-03T12:35:38.985219Z;2021-11-11T11:29:34.202158Z;2019-12-07T09:09:57.865923Z +C:/Windows/SysWOW64/wbem/MsDtcWmi.mof;file;21526;33206;2019-12-07T09:09:37.692356Z;;;2785144255;4;0;1125899907627890;4096;48;0;0;2021-11-19T10:04:18.830541Z;2020-11-03T12:35:38.360366Z;2019-12-07T09:09:37.692356Z +C:/Windows/SysWOW64/wbem/msfeeds.mof;file;1518;33206;2019-12-07T09:10:00.554367Z;;;2785144255;2;0;1125899907628850;4096;8;0;0;2021-11-11T11:27:37.276259Z;2021-12-16T12:06:18.167712Z;2019-12-07T09:10:00.554367Z +C:/Windows/SysWOW64/wbem/msfeedsbs.mof;file;1574;33206;2019-12-07T09:10:00.554367Z;;;2785144255;2;0;1125899907628070;4096;8;0;0;2019-12-07T09:10:00.554367Z;2020-11-03T12:35:38.469714Z;2019-12-07T09:10:00.554367Z +C:/Windows/SysWOW64/wbem/msiscsi.mof;file;4803;33206;2019-12-07T09:09:41.287168Z;;;2785144255;4;0;7599824371857010;4096;16;0;0;2021-11-19T10:04:18.857343Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:41.287168Z +C:/Windows/SysWOW64/wbem/mstsc.mof;file;1199;33206;2019-12-07T09:10:04.225445Z;;;2785144255;2;0;1125899907630450;4096;8;0;0;2021-10-16T00:19:58.806581Z;2021-11-15T13:07:18.049433Z;2019-12-07T09:10:04.225445Z +C:/Windows/SysWOW64/wbem/mstscax.mof;file;2055;33206;2019-12-07T09:10:04.209803Z;;;2785144255;2;0;1125899907630650;4096;8;0;0;2021-11-11T11:27:36.683832Z;2021-12-16T12:06:18.191713Z;2019-12-07T09:10:04.209803Z +C:/Windows/SysWOW64/wbem/msv1_0.mof;file;7721;33206;2019-12-07T09:09:09.223475Z;;;2785144255;4;0;7599824371857010;4096;16;0;0;2021-11-19T10:04:18.869105Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:09.223475Z +C:/Windows/SysWOW64/wbem/mswmdm.mof;file;1710;33206;2019-12-07T09:10:14.710340Z;;;2785144255;2;0;1125899907618540;4096;8;0;0;2021-02-22T08:01:25.216552Z;2021-02-22T08:01:25.216552Z;2019-12-07T09:10:14.710340Z +C:/Windows/SysWOW64/wbem/ncsi.mof;file;1130;33206;2019-12-07T09:09:05.770072Z;;;2785144255;4;0;1125899907639010;4096;8;0;0;2021-11-19T10:04:18.875208Z;2020-11-03T12:35:45.390235Z;2019-12-07T09:09:05.770072Z +C:/Windows/SysWOW64/wbem/netprofm.mof;file;1117;33206;2019-12-07T09:09:30.506459Z;;;2785144255;2;0;1125899907635880;4096;8;0;0;2019-12-07T09:09:30.506459Z;2020-11-03T12:35:43.359460Z;2019-12-07T09:09:30.506459Z +C:/Windows/SysWOW64/wbem/networkitemfactory.mof;file;683;33206;2019-12-07T09:09:27.567864Z;;;2785144255;2;0;1125899907639410;4096;8;0;0;2019-12-07T09:09:27.567864Z;2020-11-03T12:35:45.577698Z;2019-12-07T09:09:27.567864Z +C:/Windows/SysWOW64/wbem/newdev.mof;file;3681;33206;2019-12-07T09:09:30.880472Z;;;2785144255;2;0;7599824371857010;4096;8;0;0;2021-10-03T18:56:27.063383Z;2021-11-11T08:10:02.340854Z;2019-12-07T09:09:30.880472Z +C:/Windows/SysWOW64/wbem/nlasvc.mof;file;3825;33206;2019-12-07T09:09:05.770072Z;;;2785144255;4;0;1125899907638960;4096;8;0;0;2021-11-19T10:04:18.897097Z;2020-11-03T12:35:45.358992Z;2019-12-07T09:09:05.770072Z +C:/Windows/SysWOW64/wbem/nlsvc.mof;file;2873;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;7599824371857020;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/wbem/npivwmi.mof;file;32260;33206;2019-12-07T09:09:00.535909Z;;;2785144255;4;0;1125899907635880;4096;64;0;0;2021-11-19T10:04:18.897097Z;2020-11-03T12:35:43.359460Z;2019-12-07T09:09:00.535909Z +C:/Windows/SysWOW64/wbem/nshipsec.mof;file;1266;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;1125899907638160;4096;8;0;0;2021-07-07T10:42:14.887405Z;2021-07-07T10:42:14.887405Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/wbem/OfflineFilesConfigurationWmiProvider.mof;file;5562;33206;2019-12-07T14:54:36.204272Z;;;2785144255;2;0;1125899907621320;4096;16;0;0;2021-02-22T08:01:24.384774Z;2021-02-22T08:01:24.384774Z;2019-12-07T09:10:22.523176Z +C:/Windows/SysWOW64/wbem/OfflineFilesConfigurationWmiProvider_Uninstall.mof;file;800;33206;2019-12-07T09:10:22.523176Z;;;2785144255;4;0;1125899907621360;4096;8;0;0;2021-11-19T10:04:18.914848Z;2021-02-22T08:01:24.384774Z;2019-12-07T09:10:22.523176Z +C:/Windows/SysWOW64/wbem/OfflineFilesWmiProvider.mof;file;14588;33206;2019-12-07T14:54:36.204272Z;;;2785144255;2;0;1125899907621580;4096;32;0;0;2021-02-22T08:01:24.384774Z;2021-02-22T08:01:24.384774Z;2019-12-07T09:10:22.523176Z +C:/Windows/SysWOW64/wbem/OfflineFilesWmiProvider_Uninstall.mof;file;2162;33206;2019-12-07T09:10:22.523176Z;;;2785144255;4;0;1125899907621570;4096;8;0;0;2021-11-19T10:04:18.914848Z;2021-02-22T08:01:24.384774Z;2019-12-07T09:10:22.523176Z +C:/Windows/SysWOW64/wbem/onex.mof;file;4815;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907635310;4096;16;0;0;2019-12-07T09:09:13.567452Z;2020-11-03T12:35:43.031373Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/wbem/p2p-mesh.mof;file;2380;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907627940;4096;8;0;0;2019-12-07T09:10:05.569379Z;2020-11-03T12:35:38.391609Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/wbem/p2p-pnrp.mof;file;2297;33206;2019-12-07T09:10:05.569379Z;;;2785144255;2;0;1125899907630760;4096;8;0;0;2019-12-07T09:10:05.569379Z;2020-11-03T12:35:39.922501Z;2019-12-07T09:10:05.569379Z +C:/Windows/SysWOW64/wbem/PolicMan.dll;file;87552;33206;2019-12-07T14:54:43.610299Z;;;2785144255;2;0;1125899907621290;4096;176;0;0;2020-11-03T12:35:34.845571Z;2021-11-11T11:29:32.369144Z;2019-12-07T09:10:23.866944Z +C:/Windows/SysWOW64/wbem/PolicMan.mof;file;12150;33206;2019-12-07T14:54:43.610299Z;;;2785144255;2;0;7599824371857020;4096;24;0;0;2019-12-07T14:54:43.610299Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:10:21.070588Z +C:/Windows/SysWOW64/wbem/polstore.mof;file;1275;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;7881299348567680;4096;8;0;0;2021-07-07T10:42:14.885411Z;2021-07-07T10:42:14.885411Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/wbem/portabledeviceapi.mof;file;4304;33206;2019-12-07T14:54:42.188217Z;;;2785144255;2;0;1125899907618640;4096;16;0;0;2021-02-22T08:01:25.220247Z;2021-02-22T08:01:25.220247Z;2019-12-07T09:10:11.725806Z +C:/Windows/SysWOW64/wbem/portabledeviceclassextension.mof;file;3202;33206;2019-12-07T09:10:11.741454Z;;;2785144255;4;0;1125899907618460;4096;8;0;0;2021-11-19T10:04:18.914848Z;2021-02-22T08:01:25.220682Z;2019-12-07T09:10:11.741454Z +C:/Windows/SysWOW64/wbem/portabledeviceconnectapi.mof;file;1777;33206;2019-12-07T09:10:11.741454Z;;;2785144255;4;0;1125899907618540;4096;8;0;0;2021-11-19T10:04:18.914848Z;2021-02-22T08:01:25.221092Z;2019-12-07T09:10:11.741454Z +C:/Windows/SysWOW64/wbem/portabledevicetypes.mof;file;3490;33206;2019-12-07T09:10:11.725806Z;;;2785144255;4;0;1125899907618400;4096;8;0;0;2021-11-19T10:04:18.930473Z;2021-02-22T08:01:25.221668Z;2019-12-07T09:10:11.725806Z +C:/Windows/SysWOW64/wbem/portabledevicewiacompat.mof;file;1760;33206;2019-12-07T09:10:14.741601Z;;;2785144255;2;0;1125899907618530;4096;8;0;0;2021-10-16T00:20:01.361858Z;2021-11-15T13:07:18.049433Z;2019-12-07T09:10:14.741601Z +C:/Windows/SysWOW64/wbem/ppcRsopCompSchema.mof;file;1994;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907637490;4096;8;0;0;2019-12-07T09:09:11.943298Z;2020-11-03T12:35:44.562304Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/wbem/ppcRsopUserSchema.mof;file;1990;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907635620;4096;8;0;0;2019-12-07T09:09:11.943298Z;2020-11-03T12:35:43.203207Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/wbem/PrintManagementProvider.dll;file;169984;33206;2021-01-15T09:27:38.114021Z;;;2785144255;2;0;13792273859444700;4096;336;0;0;2021-01-15T09:30:31.969608Z;2021-11-11T11:29:34.239061Z;2021-01-15T09:27:38.114021Z +C:/Windows/SysWOW64/wbem/PrintManagementProvider.mof;file;33050;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907630640;4096;72;0;0;2021-11-19T10:04:18.930473Z;2021-02-22T08:01:24.477600Z;2019-12-07T09:09:45.897712Z +C:/Windows/SysWOW64/wbem/PS_MMAgent.mof;file;3010;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907629450;4096;8;0;0;2019-12-07T09:10:05.584846Z;2020-11-03T12:35:39.078946Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/wbem/qmgr.mof;file;2302;33206;2019-12-07T09:09:22.161729Z;;;2785144255;2;0;1125899907638520;4096;8;0;0;2019-12-07T09:09:22.161729Z;2020-11-03T12:35:45.140294Z;2019-12-07T09:09:22.161729Z +C:/Windows/SysWOW64/wbem/RacWmiProv.dll;file;55296;33206;2019-12-07T09:10:04.069297Z;;;2785144255;2;0;1125899907630410;4096;112;0;0;2020-11-03T12:35:39.766285Z;2021-11-11T11:29:34.238065Z;2019-12-07T09:10:04.069297Z +C:/Windows/SysWOW64/wbem/RacWmiProv.mof;file;3032;33206;2019-12-07T09:10:04.069297Z;;;2785144255;2;0;1125899907628200;4096;8;0;0;2019-12-07T09:10:04.069297Z;2020-11-03T12:35:38.532199Z;2019-12-07T09:10:04.069297Z +C:/Windows/SysWOW64/wbem/rawxml.xsl;file;623;33206;2019-12-07T09:08:19.737167Z;;;2785144255;4;0;1125899907514950;4096;8;0;0;2021-11-19T10:04:18.930473Z;2020-11-03T12:35:21.739117Z;2019-12-07T09:08:19.737167Z +C:/Windows/SysWOW64/wbem/rdpendp.mof;file;1122;33206;2019-12-07T09:10:04.178585Z;;;2785144255;2;0;1125899907628450;4096;8;0;0;2021-02-22T08:01:24.768748Z;2021-02-22T08:01:24.768748Z;2019-12-07T09:10:04.178585Z +C:/Windows/SysWOW64/wbem/regevent.mof;file;111698;33206;2019-12-07T09:08:19.753239Z;;;2785144255;4;0;7599824371857030;4096;224;0;0;2021-11-19T10:04:18.946095Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:08:19.753239Z +C:/Windows/SysWOW64/wbem/Remove.Microsoft.AppV.AppvClientWmi.mof;file;830;33206;2019-12-07T09:10:22.569977Z;;;2785144255;2;0;1125899907621500;4096;8;0;0;2021-07-12T14:16:02.167511Z;2021-07-12T14:16:02.167511Z;2019-12-07T09:10:22.555233Z +C:/Windows/SysWOW64/wbem/Repository;directory;0;16822;2019-12-07T09:14:52.768215Z;;;2785144255;1;0;2533274790716840;4096;0;0;0;2021-12-16T13:36:01.191750Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/wbem/samsrv.mof;file;62541;33206;2019-12-07T09:09:34.006181Z;;;2785144255;4;0;8162774325278350;4096;128;0;0;2021-11-19T10:04:18.946095Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:34.006181Z +C:/Windows/SysWOW64/wbem/scersop.mof;file;8310;33206;2019-12-07T09:09:07.238906Z;;;2785144255;4;0;1125899907635650;4096;24;0;0;2021-11-19T10:04:18.946095Z;2020-11-03T12:35:43.218829Z;2019-12-07T09:09:07.238906Z +C:/Windows/SysWOW64/wbem/schannel.mof;file;1075;33206;2019-12-07T09:09:32.380631Z;;;2785144255;2;0;7599824371857030;4096;8;0;0;2019-12-07T09:09:32.380631Z;2020-11-03T12:35:19.848934Z;2019-12-07T09:09:32.380631Z +C:/Windows/SysWOW64/wbem/schedprov.dll;file;182784;33206;2021-10-03T19:02:00.935507Z;;;2785144255;2;0;1688849861186630;4096;360;0;0;2021-10-03T19:51:51.577081Z;2021-11-11T11:29:33.725301Z;2021-10-03T19:02:00.921089Z +C:/Windows/SysWOW64/wbem/SchedProv.mof;file;51078;33206;2019-12-07T09:09:00.604624Z;;;2785144255;4;0;1125899907639420;4096;104;0;0;2021-11-19T10:04:18.946095Z;2021-11-11T08:10:02.360741Z;2019-12-07T09:09:00.604624Z +C:/Windows/SysWOW64/wbem/setupapi.mof;file;3689;33206;2019-12-07T09:09:30.880472Z;;;2785144255;2;0;7599824371857040;4096;8;0;0;2021-10-03T19:09:41.773439Z;2021-11-11T08:10:02.360741Z;2019-12-07T09:09:30.880472Z +C:/Windows/SysWOW64/wbem/stdprov.dll;file;111104;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907639450;4096;224;0;0;2020-11-03T12:35:45.593318Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/wbem/storagewmi.mof;file;337820;33206;2019-12-07T09:09:34.474487Z;;;2785144255;4;0;8444249301989020;4096;664;0;0;2021-11-19T10:04:18.961775Z;2021-07-07T10:42:14.983455Z;2019-12-07T09:09:34.161988Z +C:/Windows/SysWOW64/wbem/storagewmi_passthru.mof;file;1898;33206;2019-12-07T09:09:34.474487Z;;;2785144255;4;0;7599824371857050;4096;8;0;0;2021-11-19T10:04:18.977338Z;2021-07-07T10:42:14.983455Z;2019-12-07T09:09:34.474487Z +C:/Windows/SysWOW64/wbem/storagewmi_passthru_uninstall.mof;file;1651;33206;2019-12-07T09:09:34.474487Z;;;2785144255;4;0;8162774325278360;4096;8;0;0;2021-11-19T10:04:18.977338Z;2021-07-07T10:42:14.983455Z;2019-12-07T09:09:34.474487Z +C:/Windows/SysWOW64/wbem/storagewmi_uninstall.mof;file;13476;33206;2019-12-07T09:09:34.474487Z;;;2785144255;4;0;8444249301989020;4096;32;0;0;2021-11-19T10:04:18.977338Z;2021-07-07T10:42:14.983455Z;2019-12-07T09:09:34.474487Z +C:/Windows/SysWOW64/wbem/tcpip.mof;file;3066;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;8162774325278370;4096;8;0;0;2019-12-07T09:09:30.521078Z;2020-11-03T12:35:19.864556Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/wbem/texttable.xsl;file;6278;33206;2019-12-07T09:08:19.737167Z;;;2785144255;4;0;1125899907514950;4096;16;0;0;2021-12-11T11:27:30.336240Z;2020-11-03T12:35:21.739117Z;2019-12-07T09:08:19.737167Z +C:/Windows/SysWOW64/wbem/textvaluelist.xsl;file;2766;33206;2019-12-07T09:08:19.737167Z;;;2785144255;4;0;1125899907514950;4096;8;0;0;2021-11-19T10:04:18.977338Z;2020-11-03T12:35:21.739117Z;2019-12-07T09:08:19.737167Z +C:/Windows/SysWOW64/wbem/tmf;directory;0;16822;2019-12-07T09:14:52.768215Z;;;2785144255;1;0;41376821576787400;4096;0;0;0;2021-12-16T13:36:01.191750Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/wbem/tsmf.mof;file;1236;33206;2019-12-07T09:10:04.225445Z;;;2785144255;2;0;1125899907630000;4096;8;0;0;2021-02-22T08:01:24.759773Z;2021-02-22T08:01:24.759773Z;2019-12-07T09:10:04.225445Z +C:/Windows/SysWOW64/wbem/tspkg.mof;file;1063;33206;2019-12-07T09:09:32.401382Z;;;2785144255;2;0;1125899907638550;4096;8;0;0;2021-11-11T11:27:39.336370Z;2021-12-16T12:06:18.187712Z;2019-12-07T09:09:32.401382Z +C:/Windows/SysWOW64/wbem/UserStateWMIProvider.mof;file;3258;33206;2019-12-07T09:08:19.612208Z;;;2785144255;4;0;1125899907634900;4096;8;0;0;2021-11-19T10:04:18.992961Z;2020-11-03T12:35:42.797053Z;2019-12-07T09:08:19.612208Z +C:/Windows/SysWOW64/wbem/vds.mof;file;61056;33206;2019-12-07T09:08:41.675660Z;;;2785144255;4;0;7599824371857060;4096;120;0;0;2021-11-19T10:04:18.992961Z;2020-11-03T12:35:19.864556Z;2019-12-07T09:08:41.675660Z +C:/Windows/SysWOW64/wbem/vdswmi.dll;file;173568;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907638700;4096;344;0;0;2021-10-31T08:22:14.661562Z;2021-11-11T11:29:33.789166Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/wbem/viewprov.dll;file;138752;33206;2021-03-11T12:12:19.063140Z;;;2785144255;2;0;844424931103386;4096;272;0;0;2021-03-11T12:30:35.488709Z;2021-11-11T11:29:33.783178Z;2021-03-11T12:12:19.063140Z +C:/Windows/SysWOW64/wbem/vss.mof;file;60468;33206;2019-12-07T09:09:51.694628Z;;;2785144255;4;0;1125899907629460;4096;120;0;0;2021-11-19T10:04:19.008583Z;2020-11-03T12:35:39.094568Z;2019-12-07T09:09:51.694628Z +C:/Windows/SysWOW64/wbem/vsswmi.dll;file;116224;33206;2019-12-07T09:10:05.507228Z;;;2785144255;2;0;1125899907629190;4096;232;0;0;2020-11-03T12:35:38.969598Z;2021-11-11T11:29:34.247003Z;2019-12-07T09:10:05.507228Z +C:/Windows/SysWOW64/wbem/wbemcntl.dll;file;301568;33206;2021-01-15T09:27:20.865999Z;;;2785144255;2;0;54606145482486900;4096;592;0;0;2021-01-15T09:30:29.535149Z;2021-11-11T11:29:33.792123Z;2021-01-15T09:27:20.850354Z +C:/Windows/SysWOW64/wbem/wbemdisp.dll;file;243200;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907637040;4096;480;0;0;2021-12-16T12:04:52.629046Z;2021-11-11T11:29:33.791164Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/wbem/wbemdisp.tlb;file;59904;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907638110;4096;120;0;0;2021-11-11T11:42:04.123696Z;2020-11-03T12:35:44.968458Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/wbem/wbemprox.dll;file;36864;33206;2021-11-11T11:28:57.493749Z;;;2785144255;2;0;281474977878961;4096;72;0;0;2021-12-16T13:33:08.936312Z;2021-11-11T11:38:51.261100Z;2021-11-11T11:28:57.491756Z +C:/Windows/SysWOW64/wbem/wbemsvc.dll;file;48640;33206;2021-11-11T11:28:57.496741Z;;;2785144255;2;0;281474977878962;4096;96;0;0;2021-12-16T13:33:08.936312Z;2021-11-11T11:38:53.182999Z;2021-11-11T11:28:57.495743Z +C:/Windows/SysWOW64/wbem/WdacWmiProv.dll;file;111616;33206;2019-12-07T09:10:02.178772Z;;;2785144255;2;0;1125899907628110;4096;224;0;0;2020-11-03T12:35:38.485337Z;2021-11-11T11:29:34.233040Z;2019-12-07T09:10:02.178772Z +C:/Windows/SysWOW64/wbem/wdigest.mof;file;1103;33206;2019-12-07T09:09:32.380631Z;;;2785144255;2;0;7599824371857070;4096;8;0;0;2019-12-07T09:09:32.380631Z;2020-11-03T12:35:19.864556Z;2019-12-07T09:09:32.380631Z +C:/Windows/SysWOW64/wbem/wfs.mof;file;2136;33206;2019-12-06T18:26:00Z;;;2785144255;2;0;1125899907612410;4096;8;0;0;2019-12-07T14:52:38.673116Z;2020-11-03T12:35:28.737479Z;2019-12-07T14:52:38.673116Z +C:/Windows/SysWOW64/wbem/whqlprov.mof;file;3974;33206;2019-12-07T09:09:54.553720Z;;;2785144255;4;0;1125899907630640;4096;8;0;0;2021-11-19T10:04:19.030741Z;2021-10-01T05:32:27.254102Z;2019-12-07T09:09:54.553720Z +C:/Windows/SysWOW64/wbem/Win32_Tpm.dll;file;48640;33206;2021-01-15T09:27:09.588044Z;;;2785144255;2;0;6192449488218320;4096;96;0;0;2021-01-15T09:30:31.813394Z;2021-11-11T11:29:33.709343Z;2021-01-15T09:27:09.588044Z +C:/Windows/SysWOW64/wbem/wininit.mof;file;1756;33206;2019-12-07T09:09:13.707215Z;;;2785144255;2;0;7318349395146420;4096;8;0;0;2019-12-07T09:09:13.707215Z;2020-11-03T12:35:19.864556Z;2019-12-07T09:09:13.707215Z +C:/Windows/SysWOW64/wbem/winipsec.mof;file;1270;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;7318349395146420;4096;8;0;0;2021-07-07T10:42:14.886414Z;2021-07-07T10:42:14.886414Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/wbem/WinMgmt.exe;file;79360;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;1125899907635640;4096;160;0;0;2020-11-03T12:35:43.218829Z;2021-11-11T11:29:33.715328Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/wbem/Winsat.mof;file;1545;33206;2019-12-07T09:10:05.507228Z;;;2785144255;2;0;1125899907630410;4096;8;0;0;2021-11-11T11:27:39.387233Z;2021-12-16T12:06:18.199713Z;2019-12-07T09:10:05.507228Z +C:/Windows/SysWOW64/wbem/WinsatUninstall.mof;file;487;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907630040;4096;8;0;0;2021-11-11T11:27:39.389227Z;2021-12-16T12:06:18.199713Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/wbem/wlan.mof;file;12880;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;7318349395146420;4096;32;0;0;2021-10-03T18:55:33.497022Z;2021-11-11T08:10:02.348778Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/wbem/WMIADAP.exe;file;129024;33206;2021-11-11T11:28:57.501759Z;;;2785144255;2;0;281474977878963;4096;256;0;0;2021-11-11T11:38:52.687114Z;2021-11-11T11:38:52.687114Z;2021-11-11T11:28:57.499733Z +C:/Windows/SysWOW64/wbem/WmiApRpl.dll;file;93184;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;1125899907637790;4096;184;0;0;2020-11-03T12:35:44.812244Z;2021-11-11T11:29:33.714330Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/wbem/WMIC.exe;file;393216;33206;2019-12-07T09:09:15.036181Z;;;2785144255;2;0;1125899907636160;4096;768;0;0;2021-12-03T13:53:32.457872Z;2021-11-11T11:29:33.785173Z;2019-12-07T09:09:15.036181Z +C:/Windows/SysWOW64/wbem/WMICOOKR.dll;file;74752;33206;2021-11-11T11:28:57.505717Z;;;2785144255;2;0;281474977878964;4096;152;0;0;2021-11-11T11:38:52.520122Z;2021-11-11T11:38:52.520122Z;2021-11-11T11:28:57.504719Z +C:/Windows/SysWOW64/wbem/WmiDcPrv.dll;file;141312;33206;2020-11-03T12:45:46.636098Z;;;2785144255;2;0;3377699721501790;4096;280;0;0;2020-11-03T12:45:46.636098Z;2021-11-11T11:29:33.726298Z;2020-11-03T12:45:46.636098Z +C:/Windows/SysWOW64/wbem/WmiPerfClass.dll;file;94208;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907629010;4096;184;0;0;2020-11-03T12:35:38.907111Z;2021-11-11T11:29:34.252028Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/wbem/WmiPerfClass.mof;file;980;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907629410;4096;8;0;0;2019-12-07T09:10:05.522389Z;2020-11-03T12:35:39.047704Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/wbem/WmiPerfInst.dll;file;47616;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907628900;4096;96;0;0;2020-11-03T12:35:38.844627Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/wbem/WmiPerfInst.mof;file;804;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907630670;4096;8;0;0;2019-12-07T09:10:05.522389Z;2020-11-03T12:35:39.891256Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/wbem/WmiPrvSE.exe;file;418304;33206;2020-11-03T12:45:46.636098Z;;;2785144255;2;0;3377699721501790;4096;824;0;0;2021-12-14T11:14:11.806397Z;2021-11-11T11:29:33.721311Z;2020-11-03T12:45:46.636098Z +C:/Windows/SysWOW64/wbem/wmiutils.dll;file;103936;33206;2021-11-11T11:28:57.510704Z;;;2785144255;2;0;281474977878965;4096;208;0;0;2021-12-16T13:28:21.654948Z;2021-11-11T11:38:52.439533Z;2021-11-11T11:28:57.508709Z +C:/Windows/SysWOW64/wbem/wmp.mof;file;4887;33206;2019-04-18T18:43:00Z;;;2785144255;2;0;1125899907619540;4096;16;0;0;2021-10-16T00:20:02.449264Z;2021-11-15T13:07:18.033808Z;2019-12-07T14:52:21.110215Z +C:/Windows/SysWOW64/wbem/wpdbusenum.mof;file;2804;33206;2019-12-07T09:10:14.726575Z;;;2785144255;2;0;1125899907618420;4096;8;0;0;2021-10-03T18:55:10.544792Z;2021-11-11T08:10:02.370712Z;2019-12-07T09:10:14.726575Z +C:/Windows/SysWOW64/wbem/wpdcomp.mof;file;2818;33206;2019-12-07T09:10:14.726575Z;;;2785144255;2;0;1407374884329370;4096;8;0;0;2019-12-07T09:10:14.726575Z;2020-11-03T12:35:32.986633Z;2019-12-07T09:10:14.726575Z +C:/Windows/SysWOW64/wbem/wpdfs.mof;file;2749;33206;2019-12-07T09:10:14.726575Z;;;2785144255;2;0;1125899907618530;4096;8;0;0;2021-10-03T18:55:10.546788Z;2021-11-11T08:10:02.370712Z;2019-12-07T09:10:14.726575Z +C:/Windows/SysWOW64/wbem/wpdmtp.mof;file;3344;33206;2019-12-07T09:10:14.726575Z;;;2785144255;2;0;1125899907618550;4096;8;0;0;2019-12-07T09:10:14.726575Z;2020-11-03T12:35:32.877275Z;2019-12-07T09:10:14.726575Z +C:/Windows/SysWOW64/wbem/wpdshext.mof;file;3319;33206;2019-12-07T09:10:14.741601Z;;;2785144255;2;0;1125899907618590;4096;8;0;0;2021-10-16T00:20:01.346201Z;2021-11-15T13:07:18.049433Z;2019-12-07T09:10:14.741601Z +C:/Windows/SysWOW64/wbem/WPDShServiceObj.mof;file;3063;33206;2019-12-07T09:10:14.741601Z;;;2785144255;2;0;1125899907618520;4096;8;0;0;2021-10-16T00:20:01.346201Z;2021-11-15T13:07:18.049433Z;2019-12-07T09:10:14.741601Z +C:/Windows/SysWOW64/wbem/wpdsp.mof;file;2987;33206;2019-12-07T09:10:14.741601Z;;;2785144255;2;0;1125899907618450;4096;8;0;0;2021-02-22T08:01:24.913214Z;2021-02-22T08:01:24.913214Z;2019-12-07T09:10:14.741601Z +C:/Windows/SysWOW64/wbem/wscenter.mof;file;5486;33206;2019-12-07T09:08:12.190612Z;;;2785144255;4;0;1125899907630600;4096;16;0;0;2021-11-19T10:04:19.077579Z;2021-10-01T05:32:27.292Z;2019-12-07T09:08:12.190612Z +C:/Windows/SysWOW64/wbem/WsmAgent.mof;file;822;33206;2019-12-07T09:08:19.705959Z;;;2785144255;4;0;1125899907639270;4096;8;0;0;2021-11-19T10:04:19.077579Z;2021-11-15T13:07:17.563366Z;2019-12-07T09:08:19.705959Z +C:/Windows/SysWOW64/wbem/WsmAgentUninstall.mof;file;754;33206;2019-12-07T09:08:19.705959Z;;;2785144255;4;0;1125899907637030;4096;8;0;0;2021-11-19T10:04:19.077579Z;2021-11-15T13:07:17.563366Z;2019-12-07T09:08:19.705959Z +C:/Windows/SysWOW64/wbem/WsmAuto.mof;file;4529;33206;2019-12-07T09:08:19.705959Z;;;2785144255;4;0;1125899907638060;4096;16;0;0;2021-11-19T10:04:19.077579Z;2021-11-15T13:07:17.563366Z;2019-12-07T09:08:19.705959Z +C:/Windows/SysWOW64/wbem/wsp_fs.mof;file;561948;33206;2019-12-07T09:09:47.537443Z;;;2785144255;4;0;1125899907630620;4096;1104;0;0;2021-11-19T10:04:19.093212Z;2021-11-11T08:10:02.370712Z;2019-12-07T09:09:47.537443Z +C:/Windows/SysWOW64/wbem/wsp_fs_uninstall.mof;file;2774;33206;2019-12-07T09:09:47.537443Z;;;2785144255;4;0;1125899907630830;4096;8;0;0;2021-11-19T10:04:19.093212Z;2021-11-11T08:10:02.370712Z;2019-12-07T09:09:47.537443Z +C:/Windows/SysWOW64/wbem/wsp_health.mof;file;568228;33206;2019-12-07T09:09:47.537443Z;;;2785144255;4;0;1125899907629390;4096;1112;0;0;2021-11-19T10:04:19.093212Z;2021-11-11T08:10:02.370712Z;2019-12-07T09:09:47.537443Z +C:/Windows/SysWOW64/wbem/wsp_health_uninstall.mof;file;2366;33206;2019-12-07T09:09:47.537443Z;;;2785144255;4;0;1125899907629280;4096;8;0;0;2021-11-19T10:04:19.093212Z;2021-11-11T08:10:02.370712Z;2019-12-07T09:09:47.537443Z +C:/Windows/SysWOW64/wbem/wsp_sr.mof;file;606774;33206;2019-12-07T09:09:47.521738Z;;;2785144255;4;0;1125899907629710;4096;1192;0;0;2021-11-19T10:04:19.093212Z;2020-11-03T12:35:39.203919Z;2019-12-07T09:09:47.521738Z +C:/Windows/SysWOW64/wbem/wsp_sr_uninstall.mof;file;3456;33206;2019-12-07T09:09:47.521738Z;;;2785144255;4;0;1125899907630460;4096;8;0;0;2021-11-19T10:04:19.093212Z;2020-11-03T12:35:39.797529Z;2019-12-07T09:09:47.521738Z +C:/Windows/SysWOW64/wbem/xml;directory;0;16822;2019-12-07T09:15:01.018698Z;;;2785144255;1;0;5629499534534120;4096;0;0;0;2021-12-16T13:36:01.191750Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/wbem/xml/cim20.dtd;file;9018;33206;2019-12-07T09:09:15.036181Z;;;2785144255;2;0;3940649674387970;4096;24;0;0;2021-11-11T11:27:40.244045Z;2021-12-16T12:06:18.199713Z;2019-12-07T09:09:15.036181Z +C:/Windows/SysWOW64/wbem/xml/wmi20.dtd;file;12356;33206;2019-12-07T09:09:15.052516Z;;;2785144255;2;0;3940649674387990;4096;32;0;0;2021-11-11T11:27:40.247002Z;2021-12-16T12:06:18.207717Z;2019-12-07T09:09:15.052516Z +C:/Windows/SysWOW64/wbem/xml/wmi2xml.dll;file;58880;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;1125899907638120;4096;120;0;0;2021-12-03T13:53:32.457872Z;2021-11-11T11:29:33.795115Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/wbem/xsl-mappings.xml;file;2866;33206;2019-12-07T09:08:19.737167Z;;;2785144255;4;0;1125899907514910;4096;8;0;0;2021-12-11T11:27:30.313787Z;2020-11-03T12:35:21.723495Z;2019-12-07T09:08:19.737167Z +C:/Windows/SysWOW64/wbem/xwizards.mof;file;2201;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907630060;4096;8;0;0;2021-02-22T08:01:25.250328Z;2021-02-22T08:01:25.250328Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/wbemcomn.dll;file;441344;33206;2021-07-07T12:58:44.135561Z;;;2785144255;2;0;281474977790746;4096;864;0;0;2021-12-16T13:35:55.419416Z;2021-11-11T11:29:33.716325Z;2021-07-07T12:58:44.119972Z +C:/Windows/SysWOW64/wcmapi.dll;file;121344;33206;2020-11-03T12:45:45.558228Z;;;2785144255;2;0;1125899907815940;4096;240;0;0;2021-12-16T13:35:55.434385Z;2021-11-11T11:29:33.702363Z;2020-11-03T12:45:45.558228Z +C:/Windows/SysWOW64/WCN;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;16044073672828400;4096;0;0;0;2021-12-16T13:36:01.191750Z;2020-11-03T12:41:50.313665Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WCN/de-DE;directory;0;16822;2019-12-07T14:51:16.766914Z;;;2785144255;1;0;33214047252178400;4096;0;0;0;2021-12-16T13:36:01.191750Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WCN/en-US;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;1407374884227090;4096;0;0;0;2021-12-16T13:36:01.191750Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:50.313665Z +C:/Windows/SysWOW64/WcnApi.dll;file;98304;33206;2021-01-15T09:27:09.634899Z;;;2785144255;2;0;11821949022431400;4096;192;0;0;2021-12-16T13:35:55.447315Z;2021-11-11T11:29:33.710341Z;2021-01-15T09:27:09.619299Z +C:/Windows/SysWOW64/wcnwiz.dll;file;263680;33206;2021-01-15T09:27:09.619299Z;;;2785144255;2;0;23080948090857700;4096;520;0;0;2021-12-16T13:35:55.464343Z;2021-11-11T11:29:33.704357Z;2021-01-15T09:27:09.619299Z +C:/Windows/SysWOW64/wdc.dll;file;586240;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907629230;4096;1152;0;0;2021-12-16T13:35:55.483056Z;2021-11-11T11:29:34.236070Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/wdi.dll;file;88064;33206;2019-12-07T09:09:26.114855Z;;;2785144255;2;0;1125899907635760;4096;176;0;0;2021-12-16T13:35:55.486106Z;2021-11-11T11:29:33.784180Z;2019-12-07T09:09:26.114855Z +C:/Windows/SysWOW64/wdigest.dll;file;186880;33206;2020-11-03T12:45:51.713123Z;;;2785144255;2;0;562949954397170;4096;368;0;0;2021-12-16T13:35:55.496439Z;2021-11-11T11:29:33.760208Z;2020-11-03T12:45:51.713123Z +C:/Windows/SysWOW64/wdmaud.drv;file;215040;33206;2019-12-07T09:09:11.911069Z;;;2785144255;2;0;1125899907637580;4096;424;0;0;2021-12-16T13:35:55.496439Z;2021-11-11T11:29:33.711338Z;2019-12-07T09:09:11.911069Z +C:/Windows/SysWOW64/wdscore.dll;file;207168;33206;2020-11-03T12:45:44.433491Z;;;2785144255;2;0;562949954394089;4096;408;0;0;2021-12-16T13:35:55.511369Z;2021-11-11T11:29:33.685408Z;2020-11-03T12:45:44.433491Z +C:/Windows/SysWOW64/WEB.rs;file;4608;33206;2019-12-07T09:09:11.943298Z;;;2785144255;2;0;1125899907636330;4096;16;0;0;2021-12-16T13:35:55.511369Z;2021-11-11T11:29:33.708346Z;2019-12-07T09:09:11.943298Z +C:/Windows/SysWOW64/webauthn.dll;file;402432;33206;2021-10-16T00:21:16.202454Z;;;2785144255;2;0;281474977857341;4096;792;0;0;2021-12-16T13:35:55.526541Z;2021-11-11T11:29:33.743254Z;2021-10-16T00:21:16.195891Z +C:/Windows/SysWOW64/WebcamUi.dll;file;815104;33206;2021-01-15T09:27:48.661891Z;;;2785144255;2;0;18014398510105900;4096;1592;0;0;2021-12-16T13:35:55.546092Z;2021-11-11T11:29:32.518663Z;2021-01-15T09:27:48.646269Z +C:/Windows/SysWOW64/webcheck.dll;file;233984;33206;2019-12-07T09:10:00.569053Z;;;2785144255;2;0;1125899907628970;4096;464;0;0;2021-12-16T13:35:55.566124Z;2021-11-11T11:29:34.222071Z;2019-12-07T09:10:00.569053Z +C:/Windows/SysWOW64/WebClnt.dll;file;190976;33206;2021-10-16T00:21:30.736399Z;;;2785144255;2;0;281474977858000;4096;376;0;0;2021-12-16T13:35:55.586100Z;2021-11-11T11:29:31.744362Z;2021-10-16T00:21:30.736399Z +C:/Windows/SysWOW64/webio.dll;file;456704;33206;2021-11-11T11:29:00.501329Z;;;2785144255;2;0;281474977879225;4096;896;0;0;2021-12-16T13:35:55.586100Z;2021-11-11T11:38:52.002753Z;2021-11-11T11:29:00.489316Z +C:/Windows/SysWOW64/webplatstorageserver.dll;file;839168;33206;2021-11-11T11:29:08.775505Z;;;2785144255;2;0;281474977879575;4096;1640;0;0;2021-12-16T13:35:55.601246Z;2021-11-11T11:38:52.550359Z;2021-11-11T11:29:08.759548Z +C:/Windows/SysWOW64/webservices.dll;file;979272;33206;2020-11-03T12:45:49.510425Z;;;2785144255;2;0;562949954395958;4096;1920;0;0;2021-12-16T13:35:55.604316Z;2021-11-11T11:29:33.751232Z;2020-11-03T12:45:49.510425Z +C:/Windows/SysWOW64/Websocket.dll;file;36864;33206;2020-11-03T12:45:51.963028Z;;;2785144255;2;0;562949954397220;4096;72;0;0;2021-12-16T13:35:55.616092Z;2021-11-11T11:29:33.775168Z;2020-11-03T12:45:51.963028Z +C:/Windows/SysWOW64/wecapi.dll;file;57344;33206;2020-12-09T00:08:34.403830Z;;;2785144255;2;0;844424930506229;4096;112;0;0;2021-12-16T13:35:55.626451Z;2021-11-11T11:29:34.202158Z;2020-12-09T00:08:34.403830Z +C:/Windows/SysWOW64/wecutil.exe;file;76800;33206;2020-12-09T00:08:34.403830Z;;;2785144255;2;0;844424930506228;4096;152;0;0;2021-12-16T13:35:55.646116Z;2021-11-11T11:29:34.214092Z;2020-12-09T00:08:34.403830Z +C:/Windows/SysWOW64/wer.dll;file;711760;33206;2021-07-07T12:58:45.777021Z;;;2785144255;2;0;281474977790795;4096;1392;0;0;2021-12-16T13:35:55.666526Z;2021-11-11T11:29:33.759211Z;2021-07-07T12:58:45.777021Z +C:/Windows/SysWOW64/werdiagcontroller.dll;file;38912;33206;2021-07-07T12:58:45.792675Z;;;2785144255;2;0;281474977790797;4096;80;0;0;2021-12-16T13:35:55.676467Z;2021-11-11T11:29:33.760208Z;2021-07-07T12:58:45.792675Z +C:/Windows/SysWOW64/WerEnc.dll;file;20632;33206;2021-03-11T12:12:18.624369Z;;;2785144255;2;0;844424931103349;4096;48;0;0;2021-12-16T13:35:55.696146Z;2021-11-11T11:29:33.770182Z;2021-03-11T12:12:18.624369Z +C:/Windows/SysWOW64/weretw.dll;file;195696;33206;2021-07-07T12:58:45.792675Z;;;2785144255;2;0;281474977790796;4096;384;0;0;2021-12-16T13:35:55.711047Z;2021-11-11T11:29:33.760208Z;2021-07-07T12:58:45.792675Z +C:/Windows/SysWOW64/WerFault.exe;file;482640;33206;2021-07-07T12:58:45.823916Z;;;2785144255;2;0;281474977790799;4096;944;0;0;2021-12-16T13:35:55.766399Z;2021-11-11T11:29:33.767189Z;2021-07-07T12:58:45.808278Z +C:/Windows/SysWOW64/WerFaultSecure.exe;file;151864;33206;2021-03-11T12:12:18.608749Z;;;2785144255;2;0;844424931103347;4096;304;0;0;2021-12-16T13:35:55.811225Z;2021-11-11T11:29:33.772176Z;2021-03-11T12:12:18.608749Z +C:/Windows/SysWOW64/wermgr.exe;file;201552;33206;2021-07-07T12:58:45.808278Z;;;2785144255;2;0;281474977790798;4096;400;0;0;2021-12-16T13:35:55.856373Z;2021-11-11T11:29:33.780155Z;2021-07-07T12:58:45.808278Z +C:/Windows/SysWOW64/werui.dll;file;209920;33206;2021-07-07T12:58:51.864872Z;;;2785144255;2;0;281474977791106;4096;416;0;0;2021-12-16T13:35:55.876152Z;2021-11-11T11:29:34.211139Z;2021-07-07T12:58:51.864872Z +C:/Windows/SysWOW64/wevtapi.dll;file;293880;33206;2021-10-16T00:21:17.136537Z;;;2785144255;2;0;281474977857369;4096;576;0;0;2021-12-16T13:35:55.876152Z;2021-11-11T11:29:33.776165Z;2021-10-16T00:21:17.130031Z +C:/Windows/SysWOW64/wevtfwd.dll;file;75264;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907630190;4096;152;0;0;2021-12-16T13:35:55.896244Z;2021-11-11T11:29:34.211139Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/wevtutil.exe;file;187392;33206;2021-10-03T19:02:14.883081Z;;;2785144255;2;0;1688849861186940;4096;368;0;0;2021-12-16T13:35:55.906364Z;2021-11-11T11:29:33.760208Z;2021-10-03T19:02:14.867076Z +C:/Windows/SysWOW64/wextract.exe;file;136192;33206;2019-12-07T09:10:00.554367Z;;;2785144255;2;0;1125899907629450;4096;272;0;0;2021-12-16T13:35:55.926119Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:10:00.554367Z +C:/Windows/SysWOW64/WF.msc;file;115109;33206;2019-12-07T09:09:26.178036Z;;;2785144255;2;0;1125899907639120;4096;232;0;0;2021-12-16T13:35:55.936153Z;2020-11-03T12:35:45.437099Z;2019-12-07T09:09:26.178036Z +C:/Windows/SysWOW64/wfapigp.dll;file;18944;33206;2021-10-16T00:21:16.682085Z;;;2785144255;2;0;281474977857352;4096;40;0;0;2021-12-16T13:35:55.946128Z;2021-12-16T12:06:18.215714Z;2021-10-16T00:21:16.666425Z +C:/Windows/SysWOW64/wfdprov.dll;file;33792;33206;2021-10-03T19:02:00.653361Z;;;2785144255;2;0;1688849861186620;4096;72;0;0;2021-12-16T13:35:55.956474Z;2021-11-11T11:29:33.709343Z;2021-10-03T19:02:00.647967Z +C:/Windows/SysWOW64/WfHC.dll;file;69120;33206;2021-01-15T09:27:39.020056Z;;;2785144255;2;0;19140298416947300;4096;136;0;0;2021-12-16T13:35:55.971444Z;2021-11-11T11:29:31.744362Z;2021-01-15T09:27:39.004434Z +C:/Windows/SysWOW64/where.exe;file;33280;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907629750;4096;72;0;0;2021-12-16T13:35:55.986166Z;2021-11-11T11:29:34.241020Z;2019-12-07T09:10:05.475470Z +C:/Windows/SysWOW64/whhelper.dll;file;14336;33206;2019-12-07T09:09:30.506459Z;;;2785144255;2;0;1125899907628430;4096;32;0;0;2021-12-16T13:35:55.996526Z;2021-11-11T11:29:34.215132Z;2019-12-07T09:09:30.506459Z +C:/Windows/SysWOW64/whoami.exe;file;58880;33206;2019-12-07T09:10:05.475470Z;;;2785144255;2;0;1125899907628490;4096;120;0;0;2021-12-16T13:35:56.016044Z;2021-11-11T11:29:34.249996Z;2019-12-07T09:10:05.475470Z +C:/Windows/SysWOW64/wiaacmgr.exe;file;84480;33206;2021-10-03T19:02:51.691420Z;;;2785144255;2;0;1688849861187660;4096;168;0;0;2021-12-16T13:35:56.036128Z;2021-11-11T11:29:34.203158Z;2021-10-03T19:02:51.684270Z +C:/Windows/SysWOW64/wiaaut.dll;file;570368;33206;2021-01-15T09:27:34.803204Z;;;2785144255;2;0;11258999069048300;4096;1120;0;0;2021-12-16T13:35:56.051507Z;2021-11-11T11:29:34.206112Z;2021-01-15T09:27:34.787583Z +C:/Windows/SysWOW64/wiadefui.dll;file;163840;33206;2021-10-03T19:02:51.665471Z;;;2785144255;2;0;1688849861187660;4096;320;0;0;2021-12-16T13:35:56.066094Z;2021-11-11T11:29:34.208106Z;2021-10-03T19:02:51.663441Z +C:/Windows/SysWOW64/wiadss.dll;file;120320;33206;2020-11-03T12:46:01.414047Z;;;2785144255;2;0;562949954400460;4096;240;0;0;2021-12-16T13:35:56.076483Z;2021-11-11T11:29:34.202158Z;2020-11-03T12:46:01.414047Z +C:/Windows/SysWOW64/wiascanprofiles.dll;file;89600;33206;2021-01-15T09:27:34.787583Z;;;2785144255;2;0;11258999069048300;4096;176;0;0;2021-12-16T13:35:56.096324Z;2021-11-11T11:29:34.202158Z;2021-01-15T09:27:34.787583Z +C:/Windows/SysWOW64/wiashext.dll;file;67072;33206;2021-10-03T19:02:51.702515Z;;;2785144255;2;0;1688849861187660;4096;136;0;0;2021-12-16T13:35:56.106216Z;2021-11-11T11:29:34.214092Z;2021-10-03T19:02:51.699590Z +C:/Windows/SysWOW64/wiatrace.dll;file;15360;33206;2020-11-03T12:46:01.414047Z;;;2785144255;2;0;562949954400459;4096;32;0;0;2021-12-16T13:35:56.116503Z;2021-11-11T11:29:34.202158Z;2020-11-03T12:46:01.414047Z +C:/Windows/SysWOW64/WiFiDisplay.dll;file;316416;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907634990;4096;624;0;0;2021-12-16T13:35:56.136507Z;2021-11-11T11:29:33.704357Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/WimBootCompress.ini;file;2404;33206;2019-12-07T09:09:22.193610Z;;;2785144255;2;0;21110623253778800;4096;8;0;0;2021-12-16T13:35:56.136507Z;2021-11-11T08:10:02.370712Z;2019-12-07T09:09:22.193610Z +C:/Windows/SysWOW64/wimgapi.dll;file;603984;33206;2021-10-03T19:02:15.870563Z;;;2785144255;2;0;1688849861186950;4096;1184;0;0;2021-12-16T13:35:56.156339Z;2021-11-11T11:29:33.763200Z;2021-10-03T19:02:15.829956Z +C:/Windows/SysWOW64/win32k.sys;file;329728;33206;2021-11-11T11:28:59.964694Z;;;2785144255;2;0;281474977879200;4096;648;0;0;2021-12-16T13:35:56.166563Z;2021-11-11T11:38:44.480110Z;2021-11-11T11:28:59.959675Z +C:/Windows/SysWOW64/win32kfull.sys;file;2756096;33206;2021-11-11T11:29:00.029490Z;;;2785144255;2;0;281474977879201;4096;5384;0;0;2021-12-16T13:35:56.201592Z;2021-11-11T11:38:44.480110Z;2021-11-11T11:28:59.969648Z +C:/Windows/SysWOW64/win32u.dll;file;92960;33206;2021-11-11T11:28:59.956683Z;;;2785144255;2;0;281474977879199;4096;184;0;0;2021-12-16T13:35:56.201592Z;2021-11-11T11:38:53.415816Z;2021-11-11T11:28:59.955687Z +C:/Windows/SysWOW64/winbio.dll;file;129024;33206;2021-07-07T12:58:45.338227Z;;;2785144255;2;0;281474977790776;4096;256;0;0;2021-12-16T13:35:56.206130Z;2021-11-11T11:29:34.209104Z;2021-07-07T12:58:45.338227Z +C:/Windows/SysWOW64/winbioext.dll;file;33792;33206;2019-12-07T09:09:57.834605Z;;;2785144255;2;0;1125899907630730;4096;72;0;0;2021-12-16T13:35:56.226507Z;2021-11-11T11:29:34.210101Z;2019-12-07T09:09:57.834605Z +C:/Windows/SysWOW64/winbrand.dll;file;152392;33206;2021-10-03T19:02:15.756342Z;;;2785144255;2;0;1688849861186950;4096;304;0;0;2021-12-16T13:35:56.236512Z;2021-11-11T11:29:33.760208Z;2021-10-03T19:02:15.741834Z +C:/Windows/SysWOW64/wincorlib.dll;file;297984;33206;2021-11-11T11:29:00.382601Z;;;2785144255;2;0;281474977879218;4096;584;0;0;2021-12-16T13:35:56.256397Z;2021-11-11T11:38:52.267378Z;2021-11-11T11:29:00.376635Z +C:/Windows/SysWOW64/wincredprovider.dll;file;37376;33206;2021-04-17T10:35:10.055575Z;;;2785144255;2;0;844424930951802;4096;80;0;0;2021-12-16T13:35:56.266039Z;2021-11-11T11:29:34.204118Z;2021-04-17T10:35:10.046473Z +C:/Windows/SysWOW64/wincredui.dll;file;163840;33206;2019-12-07T09:09:26.099971Z;;;2785144255;2;0;9288674231889950;4096;320;0;0;2021-12-16T13:35:56.281209Z;2021-11-11T11:29:33.787167Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/WindowManagementAPI.dll;file;468440;33206;2021-06-10T14:01:39.672279Z;;;2785144255;2;0;281474977765139;4096;920;0;0;2021-12-16T13:35:56.281209Z;2021-11-11T11:29:33.749237Z;2021-06-10T14:01:39.656625Z +C:/Windows/SysWOW64/Windows.AccountsControl.dll;file;722432;33206;2021-01-15T09:27:13.277421Z;;;2785144255;2;0;16607023626519700;4096;1416;0;0;2021-12-16T13:35:56.301430Z;2021-11-11T11:29:33.737270Z;2021-01-15T09:27:13.261770Z +C:/Windows/SysWOW64/Windows.AI.MachineLearning.dll;file;3978240;33206;2020-11-03T12:45:50.541517Z;;;2785144255;2;0;562949954396507;4096;7776;0;0;2021-12-16T13:35:56.316492Z;2021-11-11T11:29:33.755222Z;2020-11-03T12:45:50.510273Z +C:/Windows/SysWOW64/Windows.AI.MachineLearning.Preview.dll;file;87552;33206;2021-01-15T09:27:16.749214Z;;;2785144255;2;0;14073748836151500;4096;176;0;0;2021-12-16T13:35:56.336135Z;2021-11-11T11:29:33.753227Z;2021-01-15T09:27:16.749214Z +C:/Windows/SysWOW64/Windows.ApplicationModel.Background.SystemEventsBroker.dll;file;91648;33206;2021-10-03T19:02:03.849214Z;;;2785144255;2;0;1970324837897260;4096;184;0;0;2021-12-16T13:35:56.346479Z;2021-11-11T11:29:33.745249Z;2021-10-03T19:02:03.840872Z +C:/Windows/SysWOW64/Windows.ApplicationModel.Background.TimeBroker.dll;file;25600;33206;2021-01-15T09:27:12.277627Z;;;2785144255;2;0;2533274790986880;4096;56;0;0;2021-12-16T13:35:56.356522Z;2021-11-11T11:29:33.746245Z;2021-01-15T09:27:12.277627Z +C:/Windows/SysWOW64/Windows.ApplicationModel.ConversationalAgent.dll;file;615424;33206;2021-10-16T00:21:15.262084Z;;;2785144255;2;0;281474977857300;4096;1208;0;0;2021-12-16T13:35:56.376034Z;2021-11-11T11:29:33.700367Z;2021-10-16T00:21:15.246422Z +C:/Windows/SysWOW64/windows.applicationmodel.conversationalagent.internal.proxystub.dll;file;40448;33206;2019-12-07T09:09:11.864181Z;;;2785144255;2;0;1407374884348680;4096;80;0;0;2021-12-16T13:35:56.386033Z;2021-11-15T13:07:17.581442Z;2019-12-07T09:09:11.864181Z +C:/Windows/SysWOW64/windows.applicationmodel.conversationalagent.proxystub.dll;file;49664;33206;2019-12-07T09:09:11.864181Z;;;2785144255;2;0;1125899907635720;4096;104;0;0;2021-12-16T13:35:56.396516Z;2021-11-15T13:07:17.581454Z;2019-12-07T09:09:11.864181Z +C:/Windows/SysWOW64/Windows.ApplicationModel.Core.dll;file;160768;33206;2021-01-15T09:27:12.230789Z;;;2785144255;2;0;2533274790986880;4096;320;0;0;2021-12-16T13:35:56.406570Z;2021-11-11T11:29:33.736273Z;2021-01-15T09:27:12.230789Z +C:/Windows/SysWOW64/windows.applicationmodel.datatransfer.dll;file;596032;33206;2021-01-15T09:27:13.339902Z;;;2785144255;2;0;11821949022438600;4096;1168;0;0;2021-12-16T13:35:56.431025Z;2021-11-11T11:29:33.741259Z;2021-01-15T09:27:13.324255Z +C:/Windows/SysWOW64/Windows.ApplicationModel.dll;file;720536;33206;2021-01-15T09:27:13.199285Z;;;2785144255;2;0;2814749767697600;4096;1408;0;0;2021-12-16T13:35:56.431025Z;2021-11-11T11:29:33.741259Z;2021-01-15T09:27:13.183701Z +C:/Windows/SysWOW64/Windows.ApplicationModel.LockScreen.dll;file;379392;33206;2021-01-15T09:27:21.178400Z;;;2785144255;2;0;9851624185492640;4096;744;0;0;2021-12-16T13:35:56.446148Z;2021-11-11T11:29:30.993461Z;2021-01-15T09:27:21.178400Z +C:/Windows/SysWOW64/Windows.ApplicationModel.Store.dll;file;1692160;33206;2021-04-17T10:34:35.096340Z;;;2785144255;2;0;844424930951392;4096;3312;0;0;2021-12-16T13:35:56.461477Z;2021-11-11T11:29:33.747242Z;2021-04-17T10:34:34.927278Z +C:/Windows/SysWOW64/Windows.ApplicationModel.Store.Preview.DOSettings.dll;file;52736;33206;2021-10-16T00:21:16.149025Z;;;2785144255;2;0;281474977857337;4096;104;0;0;2021-12-16T13:35:56.476527Z;2021-11-11T11:29:33.739265Z;2021-10-16T00:21:16.133445Z +C:/Windows/SysWOW64/Windows.ApplicationModel.Store.TestingFramework.dll;file;234496;33206;2021-04-17T10:34:35.183358Z;;;2785144255;2;0;844424930951393;4096;464;0;0;2021-12-16T13:35:56.486438Z;2021-11-11T11:29:33.747242Z;2021-04-17T10:34:35.160811Z +C:/Windows/SysWOW64/Windows.ApplicationModel.Wallet.dll;file;412160;33206;2021-01-15T09:27:15.718232Z;;;2785144255;2;0;7318349395095720;4096;808;0;0;2021-12-16T13:35:56.506068Z;2021-11-11T11:29:33.755222Z;2021-01-15T09:27:15.702584Z +C:/Windows/SysWOW64/Windows.Data.Pdf.dll;file;6030336;33206;2021-06-10T14:01:38.040390Z;;;2785144255;2;0;281474977764852;4096;11784;0;0;2021-12-16T13:35:56.536475Z;2021-11-11T11:29:33.743254Z;2021-06-10T14:01:37.917928Z +C:/Windows/SysWOW64/Windows.Devices.AllJoyn.dll;file;445952;33206;2021-01-15T09:27:13.293012Z;;;2785144255;2;0;2814749767697610;4096;872;0;0;2021-12-16T13:35:56.546098Z;2021-11-11T11:29:34.206112Z;2021-01-15T09:27:13.293012Z +C:/Windows/SysWOW64/Windows.Devices.Background.dll;file;67072;33206;2021-01-15T09:27:12.590053Z;;;2785144255;2;0;2533274790986900;4096;136;0;0;2021-12-16T13:35:56.561180Z;2021-11-11T11:29:33.740262Z;2021-01-15T09:27:12.574483Z +C:/Windows/SysWOW64/Windows.Devices.Background.ps.dll;file;14336;33206;2019-12-07T09:09:15.176871Z;;;2785144255;2;0;1407374884348350;4096;32;0;0;2021-12-16T13:35:56.566259Z;2021-11-11T11:29:33.735274Z;2019-12-07T09:09:15.176871Z +C:/Windows/SysWOW64/Windows.Devices.Bluetooth.dll;file;1607680;33206;2021-01-15T09:27:16.718003Z;;;2785144255;2;0;10414574138913000;4096;3144;0;0;2021-12-16T13:35:56.592999Z;2021-11-11T11:29:33.746245Z;2021-01-15T09:27:16.686741Z +C:/Windows/SysWOW64/Windows.Devices.Custom.dll;file;72704;33206;2021-01-15T09:27:16.671121Z;;;2785144255;2;0;5348024558121170;4096;144;0;0;2021-12-16T13:35:56.606689Z;2021-11-11T11:29:33.757217Z;2021-01-15T09:27:16.671121Z +C:/Windows/SysWOW64/Windows.Devices.Custom.ps.dll;file;15872;33206;2019-12-07T09:09:20.804527Z;;;2785144255;2;0;1125899907634840;4096;32;0;0;2021-12-16T13:35:56.616118Z;2021-11-11T11:29:33.756219Z;2019-12-07T09:09:20.804527Z +C:/Windows/SysWOW64/Windows.Devices.Enumeration.dll;file;408016;33206;2021-01-15T09:27:16.389951Z;;;2785144255;2;0;5066549581410490;4096;800;0;0;2021-12-16T13:35:56.626468Z;2021-11-11T11:29:33.753227Z;2021-01-15T09:27:16.374336Z +C:/Windows/SysWOW64/Windows.Devices.Haptics.dll;file;133632;33206;2021-01-15T09:27:12.590053Z;;;2785144255;2;0;2533274790986900;4096;264;0;0;2021-12-16T13:35:56.636513Z;2021-11-11T11:29:33.737270Z;2021-01-15T09:27:12.590053Z +C:/Windows/SysWOW64/Windows.Devices.HumanInterfaceDevice.dll;file;190464;33206;2021-01-15T09:27:16.671121Z;;;2785144255;2;0;10977524092334300;4096;376;0;0;2021-12-16T13:35:56.656102Z;2021-11-11T11:29:33.791164Z;2021-01-15T09:27:16.671121Z +C:/Windows/SysWOW64/Windows.Devices.Lights.dll;file;276992;33206;2021-02-11T15:05:14.457879Z;;;2785144255;2;0;562949954318930;4096;544;0;0;2021-12-16T13:35:56.671510Z;2021-11-11T11:29:33.745249Z;2021-02-11T15:05:14.457879Z +C:/Windows/SysWOW64/Windows.Devices.LowLevel.dll;file;388608;33206;2021-01-15T09:27:16.780490Z;;;2785144255;2;0;9007199255359710;4096;760;0;0;2021-12-16T13:35:56.686142Z;2021-11-11T11:29:33.757217Z;2021-01-15T09:27:16.764833Z +C:/Windows/SysWOW64/Windows.Devices.Midi.dll;file;318464;33206;2021-01-15T09:27:09.188349Z;;;2785144255;2;0;3940649674530920;4096;624;0;0;2021-12-16T13:35:56.701140Z;2021-11-11T11:29:33.701365Z;2021-01-15T09:27:09.172761Z +C:/Windows/SysWOW64/Windows.Devices.Perception.dll;file;1589248;33206;2021-01-15T09:27:18.192766Z;;;2785144255;2;0;10696049115624000;4096;3104;0;0;2021-12-16T13:35:56.736460Z;2021-11-11T11:29:33.780155Z;2021-01-15T09:27:18.161510Z +C:/Windows/SysWOW64/Windows.Devices.Picker.dll;file;342016;33206;2021-04-17T10:35:55.397341Z;;;2785144255;2;0;844424930952434;4096;672;0;0;2021-12-16T13:35:56.756346Z;2021-11-11T11:29:33.735274Z;2021-04-17T10:35:55.371954Z +C:/Windows/SysWOW64/Windows.Devices.PointOfService.dll;file;1475072;33206;2021-10-03T19:02:11.570043Z;;;2785144255;2;0;1688849861186910;4096;2888;0;0;2021-12-16T13:35:56.776096Z;2021-11-11T11:29:33.736273Z;2021-10-03T19:02:11.427129Z +C:/Windows/SysWOW64/Windows.Devices.Portable.dll;file;39424;33206;2021-01-15T09:27:11.494064Z;;;2785144255;2;0;2533274790986850;4096;80;0;0;2021-12-16T13:35:56.786114Z;2021-11-11T11:29:33.728293Z;2021-01-15T09:27:11.494064Z +C:/Windows/SysWOW64/Windows.Devices.Printers.dll;file;67584;33206;2021-01-15T09:27:12.590053Z;;;2785144255;2;0;2533274790986900;4096;136;0;0;2021-12-16T13:35:56.796485Z;2021-11-11T11:29:33.740262Z;2021-01-15T09:27:12.590053Z +C:/Windows/SysWOW64/Windows.Devices.Printers.Extensions.dll;file;35328;33206;2021-01-15T09:27:21.459610Z;;;2785144255;2;0;16325548649837800;4096;72;0;0;2021-12-16T13:35:56.811023Z;2021-11-11T11:29:33.806085Z;2021-01-15T09:27:21.459610Z +C:/Windows/SysWOW64/Windows.Devices.Radios.dll;file;159232;33206;2021-01-15T09:27:16.389951Z;;;2785144255;2;0;5348024558121150;4096;312;0;0;2021-12-16T13:35:56.826168Z;2021-11-11T11:29:33.746245Z;2021-01-15T09:27:16.389951Z +C:/Windows/SysWOW64/Windows.Devices.Scanners.dll;file;167936;33206;2021-01-15T09:27:34.818826Z;;;2785144255;2;0;6755399441677840;4096;328;0;0;2021-12-16T13:35:56.836188Z;2021-11-11T11:29:34.209104Z;2021-01-15T09:27:34.818826Z +C:/Windows/SysWOW64/Windows.Devices.Sensors.dll;file;1008208;33206;2021-01-15T09:27:21.272129Z;;;2785144255;2;0;9007199255360680;4096;1976;0;0;2021-12-16T13:35:56.856566Z;2021-11-11T11:29:31.005431Z;2021-01-15T09:27:21.256507Z +C:/Windows/SysWOW64/Windows.Devices.SerialCommunication.dll;file;108544;33206;2021-01-15T09:27:16.686741Z;;;2785144255;2;0;15199648742994100;4096;216;0;0;2021-12-16T13:35:56.866138Z;2021-11-11T11:29:33.814066Z;2021-01-15T09:27:16.686741Z +C:/Windows/SysWOW64/Windows.Devices.SmartCards.dll;file;541184;33206;2021-01-15T09:27:13.043108Z;;;2785144255;2;0;2533274790986930;4096;1064;0;0;2021-12-16T13:35:56.886176Z;2021-11-11T11:29:33.740262Z;2021-01-15T09:27:13.027479Z +C:/Windows/SysWOW64/Windows.Devices.SmartCards.Phone.dll;file;413184;33206;2021-01-15T09:27:13.417982Z;;;2785144255;2;0;5348024558093530;4096;808;0;0;2021-12-16T13:35:56.900898Z;2021-11-11T11:29:33.738267Z;2021-01-15T09:27:13.417982Z +C:/Windows/SysWOW64/Windows.Devices.Usb.dll;file;281600;33206;2021-01-15T09:27:12.293249Z;;;2785144255;2;0;2533274790986890;4096;552;0;0;2021-12-16T13:35:56.911478Z;2021-11-11T11:29:33.750234Z;2021-01-15T09:27:12.293249Z +C:/Windows/SysWOW64/Windows.Devices.WiFi.dll;file;208384;33206;2021-01-15T09:27:16.405543Z;;;2785144255;2;0;10696049115623600;4096;408;0;0;2021-12-16T13:35:56.926064Z;2021-11-11T11:29:33.751232Z;2021-01-15T09:27:16.389951Z +C:/Windows/SysWOW64/Windows.Devices.WiFiDirect.dll;file;361472;33206;2021-01-15T09:27:09.744225Z;;;2785144255;2;0;17169973579933900;4096;712;0;0;2021-12-16T13:35:56.941280Z;2021-11-11T11:29:33.731285Z;2021-01-15T09:27:09.744225Z +C:/Windows/SysWOW64/Windows.Energy.dll;file;133632;33206;2021-01-15T09:27:16.405543Z;;;2785144255;2;0;9570149208780990;4096;264;0;0;2021-12-16T13:35:56.956378Z;2021-11-11T11:29:34.238065Z;2021-01-15T09:27:16.405543Z +C:/Windows/SysWOW64/Windows.FileExplorer.Common.dll;file;281600;33206;2021-11-11T11:29:01.315252Z;;;2785144255;2;0;281474977879257;4096;552;0;0;2021-12-16T13:35:56.966391Z;2021-11-11T11:38:52.702735Z;2021-11-11T11:29:01.309268Z +C:/Windows/SysWOW64/Windows.Gaming.Input.dll;file;568320;33206;2021-01-15T09:27:12.949343Z;;;2785144255;2;0;2533274790986920;4096;1112;0;0;2021-12-16T13:35:56.986488Z;2021-11-11T11:29:33.733279Z;2021-01-15T09:27:12.933722Z +C:/Windows/SysWOW64/Windows.Gaming.Preview.dll;file;291328;33206;2021-01-15T09:27:13.449225Z;;;2785144255;2;0;9570149208753380;4096;576;0;0;2021-12-16T13:35:57.001072Z;2021-11-11T11:29:33.736273Z;2021-01-15T09:27:13.449225Z +C:/Windows/SysWOW64/Windows.Gaming.UI.GameBar.dll;file;64000;33206;2021-01-15T09:27:13.449225Z;;;2785144255;2;0;23080948090864900;4096;128;0;0;2021-12-16T13:35:57.011122Z;2021-11-11T11:29:33.732282Z;2021-01-15T09:27:13.449225Z +C:/Windows/SysWOW64/Windows.Gaming.XboxLive.Storage.dll;file;293888;33206;2021-01-15T09:27:09.047804Z;;;2785144255;2;0;3940649674530910;4096;576;0;0;2021-12-16T13:35:57.031291Z;2021-11-11T11:29:33.705354Z;2021-01-15T09:27:09.047804Z +C:/Windows/SysWOW64/Windows.Globalization.dll;file;1314816;33206;2021-01-15T09:27:16.436831Z;;;2785144255;2;0;7318349395095740;4096;2568;0;0;2021-12-16T13:35:57.031291Z;2021-11-11T11:29:33.753227Z;2021-01-15T09:27:16.405543Z +C:/Windows/SysWOW64/Windows.Globalization.Fontgroups.dll;file;49664;33206;2021-01-15T09:27:12.636953Z;;;2785144255;2;0;2533274790986900;4096;104;0;0;2021-12-16T13:35:57.041378Z;2021-11-11T11:29:33.783178Z;2021-01-15T09:27:12.636953Z +C:/Windows/SysWOW64/Windows.Globalization.PhoneNumberFormatting.dll;file;587776;33206;2021-01-15T09:27:15.499508Z;;;2785144255;2;0;27584547718256000;4096;1152;0;0;2021-12-16T13:35:57.061507Z;2021-11-11T11:29:33.754225Z;2021-01-15T09:27:15.483923Z +C:/Windows/SysWOW64/Windows.Graphics.Display.BrightnessOverride.dll;file;102208;33206;2021-01-15T09:27:21.256507Z;;;2785144255;2;0;8162774325228710;4096;200;0;0;2021-12-16T13:35:57.076121Z;2021-11-11T11:29:30.947615Z;2021-01-15T09:27:21.256507Z +C:/Windows/SysWOW64/Windows.Graphics.Display.DisplayEnhancementOverride.dll;file;262872;33206;2021-04-17T10:34:34.065982Z;;;2785144255;2;0;844424930951382;4096;520;0;0;2021-12-16T13:35:57.086493Z;2021-11-11T11:29:33.733279Z;2021-04-17T10:34:34.039993Z +C:/Windows/SysWOW64/Windows.Graphics.dll;file;436424;33206;2021-10-03T19:02:14.091788Z;;;2785144255;2;0;1688849861186930;4096;856;0;0;2021-12-16T13:35:57.086493Z;2021-11-11T11:29:33.753227Z;2021-10-03T19:02:14.053986Z +C:/Windows/SysWOW64/Windows.Graphics.Printing.3D.dll;file;1550848;33206;2021-01-15T09:27:12.793133Z;;;2785144255;2;0;2533274790986910;4096;3032;0;0;2021-12-16T13:35:57.106133Z;2021-11-11T11:29:33.743254Z;2021-01-15T09:27:12.761924Z +C:/Windows/SysWOW64/Windows.Graphics.Printing.dll;file;591872;33206;2021-01-15T09:27:12.761924Z;;;2785144255;2;0;2533274790986910;4096;1160;0;0;2021-12-16T13:35:57.126107Z;2021-11-11T11:29:33.816060Z;2021-01-15T09:27:12.746307Z +C:/Windows/SysWOW64/Windows.Graphics.Printing.Workflow.dll;file;329216;33206;2021-01-15T09:27:21.459610Z;;;2785144255;2;0;5629499534832830;4096;648;0;0;2021-12-16T13:35:57.141434Z;2021-11-11T11:29:33.806085Z;2021-01-15T09:27:21.443962Z +C:/Windows/SysWOW64/Windows.Graphics.Printing.Workflow.Native.dll;file;12288;33206;2020-11-03T12:45:53.493948Z;;;2785144255;2;0;7036874418743020;4096;24;0;0;2021-12-16T13:35:57.151512Z;2021-11-11T11:29:33.816060Z;2020-11-03T12:45:53.493948Z +C:/Windows/SysWOW64/Windows.Internal.Bluetooth.dll;file;403456;33206;2021-03-11T12:12:17.737755Z;;;2785144255;2;0;844424931103278;4096;792;0;0;2021-12-16T13:35:57.166170Z;2021-11-11T11:29:33.749237Z;2021-03-11T12:12:17.737755Z +C:/Windows/SysWOW64/Windows.Internal.Devices.Sensors.dll;file;215552;33206;2021-01-15T09:27:16.796076Z;;;2785144255;2;0;10414574138913000;4096;424;0;0;2021-12-16T13:35:57.186458Z;2021-11-11T11:29:33.746245Z;2021-01-15T09:27:16.796076Z +C:/Windows/SysWOW64/Windows.Internal.Graphics.Display.DisplayColorManagement.dll;file;186880;33206;2021-10-16T00:21:16.195891Z;;;2785144255;2;0;281474977857340;4096;368;0;0;2021-12-16T13:35:57.201101Z;2021-11-11T11:29:33.741259Z;2021-10-16T00:21:16.180270Z +C:/Windows/SysWOW64/Windows.Internal.Graphics.Display.DisplayEnhancementManagement.dll;file;139776;33206;2021-01-15T09:27:14.765307Z;;;2785144255;2;0;4222124651270970;4096;280;0;0;2021-12-16T13:35:57.206153Z;2021-11-11T11:29:33.740262Z;2021-01-15T09:27:14.765307Z +C:/Windows/SysWOW64/Windows.Internal.Management.dll;file;715264;33206;2021-10-03T19:02:17.755424Z;;;2785144255;2;0;1688849861186990;4096;1400;0;0;2021-12-16T13:35:57.226547Z;2021-11-11T11:29:33.790129Z;2021-10-03T19:02:17.699606Z +C:/Windows/SysWOW64/Windows.Internal.SecurityMitigationsBroker.dll;file;40960;33206;2021-01-15T09:27:37.629774Z;;;2785144255;2;0;19421773393657800;4096;80;0;0;2021-12-16T13:35:57.236484Z;2021-11-11T11:29:34.220113Z;2021-01-15T09:27:37.629774Z +C:/Windows/SysWOW64/windows.internal.shellcommon.AccountsControlExperience.dll;file;67584;33206;2021-01-15T09:27:09.822332Z;;;2785144255;2;0;2533274790980680;4096;136;0;0;2021-12-16T13:35:57.246473Z;2021-11-11T11:29:33.721311Z;2021-01-15T09:27:09.822332Z +C:/Windows/SysWOW64/Windows.Internal.ShellCommon.PrintExperience.dll;file;31232;33206;2021-01-15T09:27:22.092897Z;;;2785144255;2;0;11258999069046000;4096;64;0;0;2021-12-16T13:35:57.266528Z;2021-11-11T11:29:33.808081Z;2021-01-15T09:27:22.092897Z +C:/Windows/SysWOW64/windows.internal.shellcommon.TokenBrokerModal.dll;file;47616;33206;2021-01-15T09:27:09.822332Z;;;2785144255;2;0;2533274790980980;4096;96;0;0;2021-12-16T13:35:57.276514Z;2021-11-11T11:29:33.725301Z;2021-01-15T09:27:09.822332Z +C:/Windows/SysWOW64/Windows.Internal.UI.Logon.ProxyStub.dll;file;131072;33206;2019-12-07T09:09:26.083668Z;;;2785144255;2;0;5066549581230120;4096;256;0;0;2021-12-16T13:35:57.286477Z;2021-11-11T11:29:33.784180Z;2019-12-07T09:09:26.083668Z +C:/Windows/SysWOW64/Windows.Internal.UI.Shell.WindowTabManager.dll;file;266240;33206;2020-12-09T00:08:27.059301Z;;;2785144255;2;0;562949953795055;4096;520;0;0;2021-12-16T13:35:57.301052Z;2021-11-11T11:29:33.729290Z;2020-12-09T00:08:27.059301Z +C:/Windows/SysWOW64/Windows.Management.Workplace.dll;file;179536;33206;2021-03-11T12:12:17.759882Z;;;2785144255;2;0;844424931103279;4096;352;0;0;2021-12-16T13:35:57.316127Z;2021-11-11T11:29:33.747242Z;2021-03-11T12:12:17.753375Z +C:/Windows/SysWOW64/Windows.Management.Workplace.WorkplaceSettings.dll;file;27136;33206;2021-01-15T09:27:11.494064Z;;;2785144255;2;0;2533274790986850;4096;56;0;0;2021-12-16T13:35:57.326136Z;2021-11-11T11:29:33.716325Z;2021-01-15T09:27:11.494064Z +C:/Windows/SysWOW64/Windows.Media.Audio.dll;file;1254912;33206;2021-10-16T00:21:34.337864Z;;;2785144255;2;0;281474977858063;4096;2456;0;0;2021-12-16T13:35:57.326136Z;2021-11-11T11:29:34.302854Z;2021-10-16T00:21:34.315466Z +C:/Windows/SysWOW64/Windows.Media.BackgroundMediaPlayback.dll;file;740352;33206;2021-10-16T00:21:18.871490Z;;;2785144255;2;0;281474977857645;4096;1448;0;0;2021-12-16T13:35:57.346425Z;2021-11-11T11:29:33.795115Z;2021-10-16T00:21:18.864983Z +C:/Windows/SysWOW64/Windows.Media.BackgroundPlayback.exe;file;12288;33206;2019-12-07T09:09:27.630388Z;;;2785144255;2;0;1125899907635980;4096;24;0;0;2021-12-16T13:35:57.356470Z;2021-11-15T13:07:18.033808Z;2019-12-07T09:09:27.630388Z +C:/Windows/SysWOW64/Windows.Media.Devices.dll;file;398192;33206;2021-01-15T09:27:09.204002Z;;;2785144255;2;0;3940649674530920;4096;784;0;0;2021-12-16T13:35:57.371107Z;2021-11-11T11:29:33.707349Z;2021-01-15T09:27:09.188349Z +C:/Windows/SysWOW64/Windows.Media.dll;file;5361304;33206;2021-11-11T11:29:14.212500Z;;;2785144255;2;0;281474977879660;4096;10472;0;0;2021-12-16T13:35:57.371107Z;2021-11-11T11:38:52.580903Z;2021-11-11T11:29:14.065336Z +C:/Windows/SysWOW64/Windows.Media.Editing.dll;file;1028608;33206;2021-01-15T09:27:48.318222Z;;;2785144255;2;0;11258999069050100;4096;2016;0;0;2021-12-16T13:35:57.386195Z;2021-11-11T11:29:34.302854Z;2021-01-15T09:27:48.302600Z +C:/Windows/SysWOW64/Windows.Media.FaceAnalysis.dll;file;1247744;33206;2021-01-15T09:27:13.230555Z;;;2785144255;2;0;17169973579941100;4096;2440;0;0;2021-12-16T13:35:57.406087Z;2021-11-11T11:29:33.731285Z;2021-01-15T09:27:13.214935Z +C:/Windows/SysWOW64/Windows.Media.Import.dll;file;564224;33206;2021-01-15T09:27:12.668159Z;;;2785144255;2;0;2533274790986910;4096;1104;0;0;2021-12-16T13:35:57.421444Z;2021-11-11T11:29:33.741259Z;2021-01-15T09:27:12.652539Z +C:/Windows/SysWOW64/Windows.Media.MediaControl.dll;file;467960;33206;2021-01-15T09:27:18.801971Z;;;2785144255;2;0;4222124651279000;4096;920;0;0;2021-12-16T13:35:57.421444Z;2021-11-11T11:29:33.779158Z;2021-01-15T09:27:18.786355Z +C:/Windows/SysWOW64/Windows.Media.MixedRealityCapture.dll;file;904192;33206;2021-01-15T09:27:49.536684Z;;;2785144255;2;0;32932572275770600;4096;1768;0;0;2021-12-16T13:35:57.436507Z;2021-11-11T11:29:32.522618Z;2021-01-15T09:27:49.521062Z +C:/Windows/SysWOW64/Windows.Media.Ocr.dll;file;689152;33206;2021-01-15T09:27:13.246178Z;;;2785144255;2;0;7599824371778750;4096;1352;0;0;2021-12-16T13:35:57.456090Z;2021-11-11T11:29:33.739265Z;2021-01-15T09:27:13.246178Z +C:/Windows/SysWOW64/Windows.Media.Playback.BackgroundMediaPlayer.dll;file;738816;33206;2021-10-16T00:21:18.849342Z;;;2785144255;2;0;281474977857644;4096;1448;0;0;2021-12-16T13:35:57.476032Z;2021-11-11T11:29:33.782192Z;2021-10-16T00:21:18.833689Z +C:/Windows/SysWOW64/Windows.Media.Playback.MediaPlayer.dll;file;721408;33206;2021-10-16T00:21:18.833689Z;;;2785144255;2;0;281474977857643;4096;1416;0;0;2021-12-16T13:35:57.491539Z;2021-11-11T11:29:33.783178Z;2021-10-16T00:21:18.818066Z +C:/Windows/SysWOW64/Windows.Media.Playback.ProxyStub.dll;file;57856;33206;2019-12-07T09:09:27.630388Z;;;2785144255;2;0;1125899907636100;4096;120;0;0;2021-12-16T13:35:57.496141Z;2021-11-15T13:07:18.033808Z;2019-12-07T09:09:27.630388Z +C:/Windows/SysWOW64/Windows.Media.Protection.PlayReady.dll;file;8886384;33206;2021-11-11T11:29:01.039670Z;;;2785144255;2;0;281474977879239;4096;17360;0;0;2021-12-16T13:35:57.526082Z;2021-11-11T11:38:53.314574Z;2021-11-11T11:29:00.868129Z +C:/Windows/SysWOW64/Windows.Media.Speech.dll;file;1260544;33206;2021-06-10T14:01:40.674358Z;;;2785144255;2;0;281474977765167;4096;2464;0;0;2021-12-16T13:35:57.541048Z;2021-11-11T11:29:33.776165Z;2021-06-10T14:01:40.643114Z +C:/Windows/SysWOW64/Windows.Media.Streaming.dll;file;856064;33206;2021-10-16T00:21:34.645262Z;;;2785144255;2;0;281474977858070;4096;1672;0;0;2021-12-16T13:35:57.556522Z;2021-11-11T11:29:32.508689Z;2021-10-16T00:21:34.629595Z +C:/Windows/SysWOW64/Windows.Media.Streaming.ps.dll;file;112128;33206;2019-12-07T14:54:38.344245Z;;;2785144255;2;0;1125899907618490;4096;224;0;0;2021-12-16T13:35:57.566386Z;2021-11-11T11:29:32.508689Z;2019-12-07T09:10:14.726575Z +C:/Windows/SysWOW64/Windows.Mirage.dll;file;3378936;33206;2021-06-10T14:01:51.038461Z;;;2785144255;2;0;281474977765846;4096;6600;0;0;2021-12-16T13:35:57.596360Z;2021-11-11T11:29:31.724687Z;2021-06-10T14:01:50.938190Z +C:/Windows/SysWOW64/Windows.Mirage.Internal.dll;file;580608;33206;2021-10-03T19:02:58.336309Z;;;2785144255;2;0;1688849861187690;4096;1136;0;0;2021-12-16T13:35:57.606499Z;2021-11-11T11:29:31.727705Z;2021-10-03T19:02:58.299634Z +C:/Windows/SysWOW64/Windows.Networking.BackgroundTransfer.BackgroundManagerPolicy.dll;file;79872;33206;2021-01-15T09:27:11.996480Z;;;2785144255;2;0;2533274790986860;4096;160;0;0;2021-12-16T13:35:57.621521Z;2021-11-11T11:29:33.757217Z;2021-01-15T09:27:11.996480Z +C:/Windows/SysWOW64/Windows.Networking.BackgroundTransfer.dll;file;958976;33206;2021-01-15T09:27:11.980855Z;;;2785144255;2;0;2533274790986860;4096;1880;0;0;2021-12-16T13:35:57.641198Z;2021-11-11T11:29:33.752230Z;2021-01-15T09:27:11.965229Z +C:/Windows/SysWOW64/Windows.Networking.Connectivity.dll;file;564736;33206;2021-01-15T09:27:12.012096Z;;;2785144255;2;0;2533274790986860;4096;1104;0;0;2021-12-16T13:35:57.641198Z;2021-11-11T11:29:33.746245Z;2021-01-15T09:27:11.996480Z +C:/Windows/SysWOW64/Windows.Networking.dll;file;783872;33206;2021-01-15T09:27:11.949572Z;;;2785144255;2;0;2533274790986860;4096;1536;0;0;2021-12-16T13:35:57.656070Z;2021-11-11T11:29:33.757217Z;2021-01-15T09:27:11.949572Z +C:/Windows/SysWOW64/Windows.Networking.HostName.dll;file;129536;33206;2021-01-15T09:27:12.012096Z;;;2785144255;2;0;2533274790986860;4096;256;0;0;2021-12-16T13:35:57.671453Z;2021-11-11T11:29:33.746245Z;2021-01-15T09:27:12.012096Z +C:/Windows/SysWOW64/Windows.Networking.NetworkOperators.ESim.dll;file;280064;33206;2021-01-15T09:27:15.187082Z;;;2785144255;2;0;5066549581402990;4096;552;0;0;2021-12-16T13:35:57.686075Z;2021-11-11T11:29:34.217084Z;2021-01-15T09:27:15.187082Z +C:/Windows/SysWOW64/Windows.Networking.NetworkOperators.HotspotAuthentication.dll;file;104960;33206;2021-01-15T09:27:09.603633Z;;;2785144255;2;0;6473924464928980;4096;208;0;0;2021-12-16T13:35:57.696512Z;2021-11-11T11:29:33.734277Z;2021-01-15T09:27:09.603633Z +C:/Windows/SysWOW64/Windows.Networking.Proximity.dll;file;292352;33206;2021-01-15T09:27:12.824372Z;;;2785144255;2;0;2533274790986910;4096;576;0;0;2021-12-16T13:35:57.716269Z;2021-11-11T11:29:33.738267Z;2021-01-15T09:27:12.808790Z +C:/Windows/SysWOW64/Windows.Networking.ServiceDiscovery.Dnssd.dll;file;82944;33206;2021-01-15T09:27:13.433634Z;;;2785144255;2;0;26177172834682100;4096;168;0;0;2021-12-16T13:35:57.726554Z;2021-11-11T11:29:33.738267Z;2021-01-15T09:27:13.433634Z +C:/Windows/SysWOW64/Windows.Networking.Sockets.PushEnabledApplication.dll;file;120320;33206;2021-01-15T09:27:12.027688Z;;;2785144255;2;0;2533274790986860;4096;240;0;0;2021-12-16T13:35:57.746033Z;2021-11-11T11:29:33.755222Z;2021-01-15T09:27:12.027688Z +C:/Windows/SysWOW64/Windows.Networking.Vpn.dll;file;1148928;33206;2021-10-03T19:02:13.057730Z;;;2785144255;2;0;1688849861186920;4096;2248;0;0;2021-12-16T13:35:57.761137Z;2021-11-11T11:29:33.751232Z;2021-10-03T19:02:12.975632Z +C:/Windows/SysWOW64/Windows.Networking.XboxLive.ProxyStub.dll;file;40448;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;1125899907629650;4096;80;0;0;2021-12-16T13:35:57.776145Z;2021-11-11T11:29:34.199161Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/Windows.Payments.dll;file;409600;33206;2021-01-15T09:27:15.202703Z;;;2785144255;2;0;36310271996285800;4096;800;0;0;2021-12-16T13:35:57.786488Z;2021-11-11T11:29:33.732282Z;2021-01-15T09:27:15.202703Z +C:/Windows/SysWOW64/Windows.Perception.Stub.dll;file;624976;33206;2021-06-10T14:01:38.206686Z;;;2785144255;2;0;281474977764858;4096;1224;0;0;2021-12-16T13:35:57.806116Z;2021-11-11T11:29:33.739265Z;2021-06-10T14:01:38.191061Z +C:/Windows/SysWOW64/Windows.Security.Authentication.Identity.Provider.dll;file;192000;33206;2021-01-15T09:27:15.296474Z;;;2785144255;2;0;4503599627981690;4096;376;0;0;2021-12-16T13:35:57.816486Z;2021-11-11T11:29:33.742257Z;2021-01-15T09:27:15.296474Z +C:/Windows/SysWOW64/Windows.Security.Authentication.OnlineId.dll;file;758784;33206;2021-01-15T09:27:16.468066Z;;;2785144255;2;0;4785074604699840;4096;1488;0;0;2021-12-16T13:35:57.836269Z;2021-11-11T11:29:33.748240Z;2021-01-15T09:27:16.452436Z +C:/Windows/SysWOW64/Windows.Security.Authentication.Web.Core.dll;file;1006080;33206;2021-10-16T00:21:15.747978Z;;;2785144255;2;0;281474977857323;4096;1968;0;0;2021-12-16T13:35:57.846079Z;2021-11-11T11:29:33.737270Z;2021-10-16T00:21:15.732395Z +C:/Windows/SysWOW64/Windows.Security.Credentials.UI.CredentialPicker.dll;file;86776;33206;2021-01-15T09:27:12.262007Z;;;2785144255;2;0;2533274790986880;4096;176;0;0;2021-12-16T13:35:57.866117Z;2021-11-11T11:29:33.732282Z;2021-01-15T09:27:12.262007Z +C:/Windows/SysWOW64/Windows.Security.Credentials.UI.UserConsentVerifier.dll;file;104960;33206;2021-10-03T19:02:03.825715Z;;;2785144255;2;0;1970324837897220;4096;208;0;0;2021-12-16T13:35:57.876133Z;2021-11-11T11:29:33.732282Z;2021-10-03T19:02:03.814013Z +C:/Windows/SysWOW64/Windows.Security.Integrity.dll;file;44856;33206;2021-01-15T09:27:12.027688Z;;;2785144255;2;0;2533274790986870;4096;88;0;0;2021-12-16T13:35:57.891122Z;2021-11-11T11:29:33.747242Z;2021-01-15T09:27:12.027688Z +C:/Windows/SysWOW64/Windows.Services.TargetedContent.dll;file;820016;33206;2021-10-03T19:02:13.289340Z;;;2785144255;2;0;1688849861186920;4096;1608;0;0;2021-12-16T13:35:57.911217Z;2021-11-11T11:29:33.750234Z;2021-10-03T19:02:13.233026Z +C:/Windows/SysWOW64/Windows.Shell.ServiceHostBuilder.dll;file;75264;33206;2021-01-15T09:27:15.327697Z;;;2785144255;2;0;16044073673118600;4096;152;0;0;2021-12-16T13:35:57.926326Z;2021-11-11T11:29:33.743254Z;2021-01-15T09:27:15.312077Z +C:/Windows/SysWOW64/Windows.StateRepository.dll;file;5424256;33206;2021-03-11T12:12:17.474752Z;;;2785144255;2;0;844424931103258;4096;10600;0;0;2021-12-16T13:35:57.946316Z;2021-11-11T11:29:33.756219Z;2021-03-11T12:12:17.321106Z +C:/Windows/SysWOW64/Windows.StateRepositoryBroker.dll;file;99632;33206;2021-03-11T12:12:17.552828Z;;;2785144255;2;0;844424931103262;4096;200;0;0;2021-12-16T13:35:57.966573Z;2021-11-11T11:29:33.754225Z;2021-03-11T12:12:17.552828Z +C:/Windows/SysWOW64/Windows.StateRepositoryClient.dll;file;176944;33206;2021-03-11T12:12:17.559335Z;;;2785144255;2;0;844424931103263;4096;352;0;0;2021-12-16T13:35:57.981457Z;2021-11-11T11:29:33.758214Z;2021-03-11T12:12:17.559335Z +C:/Windows/SysWOW64/Windows.StateRepositoryCore.dll;file;42312;33206;2021-03-11T12:12:17.559335Z;;;2785144255;2;0;844424931103264;4096;88;0;0;2021-12-16T13:35:57.991503Z;2021-11-11T11:29:33.745249Z;2021-03-11T12:12:17.559335Z +C:/Windows/SysWOW64/Windows.StateRepositoryPS.dll;file;602176;33206;2021-03-11T12:12:17.537205Z;;;2785144255;2;0;844424931103259;4096;1184;0;0;2021-12-16T13:35:57.991503Z;2021-11-11T11:29:33.756219Z;2021-03-11T12:12:17.521615Z +C:/Windows/SysWOW64/Windows.StateRepositoryUpgrade.dll;file;223744;33206;2021-03-11T12:12:17.574986Z;;;2785144255;2;0;844424931103265;4096;440;0;0;2021-12-16T13:35:58.006118Z;2021-11-11T11:29:33.757217Z;2021-03-11T12:12:17.574986Z +C:/Windows/SysWOW64/Windows.Storage.ApplicationData.dll;file;305216;33206;2021-01-15T09:27:16.546170Z;;;2785144255;2;0;4222124651278530;4096;600;0;0;2021-12-16T13:35:58.021351Z;2021-11-11T11:29:33.750234Z;2021-01-15T09:27:16.546170Z +C:/Windows/SysWOW64/Windows.Storage.Compression.dll;file;136192;33206;2021-01-15T09:27:16.655522Z;;;2785144255;2;0;5910974511542480;4096;272;0;0;2021-12-16T13:35:58.036461Z;2021-11-11T11:29:33.761205Z;2021-01-15T09:27:16.655522Z +C:/Windows/SysWOW64/windows.storage.dll;file;6359112;33206;2021-11-11T11:28:59.561739Z;;;2785144255;2;0;281474977879189;4096;12424;0;0;2021-12-16T13:35:58.036461Z;2021-11-11T11:38:50.592443Z;2021-11-11T11:28:59.336344Z +C:/Windows/SysWOW64/Windows.Storage.OneCore.dll;file;151552;33206;2021-10-03T19:02:12.814179Z;;;2785144255;2;0;1688849861186910;4096;296;0;0;2021-12-16T13:35:58.051445Z;2021-11-11T11:29:33.811072Z;2021-10-03T19:02:12.806871Z +C:/Windows/SysWOW64/Windows.Storage.Search.dll;file;624128;33206;2021-01-15T09:27:16.483675Z;;;2785144255;2;0;7599824371806400;4096;1224;0;0;2021-12-16T13:35:58.066072Z;2021-11-11T11:29:33.810075Z;2021-01-15T09:27:16.468066Z +C:/Windows/SysWOW64/Windows.System.Diagnostics.dll;file;296960;33206;2021-01-15T09:27:16.811727Z;;;2785144255;2;0;10414574138913000;4096;584;0;0;2021-12-16T13:35:58.086057Z;2021-11-11T11:29:33.753227Z;2021-01-15T09:27:16.811727Z +C:/Windows/SysWOW64/Windows.System.Diagnostics.Telemetry.PlatformTelemetryClient.dll;file;41984;33206;2021-01-15T09:27:16.561792Z;;;2785144255;2;0;4503599627989190;4096;88;0;0;2021-12-16T13:35:58.086057Z;2021-11-11T11:29:33.745249Z;2021-01-15T09:27:16.561792Z +C:/Windows/SysWOW64/Windows.System.Diagnostics.TraceReporting.PlatformDiagnosticActions.dll;file;76800;33206;2021-01-15T09:27:16.561792Z;;;2785144255;2;0;7036874418385100;4096;152;0;0;2021-12-16T13:35:58.096068Z;2021-11-11T11:29:33.747242Z;2021-01-15T09:27:16.561792Z +C:/Windows/SysWOW64/Windows.System.Launcher.dll;file;527872;33206;2021-11-11T11:28:59.228630Z;;;2785144255;2;0;281474977879182;4096;1032;0;0;2021-12-16T13:35:58.106498Z;2021-11-11T11:38:52.389025Z;2021-11-11T11:28:59.214669Z +C:/Windows/SysWOW64/Windows.System.Profile.HardwareId.dll;file;194136;33206;2021-01-15T09:27:38.285855Z;;;2785144255;2;0;14636698789576700;4096;384;0;0;2021-12-16T13:35:58.131096Z;2021-11-11T11:29:34.247003Z;2021-01-15T09:27:38.285855Z +C:/Windows/SysWOW64/Windows.System.Profile.PlatformDiagnosticsAndUsageDataSettings.dll;file;54784;33206;2021-07-07T12:58:45.137712Z;;;2785144255;2;0;281474977790766;4096;112;0;0;2021-12-16T13:35:58.141200Z;2021-11-11T11:29:33.752230Z;2021-07-07T12:58:45.137712Z +C:/Windows/SysWOW64/Windows.System.Profile.RetailInfo.dll;file;101888;33206;2021-01-15T09:27:18.348952Z;;;2785144255;2;0;9288674232070780;4096;200;0;0;2021-12-16T13:35:58.156052Z;2021-11-11T11:29:33.776165Z;2021-01-15T09:27:18.348952Z +C:/Windows/SysWOW64/Windows.System.Profile.SystemId.dll;file;47104;33206;2021-01-15T09:27:16.780490Z;;;2785144255;2;0;4503599627989210;4096;96;0;0;2021-12-16T13:35:58.166543Z;2021-11-11T11:29:33.755222Z;2021-01-15T09:27:16.780490Z +C:/Windows/SysWOW64/Windows.System.Profile.SystemManufacturers.dll;file;41472;33206;2021-01-15T09:27:12.824372Z;;;2785144255;2;0;2533274790986910;4096;88;0;0;2021-12-16T13:35:58.181040Z;2021-11-11T11:29:33.738267Z;2021-01-15T09:27:12.824372Z +C:/Windows/SysWOW64/Windows.System.RemoteDesktop.dll;file;18944;33206;2021-01-15T09:27:13.058723Z;;;2785144255;2;0;2533274790986940;4096;40;0;0;2021-12-16T13:35:58.186144Z;2021-11-11T11:29:34.245008Z;2021-01-15T09:27:13.058723Z +C:/Windows/SysWOW64/Windows.System.SystemManagement.dll;file;239104;33206;2021-01-15T09:27:16.499299Z;;;2785144255;2;0;4785074604699840;4096;472;0;0;2021-12-16T13:35:58.206089Z;2021-11-11T11:29:33.750234Z;2021-01-15T09:27:16.483675Z +C:/Windows/SysWOW64/Windows.System.UserDeviceAssociation.dll;file;66048;33206;2021-01-15T09:27:16.671121Z;;;2785144255;2;0;4785074604699860;4096;136;0;0;2021-12-16T13:35:58.221433Z;2021-11-11T11:29:33.752230Z;2021-01-15T09:27:16.671121Z +C:/Windows/SysWOW64/Windows.System.UserProfile.DiagnosticsSettings.dll;file;48640;33206;2021-01-15T09:27:12.996237Z;;;2785144255;2;0;2533274790986930;4096;96;0;0;2021-12-16T13:35:58.226481Z;2021-11-11T11:29:33.731285Z;2021-01-15T09:27:12.996237Z +C:/Windows/SysWOW64/Windows.UI.Accessibility.dll;file;84480;33206;2021-01-15T09:27:13.261770Z;;;2785144255;2;0;35184372089423000;4096;168;0;0;2021-12-16T13:35:58.246123Z;2021-11-11T11:29:33.740262Z;2021-01-15T09:27:13.261770Z +C:/Windows/SysWOW64/Windows.UI.Core.TextInput.dll;file;703488;33206;2021-11-11T11:28:59.299443Z;;;2785144255;2;0;281474977879187;4096;1376;0;0;2021-12-16T13:35:58.256083Z;2021-11-11T11:38:53.223461Z;2021-11-11T11:28:59.284481Z +C:/Windows/SysWOW64/Windows.UI.Cred.dll;file;988672;33206;2021-01-15T09:27:18.833208Z;;;2785144255;2;0;24206847997735600;4096;1936;0;0;2021-12-16T13:35:58.276019Z;2021-11-11T11:29:33.772176Z;2021-01-15T09:27:18.817563Z +C:/Windows/SysWOW64/Windows.UI.CredDialogController.dll;file;255488;33206;2021-05-18T10:59:11.696314Z;;;2785144255;2;0;3096224744704450;4096;504;0;0;2021-12-16T13:35:58.296047Z;2021-11-11T11:29:33.798140Z;2021-05-18T10:59:11.686126Z +C:/Windows/SysWOW64/Windows.UI.dll;file;998352;33206;2021-01-15T09:27:11.525342Z;;;2785144255;2;0;2533274790986860;4096;1952;0;0;2021-12-16T13:35:58.296047Z;2021-11-11T11:29:33.715328Z;2021-01-15T09:27:11.494064Z +C:/Windows/SysWOW64/Windows.UI.FileExplorer.dll;file;230400;33206;2021-10-03T19:02:23.614966Z;;;2785144255;2;0;1688849861187290;4096;456;0;0;2021-12-16T13:35:58.306256Z;2021-11-11T11:29:33.815064Z;2021-10-03T19:02:23.594227Z +C:/Windows/SysWOW64/Windows.UI.Immersive.dll;file;978944;33206;2021-10-03T19:02:18.187257Z;;;2785144255;2;0;1688849861186990;4096;1912;0;0;2021-12-16T13:35:58.326029Z;2021-11-11T11:29:33.791164Z;2021-10-03T19:02:18.123366Z +C:/Windows/SysWOW64/Windows.UI.Input.Inking.Analysis.dll;file;3595776;33206;2019-12-07T09:09:17.896595Z;;;2785144255;2;0;1407374884350020;4096;7024;0;0;2021-12-16T13:35:58.356115Z;2021-11-11T11:29:33.731285Z;2019-12-07T09:09:17.896595Z +C:/Windows/SysWOW64/Windows.UI.Input.Inking.dll;file;1387520;33206;2021-05-18T10:59:09.662538Z;;;2785144255;2;0;28428972647847200;4096;2712;0;0;2021-12-16T13:35:58.381428Z;2021-11-11T11:29:33.734277Z;2021-05-18T10:59:09.588594Z +C:/Windows/SysWOW64/Windows.UI.Search.dll;file;682496;33206;2021-01-15T09:27:21.615828Z;;;2785144255;2;0;7599824371807450;4096;1336;0;0;2021-12-16T13:35:58.396112Z;2021-11-11T11:29:33.813066Z;2021-01-15T09:27:21.600176Z +C:/Windows/SysWOW64/Windows.UI.Xaml.Controls.dll;file;3493888;33206;2021-06-10T14:01:37.786488Z;;;2785144255;2;0;281474977764846;4096;6824;0;0;2021-12-16T13:35:58.416089Z;2021-11-11T11:29:33.736273Z;2021-06-10T14:01:37.730524Z +C:/Windows/SysWOW64/Windows.UI.Xaml.dll;file;14760448;33206;2021-11-11T11:28:57.938680Z;;;2785144255;2;0;281474977878968;4096;28832;0;0;2021-12-16T13:35:58.426189Z;2021-11-11T11:38:51.829733Z;2021-11-11T11:28:57.533763Z +C:/Windows/SysWOW64/Windows.UI.Xaml.InkControls.dll;file;771584;33206;2021-06-10T14:01:37.817730Z;;;2785144255;2;0;281474977764847;4096;1512;0;0;2021-12-16T13:35:58.441237Z;2021-11-11T11:29:33.739265Z;2021-06-10T14:01:37.802119Z +C:/Windows/SysWOW64/Windows.UI.Xaml.Maps.dll;file;1217024;33206;2021-06-10T14:01:37.855442Z;;;2785144255;2;0;281474977764848;4096;2384;0;0;2021-12-16T13:35:58.456505Z;2021-11-11T11:29:33.796165Z;2021-06-10T14:01:37.833313Z +C:/Windows/SysWOW64/Windows.UI.Xaml.Phone.dll;file;964096;33206;2021-06-10T14:01:37.871095Z;;;2785144255;2;0;281474977764849;4096;1888;0;0;2021-12-16T13:35:58.476372Z;2021-11-11T11:29:33.797110Z;2021-06-10T14:01:37.855442Z +C:/Windows/SysWOW64/Windows.UI.XamlHost.dll;file;137216;33206;2021-01-15T09:27:51.494869Z;;;2785144255;2;0;13510798882736400;4096;272;0;0;2021-12-16T13:35:58.491389Z;2021-11-11T11:29:33.766192Z;2021-01-15T09:27:51.494869Z +C:/Windows/SysWOW64/Windows.WARP.JITService.exe;file;54784;33206;2019-12-07T09:09:17.708275Z;;;2785144255;2;0;1125899907635450;4096;112;0;0;2021-12-16T13:35:58.501462Z;2021-11-11T11:29:33.784180Z;2019-12-07T09:09:17.708275Z +C:/Windows/SysWOW64/Windows.Web.Diagnostics.dll;file;166912;33206;2021-01-15T09:27:16.827349Z;;;2785144255;2;0;5066549581410530;4096;328;0;0;2021-12-16T13:35:58.516045Z;2021-11-11T11:29:33.752230Z;2021-01-15T09:27:16.827349Z +C:/Windows/SysWOW64/Windows.Web.dll;file;583680;33206;2021-01-15T09:27:12.183949Z;;;2785144255;2;0;2533274790986870;4096;1144;0;0;2021-12-16T13:35:58.526028Z;2021-11-11T11:29:33.736273Z;2021-01-15T09:27:12.168314Z +C:/Windows/SysWOW64/Windows.Web.Http.dll;file;1133056;33206;2021-01-15T09:27:12.168314Z;;;2785144255;2;0;2533274790986870;4096;2216;0;0;2021-12-16T13:35:58.546477Z;2021-11-11T11:29:33.748240Z;2021-01-15T09:27:12.137066Z +C:/Windows/SysWOW64/WindowsCodecs.dll;file;1510296;33206;2021-10-03T19:02:05.243071Z;;;2785144255;2;0;1688849861186670;4096;2952;0;0;2021-12-16T13:35:58.546477Z;2021-11-11T11:29:33.798140Z;2021-10-03T19:02:05.158988Z +C:/Windows/SysWOW64/WindowsCodecsExt.dll;file;225792;33206;2020-11-03T12:45:48.526281Z;;;2785144255;2;0;562949954395872;4096;448;0;0;2021-12-16T13:35:58.546477Z;2021-11-11T11:29:33.786186Z;2020-11-03T12:45:48.526281Z +C:/Windows/SysWOW64/WindowsCodecsRaw.dll;file;31595328;33206;2021-10-03T19:03:07.140416Z;;;2785144255;2;0;1688849861187770;4096;61712;0;0;2021-12-16T13:35:58.566576Z;2021-11-11T11:29:32.378122Z;2021-10-03T19:03:06.292120Z +C:/Windows/SysWOW64/WindowsCodecsRaw.txt;file;1649;33206;2019-12-07T09:10:08.913188Z;;;2785144255;2;0;1125899907621250;4096;8;0;0;2021-12-16T13:35:58.576468Z;2021-11-11T08:10:02.370712Z;2019-12-07T09:10:08.913188Z +C:/Windows/SysWOW64/WindowsDefaultHeatProcessor.dll;file;107008;33206;2019-12-07T09:09:17.864485Z;;;2785144255;2;0;1125899907635820;4096;216;0;0;2021-12-16T13:35:58.586399Z;2021-11-11T11:29:33.737270Z;2019-12-07T09:09:17.864485Z +C:/Windows/SysWOW64/windowslivelogin.dll;file;201216;33206;2021-01-15T09:27:21.131537Z;;;2785144255;2;0;10133099162203300;4096;400;0;0;2021-12-16T13:35:58.606746Z;2021-11-11T11:29:30.963544Z;2021-01-15T09:27:21.131537Z +C:/Windows/SysWOW64/windowsperformancerecordercontrol.dll;file;897536;33206;2021-01-15T09:27:19.284626Z;;;2785144255;2;0;16325548649837300;4096;1760;0;0;2021-12-16T13:35:58.626173Z;2021-11-11T11:29:34.199161Z;2021-01-15T09:27:19.269012Z +C:/Windows/SysWOW64/WindowsPowerShell;directory;0;16822;2019-12-07T09:14:52.768215Z;;;2785144255;1;0;35747322042574300;4096;0;0;0;2021-12-16T13:36:01.192747Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0;directory;0;16822;2020-11-03T12:48:17.530636Z;;;2785144255;1;0;19421773393356300;4096;8;0;0;2021-12-16T13:36:01.192747Z;2020-11-03T12:48:17.530636Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Certificate.format.ps1xml;file;12825;33206;2019-12-07T09:10:47.383456Z;;;2785144255;2;0;1125899907628240;4096;32;0;0;2019-12-07T09:10:47.383456Z;2020-11-03T12:35:38.563443Z;2019-12-07T09:10:47.383456Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/de;directory;0;16822;2019-12-07T14:54:04.766397Z;;;2785144255;1;0;18858823439935000;4096;0;0;0;2021-12-16T13:36:01.192747Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:04.766397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/de/powershell_ise.resources.dll;file;58368;33206;2019-12-07T00:55:00Z;;;2785144255;2;0;12384898975950600;4096;120;0;0;2020-11-03T12:35:23.629299Z;2021-11-11T11:29:35.488632Z;2019-12-07T14:54:04.157553Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/de-DE;directory;0;16822;2019-12-07T14:51:16.766914Z;;;2785144255;1;0;10977524092036600;4096;0;0;0;2021-12-16T13:36:01.192747Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/de-DE/default.help.txt;file;4002;33206;2019-12-07T14:50:49.424282Z;;;2785144255;4;0;1125899907612310;4096;8;0;0;2019-12-07T14:50:49.424282Z;2020-11-03T12:35:28.674991Z;2019-12-07T14:50:49.424282Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/de-DE/powershell.exe.mui;file;13312;33206;2019-12-07T14:50:49.424282Z;;;2785144255;4;0;1688849861030160;4096;32;0;0;2021-12-16T09:35:30.243263Z;2020-11-03T12:35:28.159487Z;2019-12-07T14:50:49.424282Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/de-DE/PSEvents.dll.mui;file;61952;33206;2019-12-07T14:50:49.424282Z;;;2785144255;4;0;1688849861030190;4096;128;0;0;2020-11-03T17:00:39.111886Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:49.424282Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/de-DE/pspluginwkr.dll.mui;file;6144;33206;2019-12-07T14:50:51.626439Z;;;2785144255;2;0;1688849861030190;4096;16;0;0;2019-12-07T14:50:51.626439Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:51.626439Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/de-DE/pwrshmsg.dll.mui;file;5632;33206;2019-12-07T14:50:49.424282Z;;;2785144255;4;0;1688849861030200;4096;16;0;0;2019-12-07T14:50:49.424282Z;2020-11-03T12:35:28.175109Z;2019-12-07T14:50:49.424282Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Diagnostics.Format.ps1xml;file;4994;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907630260;4096;16;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.703799Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/DotNetTypes.format.ps1xml;file;138013;33206;2019-12-07T09:10:47.383456Z;;;2785144255;2;0;1125899907630070;4096;272;0;0;2019-12-07T09:10:47.383456Z;2020-11-03T12:35:39.594450Z;2019-12-07T09:10:47.383456Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/en;directory;0;16822;2020-11-03T12:42:19.042870Z;;;2785144255;1;0;2251799814492110;4096;0;0;0;2021-12-16T13:36:01.192747Z;2020-11-03T12:42:19.042870Z;2020-11-03T12:42:19.042870Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/en/powershell_ise.resources.dll;file;58368;33206;2020-11-03T12:42:18.980377Z;;;2785144255;2;0;1688849861070960;4096;120;0;0;2020-11-03T12:42:18.980377Z;2021-11-11T11:29:35.492623Z;2020-11-03T12:42:18.980377Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/en-US;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;1407374884227090;4096;0;0;0;2021-12-16T13:36:01.192747Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:50.313665Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/en-US/default.help.txt;file;3568;33206;2020-11-03T12:41:34.113781Z;;;2785144255;4;0;1407374884396790;4096;8;0;0;2020-11-03T12:41:34.254416Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.113781Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/en-US/powershell.exe.mui;file;11776;33206;2020-11-03T12:41:34.113781Z;;;2785144255;4;0;1407374884396790;4096;24;0;0;2020-11-03T12:41:34.254416Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.113781Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/en-US/PSEvents.dll.mui;file;54784;33206;2020-11-03T12:41:34.113781Z;;;2785144255;4;0;1407374884396800;4096;112;0;0;2021-12-16T12:05:53.944680Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.113781Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/en-US/pspluginwkr.dll.mui;file;5632;33206;2020-11-03T12:41:35.582228Z;;;2785144255;2;0;1407374884398090;4096;16;0;0;2020-11-03T12:41:35.707196Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:35.582228Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/en-US/pwrshmsg.dll.mui;file;5120;33206;2020-11-03T12:41:34.113781Z;;;2785144255;4;0;1407374884396800;4096;16;0;0;2020-11-03T12:41:34.254416Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:34.113781Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Event.Format.ps1xml;file;10112;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907629690;4096;24;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.188297Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Examples;directory;0;16822;2019-12-07T09:15:01.032295Z;;;2785144255;1;0;4785074604402160;4096;0;0;0;2021-12-16T13:36:01.192747Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Examples/profile.ps1;file;461;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907628410;4096;0;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:38.625928Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/FileSystem.format.ps1xml;file;25306;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907629270;4096;56;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.000839Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/getevent.types.ps1xml;file;9164;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907629970;4096;24;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.531966Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Help.format.ps1xml;file;91655;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907630220;4096;184;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.688179Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/HelpV3.format.ps1xml;file;138625;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907630180;4096;272;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.672570Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules;directory;0;16822;2019-12-07T14:54:51.407182Z;;;2785144255;1;0;14636698789275100;4096;24;0;0;2021-12-16T13:36:01.192747Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppBackgroundTask;directory;0;16822;2019-12-07T09:15:01.032295Z;;;2785144255;1;0;40532396646655500;4096;0;0;0;2021-12-16T13:36:01.192747Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppBackgroundTask/AppBackgroundTask.psd1;file;939;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907639270;4096;8;0;0;2019-12-07T09:09:27.614835Z;2020-11-03T12:35:45.499583Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppBackgroundTask/Microsoft.Windows.AppBackgroundTask.Commands.dll;file;8704;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907635780;4096;24;0;0;2020-11-03T12:35:43.296976Z;2021-11-11T11:29:33.793120Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppBackgroundTask/MSFT_BackgroundTask.Format.ps1xml;file;8504;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907638230;4096;24;0;0;2019-12-07T09:09:27.614835Z;2020-11-03T12:35:45.015322Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppBackgroundTask/PS_BackgroundTask.cdxml;file;3169;33206;2019-12-07T09:09:27.614835Z;;;2785144255;2;0;1125899907637590;4096;8;0;0;2019-12-07T09:09:27.614835Z;2020-11-03T12:35:44.624788Z;2019-12-07T09:09:27.614835Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppLocker;directory;0;16822;2019-12-07T14:54:52.797182Z;;;2785144255;1;0;23925373020726800;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppLocker/AppLocker.psd1;file;1058;33206;2019-12-07T09:10:23.882467Z;;;2785144255;2;0;1125899907621590;4096;8;0;0;2021-02-22T08:01:25.259255Z;2021-02-22T08:01:25.259255Z;2019-12-07T09:10:23.882467Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient;directory;0;16822;2021-06-10T14:11:37.586068Z;;;2785144255;1;0;39969446693234200;4096;8;0;0;2021-12-16T13:36:01.193745Z;2021-06-10T14:11:37.586068Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/AppvClient.psd1;file;697;33206;2019-12-07T09:10:22.555233Z;;;2785144255;2;0;1125899907621420;4096;8;0;0;2021-07-12T14:16:02.167511Z;2021-07-12T14:16:02.167511Z;2019-12-07T09:10:22.555233Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/AppVClientCmdlets.format.ps1xml;file;4598;33206;2019-12-07T14:54:40.657260Z;;;2785144255;2;0;1125899907621280;4096;16;0;0;2021-07-12T14:16:02.167511Z;2021-07-12T14:16:02.167511Z;2019-12-07T09:10:22.555233Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/AppVClientCmdlets.psm1;file;7168;33206;2019-12-07T14:54:40.657260Z;;;2785144255;2;0;1125899907621540;4096;16;0;0;2021-07-12T14:16:02.167511Z;2021-07-12T14:16:02.167511Z;2019-12-07T09:10:22.555233Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/de;directory;0;16822;2019-12-07T14:54:52.829245Z;;;2785144255;1;0;2814749767427580;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/de/Microsoft.AppV.AppvClientComConsumer.resources.dll;file;24576;33206;2019-12-07T14:50:56.049041Z;;;2785144255;2;0;1688849861008560;4096;48;0;0;2020-11-03T12:35:26.628596Z;2021-11-11T11:29:35.158454Z;2019-12-07T14:50:56.049041Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/de/Microsoft.AppV.AppVClientPowerShell.resources.dll;file;9216;33206;2019-12-07T14:50:56.049041Z;;;2785144255;2;0;1688849861008560;4096;24;0;0;2020-11-03T12:35:26.628596Z;2021-11-11T11:29:35.158454Z;2019-12-07T14:50:56.049041Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/en;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;1407374884227100;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:50.313665Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/en/Microsoft.AppV.AppvClientComConsumer.resources.dll;file;22016;33206;2020-11-03T12:41:37.456985Z;;;2785144255;2;0;1125899907688780;4096;48;0;0;2020-11-03T12:41:37.550747Z;2021-11-11T11:29:34.615877Z;2020-11-03T12:41:37.456985Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/en/Microsoft.AppV.AppVClientPowerShell.resources.dll;file;8704;33206;2020-11-03T12:41:37.456985Z;;;2785144255;2;0;1125899907688780;4096;24;0;0;2020-11-03T12:41:37.550747Z;2021-11-11T11:29:34.616877Z;2020-11-03T12:41:37.456985Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/Microsoft.AppV.AppvClientComConsumer.dll;file;646992;33206;2021-06-10T14:01:52.210212Z;;;2785144255;2;0;281474977765885;4096;1264;0;0;2021-06-10T14:11:45.988183Z;2021-11-11T11:29:32.344211Z;2021-06-10T14:01:52.210212Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/Microsoft.AppV.AppVClientPowerShell.dll;file;109584;33206;2019-12-07T14:54:40.657260Z;;;2785144255;2;0;1125899907621400;4096;216;0;0;2021-07-12T14:16:02.167511Z;2021-11-11T11:29:32.345208Z;2019-12-07T09:10:22.555233Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AppvClient/Microsoft.AppV.ClientProgrammability.Eventing.dll;file;173072;33206;2019-12-07T14:54:40.672268Z;;;2785144255;2;0;1125899907621440;4096;344;0;0;2021-07-12T14:16:02.167511Z;2021-11-11T11:29:32.345208Z;2019-12-07T09:10:22.555233Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Appx;directory;0;16822;2019-12-07T09:15:01.032295Z;;;2785144255;1;0;15481123719407100;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Appx/Appx.format.ps1xml;file;5309;33206;2019-12-07T09:09:15.129854Z;;;2785144255;2;0;1125899907638580;4096;16;0;0;2019-12-07T09:09:15.129854Z;2020-11-03T12:35:45.155914Z;2019-12-07T09:09:15.129854Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Appx/Appx.psd1;file;1407;33206;2019-12-07T09:09:15.129854Z;;;2785144255;2;0;1125899907639010;4096;8;0;0;2019-12-07T09:09:15.129854Z;2020-11-03T12:35:45.390235Z;2019-12-07T09:09:15.129854Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Appx/Appx.psm1;file;4946;33206;2019-12-07T09:09:15.129854Z;;;2785144255;2;0;1125899907635060;4096;16;0;0;2019-12-07T09:09:15.129854Z;2020-11-03T12:35:42.890780Z;2019-12-07T09:09:15.129854Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AssignedAccess;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;9288674231772670;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:41:50.313665Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AssignedAccess/AssignedAccess.psd1;file;502;33206;2019-12-07T09:10:22.585651Z;;;2785144255;2;0;1125899907621460;4096;8;0;0;2021-03-11T12:10:18.778514Z;2021-04-15T08:15:56.865976Z;2019-12-07T09:10:22.585651Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AssignedAccess/AssignedAccess.psm1;file;13465;33206;2019-12-07T14:54:45.204226Z;;;2785144255;2;0;1125899907621470;4096;32;0;0;2021-03-11T12:10:18.778514Z;2021-04-15T08:15:56.865976Z;2019-12-07T09:10:22.585651Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AssignedAccess/de-DE;directory;0;16822;2019-12-07T14:54:52.829245Z;;;2785144255;1;0;7036874418087420;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AssignedAccess/de-DE/AssignedAccessMsg.psd1;file;2810;33206;2019-12-07T14:50:56.064052Z;;;2785144255;2;0;15762598696564700;4096;8;0;0;2019-12-07T14:50:56.064052Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:56.064052Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AssignedAccess/en-US;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;1407374884227100;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:50.313665Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/AssignedAccess/en-US/AssignedAccessMsg.psd1;file;2810;33206;2020-11-03T12:41:37.456985Z;;;2785144255;2;0;1125899907688790;4096;8;0;0;2020-11-03T12:41:37.566373Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:37.456985Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitLocker;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;27584547717965300;4096;8;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:41:50.313665Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitLocker/BitLocker.Format.ps1xml;file;5806;33206;2019-12-07T14:54:42.500266Z;;;2785144255;2;0;1125899907627130;4096;16;0;0;2019-12-07T14:54:42.500266Z;2020-11-03T12:35:38.063560Z;2019-12-07T09:10:39.386204Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitLocker/BitLocker.psd1;file;1770;33206;2019-12-07T09:10:39.386204Z;;;2785144255;2;0;1125899907622500;4096;8;0;0;2019-12-07T09:10:39.386204Z;2020-11-03T12:35:35.782847Z;2019-12-07T09:10:39.386204Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitLocker/BitLocker.psm1;file;301976;33206;2019-12-07T14:54:42.500266Z;;;2785144255;2;0;1125899907622540;4096;592;0;0;2019-12-07T14:54:42.500266Z;2020-11-03T12:35:35.798471Z;2019-12-07T09:10:39.386204Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitLocker/de-DE;directory;0;16822;2019-12-07T14:54:52.829245Z;;;2785144255;1;0;27866022694676000;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitLocker/de-DE/BitLocker.psd1;file;11762;33206;2019-12-07T14:50:54.455108Z;;;2785144255;2;0;1125899907610590;4096;24;0;0;2019-12-07T14:50:54.455108Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:54.455108Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitLocker/en-US;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;1407374884227110;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:50.313665Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitLocker/en-US/BitLocker.psd1;file;9472;33206;2020-11-03T12:41:36.425973Z;;;2785144255;2;0;1407374884398300;4096;24;0;0;2020-11-03T12:41:36.519664Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:36.425973Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitLocker/Microsoft.BitLocker.Structures.dll;file;11776;33206;2019-12-07T14:54:42.500266Z;;;2785144255;2;0;1125899907625080;4096;24;0;0;2020-11-03T12:35:36.907581Z;2021-11-11T11:29:34.284933Z;2019-12-07T09:10:39.386204Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitsTransfer;directory;0;16822;2019-12-07T09:15:01.032295Z;;;2785144255;1;0;13229323905721900;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitsTransfer/BitsTransfer.Format.ps1xml;file;7218;33206;2019-12-07T09:10:47.447060Z;;;2785144255;2;0;1125899907628050;4096;16;0;0;2019-12-07T09:10:47.447060Z;2020-11-03T12:35:38.454093Z;2019-12-07T09:10:47.447060Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitsTransfer/BitsTransfer.psd1;file;1604;33206;2019-12-07T09:10:47.447060Z;;;2785144255;2;0;1125899907629940;4096;8;0;0;2019-12-07T09:10:47.447060Z;2020-11-03T12:35:39.531966Z;2019-12-07T09:10:47.447060Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BitsTransfer/Microsoft.BackgroundIntelligentTransfer.Management.Interop.dll;file;120832;33206;2019-12-07T09:10:47.447060Z;;;2785144255;2;0;1125899907629280;4096;240;0;0;2020-11-03T12:35:39.000839Z;2021-11-11T11:29:34.237030Z;2019-12-07T09:10:47.447060Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache;directory;0;16822;2019-12-07T14:54:52.844554Z;;;2785144255;1;0;18858823439935000;4096;8;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCache.format.ps1xml;file;27722;33206;2019-12-07T14:54:39.782263Z;;;2785144255;2;0;1125899907621410;4096;56;0;0;2021-10-03T18:56:42.132906Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.585651Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCache.psd1;file;1739;33206;2019-12-07T09:10:22.601764Z;;;2785144255;2;0;1125899907621430;4096;8;0;0;2021-10-03T18:56:42.138886Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCache.types.ps1xml;file;5150;33206;2019-12-07T14:54:39.782263Z;;;2785144255;2;0;1125899907621340;4096;16;0;0;2021-10-03T18:56:42.136449Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.585651Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCacheClientSettingData.cdxml;file;425;33206;2019-12-07T09:10:22.601764Z;;;2785144255;2;0;1125899907621330;4096;8;0;0;2021-10-03T18:56:42.141786Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCacheContentServerSettingData.cdxml;file;439;33206;2019-12-07T09:10:22.601764Z;;;2785144255;2;0;1125899907621350;4096;8;0;0;2021-10-03T18:56:42.144776Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCacheHostedCacheServerSettingData.cdxml;file;447;33206;2019-12-07T09:10:22.601764Z;;;2785144255;2;0;1125899907621370;4096;8;0;0;2021-10-03T18:56:42.148768Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCacheNetworkSettingData.cdxml;file;427;33206;2019-12-07T09:10:22.601764Z;;;2785144255;2;0;1125899907621470;4096;8;0;0;2021-10-03T18:56:42.150967Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCacheOrchestrator.cdxml;file;35428;33206;2019-12-07T14:54:39.782263Z;;;2785144255;2;0;1125899907621250;4096;72;0;0;2021-10-03T18:56:42.154268Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCachePrimaryPublicationCacheFile.cdxml;file;407;33206;2019-12-07T09:10:22.601764Z;;;2785144255;2;0;1125899907621480;4096;8;0;0;2021-10-03T18:56:42.156506Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCachePrimaryRepublicationCacheFile.cdxml;file;407;33206;2019-12-07T09:10:22.601764Z;;;2785144255;2;0;1125899907621480;4096;8;0;0;2021-10-03T18:56:42.158917Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCacheSecondaryRepublicationCacheFile.cdxml;file;425;33206;2019-12-07T09:10:22.601764Z;;;2785144255;2;0;1125899907621260;4096;8;0;0;2021-10-03T18:56:42.162131Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/BranchCache/BranchCacheStatus.cdxml;file;401;33206;2019-12-07T09:10:22.601764Z;;;2785144255;2;0;1125899907621470;4096;8;0;0;2021-10-03T18:56:42.164902Z;2021-11-11T08:10:02.350774Z;2019-12-07T09:10:22.601764Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/CimCmdlets;directory;0;16822;2019-12-07T09:15:01.032295Z;;;2785144255;1;0;9007199255062020;4096;0;0;0;2021-12-16T13:36:01.193745Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/CimCmdlets/CimCmdlets.psd1;file;1888;33206;2019-12-07T09:10:47.447060Z;;;2785144255;2;0;1125899907628880;4096;8;0;0;2019-12-07T09:10:47.447060Z;2020-11-03T12:35:38.844627Z;2019-12-07T09:10:47.447060Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ConfigCI;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;3096224744138240;4096;0;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:41:50.313665Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ConfigCI/ConfigCI.psd1;file;823;33206;2019-12-07T09:10:23.866944Z;;;2785144255;3;0;1125899907621290;4096;8;0;0;2021-10-01T05:32:27.403702Z;2021-10-01T05:32:27.403702Z;2019-12-07T09:10:23.866944Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ConfigCI/de-DE;directory;0;16822;2019-12-07T14:54:51.407182Z;;;2785144255;1;0;24769797950858800;4096;0;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ConfigCI/en-US;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;1407374884227120;4096;0;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:50.313665Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender;directory;0;16822;2019-12-07T09:31:04.476672Z;;;2785144255;1;0;17169973579671000;4096;8;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender/Defender.psd1;file;13569;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907638660;4096;32;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:45.202779Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender/MSFT_MpComputerStatus.cdxml;file;13919;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907638610;4096;32;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:45.187157Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender/MSFT_MpPreference.cdxml;file;63562;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907635440;4096;128;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:43.109479Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender/MSFT_MpScan.cdxml;file;15247;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907638690;4096;32;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:45.218400Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender/MSFT_MpSignature.cdxml;file;15246;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907637390;4096;32;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:44.499820Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender/MSFT_MpThreat.cdxml;file;14872;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907636350;4096;32;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:43.765616Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender/MSFT_MpThreatCatalog.cdxml;file;14374;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907638630;4096;32;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:45.187157Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender/MSFT_MpThreatDetection.cdxml;file;14366;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907635500;4096;32;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:43.125102Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Defender/MSFT_MpWDOScan.cdxml;file;14145;33206;2019-12-07T09:12:45.419210Z;;;2785144255;1;0;1125899907639360;4096;32;0;0;2019-12-07T09:12:45.419210Z;2020-11-03T12:35:45.546448Z;2019-12-07T09:15:01.032295Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DeliveryOptimization;directory;0;16822;2019-12-07T09:15:01.032295Z;;;2785144255;1;0;12666373952300600;4096;0;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DeliveryOptimization/DeliveryOptimization.psd1;file;1491;33206;2019-12-07T09:09:17.649850Z;;;2785144255;2;0;1125899907638780;4096;8;0;0;2019-12-07T09:09:17.649850Z;2020-11-03T12:35:45.265264Z;2019-12-07T09:09:17.649850Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DeliveryOptimization/DeliveryOptimizationStatus.psm1;file;17297;33206;2019-12-07T09:09:17.675448Z;;;2785144255;2;0;1125899907636270;4096;40;0;0;2019-12-07T09:09:17.675448Z;2020-11-03T12:35:43.687509Z;2019-12-07T09:09:17.675448Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DeliveryOptimization/DeliveryOptimizationVerboseLogs.psm1;file;3179;33206;2019-12-07T09:09:17.661279Z;;;2785144255;2;0;1125899907637720;4096;8;0;0;2019-12-07T09:09:17.661279Z;2020-11-03T12:35:44.718518Z;2019-12-07T09:09:17.661279Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DeliveryOptimization/Microsoft.Windows.DeliveryOptimization.AdminCommands.dll;file;75776;33206;2019-12-07T09:09:17.661279Z;;;2785144255;2;0;1125899907635550;4096;152;0;0;2020-11-03T12:35:43.171964Z;2021-11-11T11:29:33.742257Z;2019-12-07T09:09:17.649850Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DirectAccessClientComponents;directory;0;16822;2019-12-07T09:15:01.049366Z;;;2785144255;1;0;7599824371508750;4096;8;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DirectAccessClientComponents/DirectAccessClientComponents.psd1;file;1178;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907638990;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:45.374613Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DirectAccessClientComponents/MSFT_DAClientExperienceConfiguration.cdxml;file;8065;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907637430;4096;16;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.531060Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DirectAccessClientComponents/MSFT_DAClientExperienceConfiguration.format.ps1xml;file;2237;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907637810;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.812244Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DirectAccessClientComponents/MSFT_DAClientExperienceConfiguration.types.ps1xml;file;687;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907635320;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:43.031373Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DirectAccessClientComponents/MSFT_DASiteTableEntry.cdxml;file;16176;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907637950;4096;32;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.905973Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DirectAccessClientComponents/MSFT_DASiteTableEntry.format.ps1xml;file;1910;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907638590;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:45.171535Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DirectAccessClientComponents/MSFT_DASiteTableEntry.types.ps1xml;file;1250;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907636810;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.031177Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;10414574138615300;4096;8;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:41:50.313665Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism/de;directory;0;16822;2019-12-07T14:51:16.766914Z;;;2785144255;1;0;2814749767427600;4096;0;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism/de/Microsoft.Dism.Powershell.Resources.dll;file;10240;33206;2019-12-07T14:50:50.907994Z;;;2785144255;2;0;1688849861008600;4096;24;0;0;2020-11-03T12:35:26.644217Z;2021-11-11T11:29:34.731569Z;2019-12-07T14:50:50.907994Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism/Dism.Format.ps1xml;file;25996;33206;2019-12-07T09:10:02.272161Z;;;2785144255;2;0;1125899907628280;4096;56;0;0;2019-12-07T09:10:02.272161Z;2020-11-03T12:35:38.579065Z;2019-12-07T09:10:02.272161Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism/Dism.psd1;file;2967;33206;2019-12-07T09:10:02.272161Z;;;2785144255;2;0;1125899907629790;4096;8;0;0;2019-12-07T09:10:02.272161Z;2020-11-03T12:35:39.266414Z;2019-12-07T09:10:02.272161Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism/Dism.psm1;file;1321;33206;2019-12-07T09:10:02.272161Z;;;2785144255;2;0;1125899907628870;4096;8;0;0;2019-12-07T09:10:02.272161Z;2020-11-03T12:35:38.829004Z;2019-12-07T09:10:02.272161Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism/Dism.Types.ps1xml;file;19472;33206;2019-12-07T09:10:02.272161Z;;;2785144255;2;0;1125899907630730;4096;40;0;0;2019-12-07T09:10:02.272161Z;2020-11-03T12:35:39.922501Z;2019-12-07T09:10:02.272161Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism/en;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;1407374884227130;4096;0;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:50.313665Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism/en/Microsoft.Dism.Powershell.Resources.dll;file;9216;33206;2020-11-03T12:41:35.519702Z;;;2785144255;2;0;1407374884397930;4096;24;0;0;2020-11-03T12:41:35.629082Z;2021-11-11T11:29:34.354747Z;2020-11-03T12:41:35.519702Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Dism/Microsoft.Dism.PowerShell.dll;file;133120;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907628950;4096;264;0;0;2020-11-03T12:35:38.860247Z;2021-11-11T11:29:34.237030Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient;directory;0;16822;2019-12-07T09:15:01.049366Z;;;2785144255;1;0;26177172834412000;4096;8;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/DnsClient.psd1;file;1752;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907627920;4096;8;0;0;2019-12-07T09:10:00.412847Z;2020-11-03T12:35:38.391609Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/DnsClientPSProvider.Format.ps1xml;file;17850;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907636510;4096;40;0;0;2019-12-07T09:09:30.850397Z;2020-11-03T12:35:43.874966Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/DnsClientPSProvider.Types.ps1xml;file;4788;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907638580;4096;16;0;0;2019-12-07T09:09:30.850397Z;2020-11-03T12:35:45.155914Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/DnsCmdlets.Format.ps1xml;file;61640;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907629300;4096;128;0;0;2019-12-07T09:10:00.412847Z;2020-11-03T12:35:39.016461Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/DnsCmdlets.Types.ps1xml;file;22151;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907629040;4096;48;0;0;2019-12-07T09:10:00.412847Z;2020-11-03T12:35:38.907111Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/DnsConfig.Format.ps1xml;file;20344;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907628880;4096;40;0;0;2019-12-07T09:10:00.412847Z;2020-11-03T12:35:38.844627Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/DnsConfig.Types.ps1xml;file;1100;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907630570;4096;8;0;0;2019-12-07T09:10:00.412847Z;2020-11-03T12:35:39.860015Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/dnslookup.dll;file;38912;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907630210;4096;80;0;0;2020-11-03T12:35:39.688179Z;2021-11-11T11:29:34.211139Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/MSFT_DnsClient.cdxml;file;4504;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907629940;4096;16;0;0;2019-12-07T09:10:00.412847Z;2020-11-03T12:35:39.531966Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/MSFT_DnsClientCache.cdxml;file;4130;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907629250;4096;16;0;0;2019-12-07T09:10:00.412847Z;2020-11-03T12:35:38.985219Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/MSFT_DnsClientGlobalSetting.cdxml;file;1306;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907628570;4096;8;0;0;2019-12-07T09:10:00.412847Z;2020-11-03T12:35:38.719669Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/MSFT_DnsClientServerAddress.cdxml;file;3613;33206;2019-12-07T09:10:00.412847Z;;;2785144255;2;0;1125899907630750;4096;8;0;0;2019-12-07T09:10:00.412847Z;2020-11-03T12:35:39.922501Z;2019-12-07T09:10:00.412847Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/PS_DnsClientNRPTGlobal_v1.0.0.cdxml;file;5188;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907635520;4096;16;0;0;2019-12-07T09:09:30.850397Z;2020-11-03T12:35:43.140722Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/PS_DnsClientNrptPolicy_v1.0.0.cdxml;file;1704;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907635060;4096;8;0;0;2019-12-07T09:09:30.850397Z;2020-11-03T12:35:42.890780Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/DnsClient/PS_DnsClientNRPTRule_v1.0.0.cdxml;file;18650;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907636990;4096;40;0;0;2019-12-07T09:09:30.850397Z;2020-11-03T12:35:44.124905Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement;directory;0;16822;2019-12-07T09:15:01.049366Z;;;2785144255;1;0;8444249301640870;4096;8;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement/EventTracingManagement.psd1;file;1539;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907629310;4096;8;0;0;2019-12-07T09:09:57.819019Z;2020-11-03T12:35:39.016461Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement/EventTracingManagement.psm1;file;5878;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907629310;4096;16;0;0;2019-12-07T09:09:57.819019Z;2020-11-03T12:35:39.016461Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement/EventTracingManagement.Types.ps1xml;file;8116;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907630540;4096;16;0;0;2019-12-07T09:09:57.819019Z;2020-11-03T12:35:39.844393Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement/MSFT_AutologgerConfig_v1.0.cdxml;file;8580;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907628840;4096;24;0;0;2019-12-07T09:09:57.819019Z;2020-11-03T12:35:38.829004Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement/MSFT_AutologgerConfig_v1.0.format.ps1xml;file;5980;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907629900;4096;16;0;0;2019-12-07T09:09:57.819019Z;2020-11-03T12:35:39.516343Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement/MSFT_EtwTraceProvider_v1.0.cdxml;file;5877;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907628360;4096;16;0;0;2019-12-07T09:09:57.819019Z;2020-11-03T12:35:38.610307Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement/MSFT_EtwTraceProvider_v1.0.format.ps1xml;file;3569;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907629240;4096;8;0;0;2019-12-07T09:09:57.819019Z;2020-11-03T12:35:38.985219Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement/MSFT_EtwTraceSession_v1.0.cdxml;file;6817;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907628690;4096;16;0;0;2019-12-07T09:09:57.819019Z;2020-11-03T12:35:38.766520Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/EventTracingManagement/MSFT_EtwTraceSession_v1.0.format.ps1xml;file;3678;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907628670;4096;8;0;0;2019-12-07T09:09:57.819019Z;2020-11-03T12:35:38.766520Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/International;directory;0;16822;2019-12-07T09:15:01.049366Z;;;2785144255;1;0;4222124650981130;4096;0;0;0;2021-12-16T13:36:01.194769Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/International/International.psd1;file;963;33206;2019-12-07T09:09:29.067925Z;;;2785144255;2;0;1407374884348410;4096;8;0;0;2019-12-07T09:09:29.067925Z;2020-11-03T12:35:44.781002Z;2019-12-07T09:09:29.067925Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/iSCSI;directory;0;16822;2019-12-07T09:15:01.049366Z;;;2785144255;1;0;6192449487955730;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/iSCSI/iSCSI.psd1;file;932;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;1125899907514290;4096;8;0;0;2019-12-07T09:10:00.662954Z;2020-11-03T12:35:20.551896Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/iSCSI/iSCSIConnection.cdxml;file;6234;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;55732045389140700;4096;16;0;0;2019-12-07T09:10:00.662954Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/iSCSI/iSCSISession.cdxml;file;9387;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;38280596833080000;4096;24;0;0;2019-12-07T09:10:00.662954Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/iSCSI/iSCSITarget.cdxml;file;14982;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;22799473113993900;4096;32;0;0;2019-12-07T09:10:00.662954Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/iSCSI/iSCSITargetPortal.cdxml;file;12943;33206;2019-12-07T09:10:00.662954Z;;;2785144255;2;0;27866022694785800;4096;32;0;0;2019-12-07T09:10:00.662954Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:10:00.662954Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ISE;directory;0;16822;2019-12-07T14:54:04.766397Z;;;2785144255;1;0;5348024557823760;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:04.766397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ISE/ise.psd1;file;556;33206;2019-04-18T18:46:00Z;;;2785144255;2;0;1125899907612450;4096;8;0;0;2019-12-07T14:54:04.157553Z;2020-11-03T12:35:28.753098Z;2019-12-07T14:54:04.157553Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ISE/ise.psm1;file;4886;33206;2019-04-18T18:46:00Z;;;2785144255;2;0;1125899907612440;4096;16;0;0;2019-12-07T14:54:04.157553Z;2020-11-03T12:35:28.753098Z;2019-12-07T14:54:04.157553Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Kds;directory;0;16822;2019-12-07T09:15:01.049366Z;;;2785144255;1;0;4222124650981140;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Kds/Kds.psd1;file;572;33206;2019-12-07T09:10:04.101070Z;;;2785144255;3;0;1125899907629370;4096;8;0;0;2020-12-08T23:56:40.121015Z;2020-12-08T23:56:40.121015Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Archive;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;5629499534534420;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:41:50.313665Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Archive/de-DE;directory;0;16822;2019-12-07T14:51:16.766914Z;;;2785144255;1;0;5066549581113100;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Archive/de-DE/ArchiveResources.psd1;file;6086;33206;2019-12-07T14:50:50.907994Z;;;2785144255;2;0;17169973580118000;4096;16;0;0;2019-12-07T14:50:50.907994Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:50.907994Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Archive/en-US;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;1407374884227130;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:50.313665Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Archive/en-US/ArchiveResources.psd1;file;5402;33206;2020-11-03T12:41:35.519702Z;;;2785144255;2;0;1407374884397940;4096;16;0;0;2020-11-03T12:41:35.629082Z;2020-11-03T12:41:50.313665Z;2020-11-03T12:41:35.519702Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Archive/Microsoft.PowerShell.Archive.psd1;file;457;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628170;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.516579Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Archive/Microsoft.PowerShell.Archive.psm1;file;108624;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628850;4096;216;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.829004Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Diagnostics;directory;0;16822;2019-12-07T09:15:01.065741Z;;;2785144255;1;0;2814749767427860;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1;file;697;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628320;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.594687Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Host;directory;0;16822;2019-12-07T09:15:01.065741Z;;;2785144255;1;0;2814749767427860;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1;file;469;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907629830;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.485111Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Management;directory;0;16822;2019-12-07T09:15:01.065741Z;;;2785144255;1;0;3377699720849170;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1;file;2582;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907630310;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.719422Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils;directory;0;16822;2020-11-03T12:41:50.313665Z;;;2785144255;1;0;4222124650981140;4096;8;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:41:50.313665Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils/de-DE;directory;0;16822;2019-12-07T14:51:16.766914Z;;;2785144255;1;0;2814749767427860;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils/de-DE/Microsoft.PowerShell.ODataUtilsStrings.psd1;file;14072;33206;2019-12-07T14:50:50.907994Z;;;2785144255;2;0;15762598696564800;4096;32;0;0;2019-12-07T14:50:50.907994Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:50.907994Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227130;4096;0;0;0;2021-12-16T13:36:01.195741Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.313665Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils/en-US/Microsoft.PowerShell.ODataUtilsStrings.psd1;file;12220;33206;2020-11-03T12:41:35.519702Z;;;2785144255;2;0;1407374884397940;4096;24;0;0;2020-11-03T12:41:35.629082Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.519702Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils/Microsoft.PowerShell.ODataAdapter.ps1;file;171100;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628160;4096;336;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.516579Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils/Microsoft.PowerShell.ODataUtils.psd1;file;5438;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628010;4096;16;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.438473Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils/Microsoft.PowerShell.ODataUtils.psm1;file;20364;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628800;4096;40;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.813385Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils/Microsoft.PowerShell.ODataUtilsHelper.ps1;file;51630;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907629840;4096;104;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.500724Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.ODataUtils/Microsoft.PowerShell.ODataV4Adapter.ps1;file;110187;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628700;4096;216;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.766520Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Security;directory;0;16822;2019-12-07T09:15:01.065741Z;;;2785144255;1;0;3659174697559830;4096;0;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1;file;790;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628830;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.813385Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Utility;directory;0;16822;2019-12-07T09:15:01.065741Z;;;2785144255;1;0;2814749767427860;4096;0;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1;file;2473;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907630650;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.891256Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psm1;file;30592;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907630450;4096;64;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.797529Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.WSMan.Management;directory;0;16822;2019-12-07T09:15:01.065741Z;;;2785144255;1;0;10696049115326200;4096;0;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1;file;785;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907629360;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.032092Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MMAgent;directory;0;16822;2019-12-07T09:15:01.065741Z;;;2785144255;1;0;5348024557823780;4096;0;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MMAgent/MMAgent.psd1;file;662;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907628290;4096;8;0;0;2019-12-07T09:10:05.584846Z;2020-11-03T12:35:38.579065Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MMAgent/ps_mmagent_v1.0.cdxml;file;7261;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907629680;4096;16;0;0;2019-12-07T09:10:05.584846Z;2020-11-03T12:35:39.188297Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;3377699720849190;4096;8;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/de;directory;0;16822;2019-12-07T14:51:16.766914Z;;;2785144255;1;0;4503599627691840;4096;0;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/de/Microsoft.Dtc.PowerShell.Resources.dll;file;14336;33206;2019-12-07T14:50:50.846110Z;;;2785144255;2;0;1688849861008600;4096;32;0;0;2020-11-03T12:35:26.644217Z;2021-11-11T11:29:34.733598Z;2019-12-07T14:50:50.846110Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/de-DE;directory;0;16822;2019-12-07T14:51:16.766914Z;;;2785144255;1;0;3377699720849220;4096;0;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/de-DE/TestDtc.psd1;file;7232;33206;2019-12-07T14:50:50.846110Z;;;2785144255;2;0;1125899907610770;4096;16;0;0;2019-12-07T14:50:50.846110Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:50:50.846110Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/en;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227130;4096;0;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/en/Microsoft.Dtc.PowerShell.Resources.dll;file;13312;33206;2020-11-03T12:41:35.082304Z;;;2785144255;2;0;1407374884397670;4096;32;0;0;2020-11-03T12:41:35.176061Z;2021-11-11T11:29:34.357708Z;2020-11-03T12:41:35.082304Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227140;4096;0;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/en-US/TestDtc.psd1;file;6334;33206;2020-11-03T12:41:35.082304Z;;;2785144255;2;0;1407374884397670;4096;16;0;0;2020-11-03T12:41:35.176061Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.082304Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MsDtc.Formats.ps1xml;file;6497;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907628020;4096;16;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:38.438473Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MsDtc.psd1;file;4174;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907628560;4096;16;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:38.719669Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MsDtc.Types.ps1xml;file;2115;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907627960;4096;8;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:38.407229Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcAdvancedHostSettingTask_v1.0.cdxml;file;3268;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907630470;4096;8;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:39.797529Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcAdvancedSettingTask_v1.0.cdxml;file;3832;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907629640;4096;8;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:39.172674Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcClusterDefaultTask_v1.0.cdxml;file;1589;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907629590;4096;8;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:39.157055Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcClusterTMMappingTask_v1.0.cdxml;file;15072;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907628750;4096;32;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:38.797763Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcDefaultTask_v1.0.cdxml;file;1551;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907628440;4096;8;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:38.657171Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcLogTask_v1.0.cdxml;file;3652;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907630590;4096;8;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:39.860015Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcNetworkSettingTask_v1.0.cdxml;file;5453;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907630250;4096;16;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:39.703799Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcTask_v1.0.cdxml;file;4526;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907627960;4096;16;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:38.407229Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcTransactionsStatisticsTask_v1.0.cdxml;file;1240;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907628780;4096;8;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:38.797763Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml;file;2692;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1407374884339830;4096;8;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:38.953977Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcTransactionsTraceSettingTask_v1.0.cdxml;file;2724;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907630330;4096;8;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:39.735045Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/MSFT_DtcTransactionTask_v1.0.cdxml;file;5990;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907630090;4096;16;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:39.610072Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/MsDtc/TestDtc.psm1;file;26369;33206;2019-12-07T09:09:57.881591Z;;;2785144255;2;0;1125899907628590;4096;56;0;0;2019-12-07T09:09:57.881591Z;2020-11-03T12:35:38.735277Z;2019-12-07T09:09:57.881591Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter;directory;0;16822;2019-12-07T09:15:01.094866Z;;;2785144255;1;0;3659174697559880;4096;24;0;0;2021-12-16T13:36:01.196738Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapter.cmdletDefinition.cdxml;file;12283;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907637690;4096;24;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:44.702897Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapter.Format.ps1xml;file;10730;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907638770;4096;24;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:45.265264Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml;file;14629;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907638330;4096;32;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:45.062186Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterAdvancedProperty.Format.ps1xml;file;7767;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907638510;4096;16;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:45.140294Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterBinding.cmdletDefinition.cdxml;file;9742;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907636170;4096;24;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:43.609402Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterBinding.Format.ps1xml;file;2273;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907636370;4096;8;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:43.781238Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterChecksumOffload.cdxml;file;12210;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907636180;4096;24;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:43.625023Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterChecksumOffload.Format.ps1xml;file;7722;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907635030;4096;16;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:42.875159Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml;file;9240;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907638510;4096;24;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:45.140294Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterEncapsulatedPacketTaskOffload.Format.ps1xml;file;7209;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907637460;4096;16;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:44.546682Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterHardwareInfo.cmdletDefinition.cdxml;file;1492;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907638480;4096;8;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:45.124672Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterHardwareInfo.Format.ps1xml;file;7672;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907638700;4096;16;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:45.218400Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterIPsecOffload.cdxml;file;9306;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907634810;4096;24;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:42.718946Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterIPsecOffload.Format.ps1xml;file;5627;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907636760;4096;16;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:44.015557Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterLso.cdxml;file;9266;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1407374884348550;4096;24;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:44.859109Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterLso.Format.ps1xml;file;5960;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907639430;4096;16;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:45.593318Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterPacketDirect.cdxml;file;7777;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907635980;4096;16;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.468810Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterPacketDirect.Format.ps1xml;file;7205;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907635380;4096;16;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.062616Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml;file;16640;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907636440;4096;40;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.843722Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterPowerManagement.Format.Helper.psm1;file;3306;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907636400;4096;8;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.781238Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterPowerManagement.Format.ps1xml;file;7760;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907638260;4096;16;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:45.015322Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterQos.cdxml;file;8197;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907634830;4096;24;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:42.734567Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterQos.Format.Helper.psm1;file;5263;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907634880;4096;16;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:42.781431Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterQos.Format.ps1xml;file;6667;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907638870;4096;16;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:45.312128Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterRdma.cdxml;file;8913;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907638840;4096;24;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:45.296507Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterRdma.Format.ps1xml;file;11536;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907638630;4096;24;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:45.187157Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterRsc.cdxml;file;10864;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907636320;4096;24;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.734372Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterRsc.Format.ps1xml;file;4264;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907639340;4096;16;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:45.530826Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterRss.cmdletDefinition.cdxml;file;10193;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907635990;4096;24;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.468810Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterRss.Format.ps1xml;file;6152;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907638410;4096;16;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:45.093429Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterSriov.cdxml;file;9985;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907637990;4096;24;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:44.905973Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterSriov.Format.ps1xml;file;3650;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907635290;4096;8;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.015751Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterSriovVf.cmdletDefinition.cdxml;file;2032;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907635930;4096;8;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.421945Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterSriovVf.Format.ps1xml;file;2884;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907636280;4096;8;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.687509Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterStatistics.cmdletDefinition.cdxml;file;1488;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907636060;4096;8;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.515673Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterStatistics.Format.ps1xml;file;2620;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907638410;4096;8;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:45.093429Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterUso.cdxml;file;8973;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907639060;4096;24;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:45.405855Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterUso.Format.ps1xml;file;4193;33206;2019-12-07T09:09:14.991311Z;;;2785144255;2;0;1125899907636370;4096;16;0;0;2019-12-07T09:09:14.991311Z;2020-11-03T12:35:43.765616Z;2019-12-07T09:09:14.991311Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterVmq.cmdletDefinition.cdxml;file;8985;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907636690;4096;24;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.968692Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterVmq.Format.ps1xml;file;2897;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907635930;4096;8;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.421945Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterVmqQueue.cmdletDefinition.cdxml;file;1739;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907634740;4096;8;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:42.672081Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterVmqQueue.Format.ps1xml;file;3590;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907637070;4096;8;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:44.171774Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterVPort.cmdletDefinition.cdxml;file;2527;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907638920;4096;8;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:45.343371Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/MSFT_NetAdapterVPort.Format.ps1xml;file;5344;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907636840;4096;16;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:44.062422Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/NetAdapter.Format.Helper.psm1;file;3202;33206;2019-12-07T09:09:14.973686Z;;;2785144255;2;0;1125899907635270;4096;8;0;0;2019-12-07T09:09:14.973686Z;2020-11-03T12:35:43.000132Z;2019-12-07T09:09:14.973686Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/NetAdapter.psd1;file;5620;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907635660;4096;16;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.218829Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetAdapter/NetAdapter.Types.ps1xml;file;47207;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907638250;4096;96;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:45.015322Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetConnection;directory;0;16822;2019-12-07T09:15:01.094866Z;;;2785144255;1;0;2814749767427910;4096;0;0;0;2021-12-16T13:36:01.197734Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetConnection/MSFT_NetConnectionProfile.cdxml;file;5709;33206;2019-12-07T09:09:30.506459Z;;;2785144255;2;0;1125899907637880;4096;16;0;0;2019-12-07T09:09:30.506459Z;2020-11-03T12:35:44.859109Z;2019-12-07T09:09:30.506459Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetConnection/MSFT_NetConnectionProfile.format.ps1xml;file;1324;33206;2019-12-07T09:09:30.506459Z;;;2785144255;2;0;1125899907635720;4096;8;0;0;2019-12-07T09:09:30.506459Z;2020-11-03T12:35:43.265733Z;2019-12-07T09:09:30.506459Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetConnection/MSFT_NetConnectionProfile.types.ps1xml;file;1937;33206;2019-12-07T09:09:30.506459Z;;;2785144255;2;0;1125899907635400;4096;8;0;0;2019-12-07T09:09:30.506459Z;2020-11-03T12:35:43.078237Z;2019-12-07T09:09:30.506459Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetConnection/NetConnection.psd1;file;662;33206;2019-12-07T09:09:30.506459Z;;;2785144255;2;0;1125899907636540;4096;8;0;0;2019-12-07T09:09:30.506459Z;2020-11-03T12:35:43.890586Z;2019-12-07T09:09:30.506459Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture;directory;0;16822;2019-12-07T09:15:01.094866Z;;;2785144255;1;0;5066549581113160;4096;8;0;0;2021-12-16T13:36:01.197734Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventNetworkAdapter.cdxml;file;4766;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907630840;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.969363Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventNetworkAdapter.format.ps1xml;file;2384;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907629780;4096;8;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.266414Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventPacketCaptureProvider.cdxml;file;9675;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907628220;4096;24;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:38.547822Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventPacketCaptureProvider.format.ps1xml;file;5390;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907630040;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.594450Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventProvider.cdxml;file;7233;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907629520;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.125810Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventProvider.format.ps1xml;file;2670;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907629280;4096;8;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.000839Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventSession.cdxml;file;7240;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907630200;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.688179Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventSession.format.ps1xml;file;3351;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907628940;4096;8;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:38.860247Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventVFPProvider.cdxml;file;13004;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907629330;4096;32;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.016461Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventVFPProvider.format.ps1xml;file;6908;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907628910;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:38.860247Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventVmNetworkAdatper.cdxml;file;4148;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907629400;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.047704Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventVmNetworkAdatper.format.ps1xml;file;3344;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907628990;4096;8;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:38.891490Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventVmSwitch.cdxml;file;4148;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907628100;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:38.485337Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventVmSwitch.format.ps1xml;file;2012;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907627890;4096;8;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:38.360366Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventVmSwitchProvider.cdxml;file;5898;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907629600;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.157055Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventVmSwitchProvider.format.ps1xml;file;3248;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907630420;4096;8;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.766285Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventWFPCaptureProvider.cdxml;file;6774;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907628910;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:38.844627Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/MSFT_NetEventWFPCaptureProvider.format.ps1xml;file;4000;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907630710;4096;8;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.906879Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/NetEventPacketCapture.psd1;file;2786;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1407374884339590;4096;8;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:38.860247Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetEventPacketCapture/NetEventPacketCapture.Types.ps1xml;file;5876;33206;2019-12-07T09:10:04.195065Z;;;2785144255;2;0;1125899907630560;4096;16;0;0;2019-12-07T09:10:04.195065Z;2020-11-03T12:35:39.860015Z;2019-12-07T09:10:04.195065Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetLbfo;directory;0;16822;2019-12-07T09:15:01.094866Z;;;2785144255;1;0;5629499534534470;4096;8;0;0;2021-12-16T13:36:01.197734Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetLbfo/MSFT_NetLbfoTeam.cdxml;file;7676;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907639060;4096;16;0;0;2020-12-08T23:56:39.496161Z;2020-12-08T23:56:39.496161Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetLbfo/MSFT_NetLbfoTeam.format.ps1xml;file;3238;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907635760;4096;8;0;0;2020-12-08T23:56:39.496161Z;2020-12-08T23:56:39.496161Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetLbfo/MSFT_NetLbfoTeamMember.cdxml;file;5764;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907639200;4096;16;0;0;2020-12-08T23:56:39.496161Z;2020-12-08T23:56:39.496161Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetLbfo/MSFT_NetLbfoTeamMember.format.ps1xml;file;4789;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907636330;4096;16;0;0;2020-12-08T23:56:39.496161Z;2020-12-08T23:56:39.496161Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetLbfo/MSFT_NetLbfoTeamNic.cdxml;file;4824;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907636300;4096;16;0;0;2020-12-08T23:56:39.496161Z;2020-12-08T23:56:39.496161Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetLbfo/MSFT_NetLbfoTeamNic.format.ps1xml;file;4720;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907637500;4096;16;0;0;2020-12-08T23:56:39.496161Z;2020-12-08T23:56:39.496161Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetLbfo/NetLbfo.psd1;file;1177;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907638650;4096;8;0;0;2020-12-08T23:56:39.511782Z;2020-12-08T23:56:39.511782Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetLbfo/NetLbfo.Types.ps1xml;file;9376;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907639220;4096;24;0;0;2020-12-08T23:56:39.511782Z;2020-12-08T23:56:39.511782Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetNat;directory;0;16822;2019-12-07T09:15:01.112927Z;;;2785144255;1;0;2814749767427920;4096;8;0;0;2021-12-16T13:36:01.197734Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.768215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetNat/MSFT_NetNat.cdxml;file;5925;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907637790;4096;16;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:44.812244Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetNat/MSFT_NetNat.Format.ps1xml;file;7337;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907635710;4096;16;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:43.265733Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetNat/MSFT_NetNat.Types.ps1xml;file;5856;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907634830;4096;16;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:42.734567Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetNat/MSFT_NetNatExternalAddress.cdxml;file;3409;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907636760;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:44.015557Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetNat/MSFT_NetNatGlobal.cdxml;file;1282;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907639140;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:45.437099Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetNat/MSFT_NetNatSession.cdxml;file;503;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907635980;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:43.468810Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetNat/MSFT_NetNatStaticMapping.cdxml;file;4493;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907639250;4096;16;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:45.499583Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetNat/NetNat.psd1;file;1165;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907634980;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:42.843916Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetQos;directory;0;16822;2019-12-07T09:15:01.112927Z;;;2785144255;1;0;2814749767427920;4096;0;0;0;2021-12-16T13:36:01.197734Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetQos/MSFT_NetQosPolicy.cdxml;file;60721;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907635330;4096;120;0;0;2019-12-07T09:09:30.850397Z;2020-11-03T12:35:43.031373Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetQos/MSFT_NetQosPolicy.Format.Helper.psm1;file;585;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907636190;4096;8;0;0;2019-12-07T09:09:30.864940Z;2020-11-03T12:35:43.625023Z;2019-12-07T09:09:30.864940Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetQos/MSFT_NetQosPolicy.Format.ps1xml;file;7118;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907638530;4096;16;0;0;2019-12-07T09:09:30.850397Z;2020-11-03T12:35:45.140294Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetQos/MSFT_NetQosPolicy.Types.ps1xml;file;12237;33206;2019-12-07T09:09:30.864940Z;;;2785144255;2;0;1125899907639180;4096;24;0;0;2019-12-07T09:09:30.850397Z;2020-11-03T12:35:45.468342Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetQos/NetQos.psd1;file;698;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907635860;4096;8;0;0;2019-12-07T09:09:30.850397Z;2020-11-03T12:35:43.343839Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity;directory;0;16822;2021-05-18T17:31:36.368815Z;;;2785144255;1;0;2814749767427920;4096;16;0;0;2021-12-16T13:36:01.197734Z;2021-05-18T17:31:36.368815Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/de;directory;0;16822;2019-12-07T14:51:16.766914Z;;;2785144255;1;0;2814749767427920;4096;0;0;0;2021-12-16T13:36:01.197734Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/de/Microsoft.Windows.Firewall.Commands.Resources.dll;file;5632;33206;2019-12-07T14:50:50.907994Z;;;2785144255;2;0;1688849861008750;4096;16;0;0;2020-11-03T12:35:26.691082Z;2021-11-11T11:29:34.733598Z;2019-12-07T14:50:50.907994Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/en;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;5348024557823830;4096;0;0;0;2021-12-16T13:36:01.197734Z;2020-11-03T12:41:50.329316Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/en/Microsoft.Windows.Firewall.Commands.Resources.dll;file;5632;33206;2020-11-03T12:41:35.519702Z;;;2785144255;2;0;1407374884397930;4096;16;0;0;2020-11-03T12:41:35.629082Z;2021-11-11T11:29:34.357708Z;2020-11-03T12:41:35.519702Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/Microsoft.Windows.Firewall.Commands.dll;file;31232;33206;2021-05-18T10:59:46.361999Z;;;2785144255;2;0;1407374884441570;4096;64;0;0;2021-05-18T17:31:44.440939Z;2021-11-11T11:29:34.237030Z;2021-05-18T10:59:46.358558Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallAddressFilter.cmdletDefinition.cdxml;file;3841;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907628910;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallApplicationFilter.cmdletDefinition.cdxml;file;3232;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907628360;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallInterfaceFilter.cmdletDefinition.cdxml;file;3045;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907628600;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallInterfaceTypeFilter.cmdletDefinition.cdxml;file;3691;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629060;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallPortFilter.cmdletDefinition.cdxml;file;4864;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629250;4096;16;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallProfile.cmdletDefinition.cdxml;file;8311;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629690;4096;24;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallRule.cmdletDefinition.cdxml;file;31282;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907628770;4096;64;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallSecurityFilter.cmdletDefinition.cdxml;file;5554;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629980;4096;16;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallServiceFilter.cmdletDefinition.cdxml;file;2800;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629510;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetFirewallSetting.cmdletDefinition.cdxml;file;6381;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629960;4096;16;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetGPO.cmdletDefinition.cdxml;file;1885;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907630780;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecDospSetting.cmdletDefinition.cdxml;file;12071;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629080;4096;24;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecIdentity.cmdletDefinition.cdxml;file;1342;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907630490;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml;file;12972;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907627860;4096;32;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecMainModeRule.cmdletDefinition.cdxml;file;16738;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907630220;4096;40;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecMainModeSA.cmdletDefinition.cdxml;file;2085;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629360;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecPhase1AuthSet.cmdletDefinition.cdxml;file;11600;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907630640;4096;24;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecPhase2AuthSet.cmdletDefinition.cdxml;file;11022;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907630310;4096;24;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecPolicyChange.cmdletDefinition.cdxml;file;694;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629200;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml;file;11895;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629290;4096;24;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecQuickModeSA.cmdletDefinition.cdxml;file;3751;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907628930;4096;8;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetIPsecRule.cmdletDefinition.cdxml;file;39243;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907629150;4096;80;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetSecurity.formats.ps1xml;file;135150;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907628110;4096;264;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetSecurity.psd1;file;5154;33206;2019-12-07T09:10:02.241079Z;;;2785144255;2;0;1125899907628480;4096;16;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.241079Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSecurity/NetSecurity.types.ps1xml;file;73990;33206;2019-12-07T09:10:02.257043Z;;;2785144255;2;0;1125899907630620;4096;152;0;0;2021-07-07T10:42:15.041329Z;2021-07-07T10:42:15.041329Z;2019-12-07T09:10:02.257043Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSwitchTeam;directory;0;16822;2019-12-07T09:15:01.127524Z;;;2785144255;1;0;12384898975590300;4096;8;0;0;2021-12-16T13:36:01.198732Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSwitchTeam/MSFT_NetSwitchTeam.cdxml;file;5834;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907637320;4096;16;0;0;2020-12-08T23:56:39.496161Z;2020-12-08T23:56:39.496161Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSwitchTeam/MSFT_NetSwitchTeam.format.ps1xml;file;2428;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907638530;4096;8;0;0;2020-12-08T23:56:39.496161Z;2020-12-08T23:56:39.496161Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSwitchTeam/MSFT_NetSwitchTeamMember.cdxml;file;1234;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907635940;4096;8;0;0;2020-12-08T23:56:39.496161Z;2020-12-08T23:56:39.511782Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSwitchTeam/MSFT_NetSwitchTeamMember.format.ps1xml;file;3380;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907639240;4096;8;0;0;2020-12-08T23:56:39.511782Z;2020-12-08T23:56:39.511782Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetSwitchTeam/NetSwitchTeam.psd1;file;1161;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1407374884348760;4096;8;0;0;2020-12-08T23:56:39.511782Z;2020-12-08T23:56:39.511782Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP;directory;0;16822;2019-12-07T09:15:01.127524Z;;;2785144255;1;0;3377699720849270;4096;8;0;0;2021-12-16T13:36:01.198732Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetCompartment.cdxml;file;1046;33206;2019-12-07T09:09:15.020544Z;;;2785144255;2;0;1125899907634980;4096;8;0;0;2019-12-07T09:09:15.020544Z;2020-11-03T12:35:42.843916Z;2019-12-07T09:09:15.020544Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetIPAddress.cdxml;file;20027;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907637070;4096;40;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:44.171774Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetIPInterface.cdxml;file;24617;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907636030;4096;56;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.500052Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetIPv4Protocol.cdxml;file;11824;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907639310;4096;24;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:45.530826Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetIPv6Protocol.cdxml;file;14979;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907636540;4096;32;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.890586Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetNeighbor.cdxml;file;10723;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907636300;4096;24;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.718753Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetOffloadGlobalSetting.cdxml;file;5275;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907635670;4096;16;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.234450Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetPrefixPolicy.cdxml;file;1373;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907638270;4096;8;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:45.030944Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetRoute.cdxml;file;17217;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907639310;4096;40;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:45.530826Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetTCPConnection.cdxml;file;4526;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907636060;4096;16;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.515673Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetTCPSetting.cdxml;file;16175;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907636030;4096;32;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.500052Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetTransportFilter.cdxml;file;5085;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907637820;4096;16;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:44.812244Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetUDPEndpoint.cdxml;file;1771;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907637750;4096;8;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:44.781002Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/MSFT_NetUDPSetting.cdxml;file;1837;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907635120;4096;8;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:42.922024Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/NetIPConfiguration.psm1;file;14650;33206;2019-12-07T09:09:15.020544Z;;;2785144255;2;0;1125899907636480;4096;32;0;0;2019-12-07T09:09:15.020544Z;2020-11-03T12:35:43.859344Z;2019-12-07T09:09:15.020544Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/NetTCPIP.psd1;file;2177;33206;2019-12-07T09:09:15.020544Z;;;2785144255;2;0;1125899907634880;4096;8;0;0;2019-12-07T09:09:15.020544Z;2020-11-03T12:35:42.781431Z;2019-12-07T09:09:15.020544Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/Tcpip.Format.ps1xml;file;76175;33206;2019-12-07T09:09:15.020544Z;;;2785144255;2;0;1125899907639500;4096;152;0;0;2019-12-07T09:09:15.020544Z;2020-11-03T12:35:45.624554Z;2019-12-07T09:09:15.020544Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/Tcpip.Types.ps1xml;file;48409;33206;2019-12-07T09:09:15.020544Z;;;2785144255;2;0;1125899907637640;4096;96;0;0;2019-12-07T09:09:15.020544Z;2020-11-03T12:35:44.656042Z;2019-12-07T09:09:15.020544Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetTCPIP/Test-NetConnection.psm1;file;27938;33206;2019-12-07T09:09:15.020544Z;;;2785144255;2;0;1125899907639310;4096;56;0;0;2019-12-07T09:09:15.020544Z;2020-11-03T12:35:45.530826Z;2019-12-07T09:09:15.020544Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkConnectivityStatus;directory;0;16822;2019-12-07T09:15:01.127524Z;;;2785144255;1;0;2814749767427960;4096;8;0;0;2021-12-16T13:36:01.198732Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkConnectivityStatus/MSFT_DAConnectionStatus.cdxml;file;2355;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907637490;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.562304Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkConnectivityStatus/MSFT_DAConnectionStatus.format.ps1xml;file;832;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907635680;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:43.250107Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkConnectivityStatus/MSFT_DAConnectionStatus.types.ps1xml;file;1049;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907638640;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:45.187157Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkConnectivityStatus/MSFT_NCSIPolicyConfiguration.cdxml;file;4719;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907637770;4096;16;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.796635Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkConnectivityStatus/MSFT_NCSIPolicyConfiguration.format.ps1xml;file;1346;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1407374884348610;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.905973Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkConnectivityStatus/NetworkConnectivityStatus.psd1;file;858;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907637550;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.609167Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition;directory;0;16822;2019-12-07T09:15:01.149261Z;;;2785144255;1;0;5629499534534520;4096;16;0;0;2021-12-16T13:36:01.198732Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_Net6to4Configuration.cdxml;file;5836;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907634750;4096;16;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:42.687704Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_Net6to4Configuration.format.ps1xml;file;1331;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907638800;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:45.280885Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_Net6to4Configuration.types.ps1xml;file;2887;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907635140;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:42.937644Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetDnsTransitionConfiguration.cdxml;file;7111;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907638910;4096;16;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:45.327761Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetDnsTransitionConfiguration.format.ps1xml;file;1875;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907636510;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:43.874966Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetDnsTransitionConfiguration.types.ps1xml;file;1214;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907639180;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:45.468342Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetDnsTransitionMonitoring.cdxml;file;460;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907635210;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:42.968897Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetDnsTransitionMonitoring.format.ps1xml;file;1491;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907636600;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:43.921831Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetIpHTTPsConfiguration.cdxml;file;14941;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907636520;4096;32;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:43.874966Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetIpHTTPsConfiguration.format.ps1xml;file;1958;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1407374884349150;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:45.124672Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetIpHTTPsConfiguration.types.ps1xml;file;4054;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907638300;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:45.030944Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetIpHTTPsState.cdxml;file;413;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907635950;4096;0;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:43.453188Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetIpHTTPsState.format.ps1xml;file;932;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907636960;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:44.109284Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetISATAPConfiguration.cdxml;file;5287;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1407374884347760;4096;16;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.187391Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetISATAPConfiguration.format.ps1xml;file;1228;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907634970;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:42.828295Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetISATAPConfiguration.types.ps1xml;file;2063;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907635200;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:42.968897Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetNatTransitionConfiguration.cdxml;file;7734;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907638070;4096;16;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.952836Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetNatTransitionConfiguration.format.ps1xml;file;1827;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907634920;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:42.812674Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetNatTransitionConfiguration.types.ps1xml;file;2253;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907635450;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:43.109479Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetNatTransitionMonitoring.cdxml;file;927;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907638070;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.952836Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetNatTransitionMonitoring.format.ps1xml;file;1918;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907636860;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.062422Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetTeredoConfiguration.cdxml;file;7115;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907637250;4096;16;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.406090Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetTeredoConfiguration.format.ps1xml;file;1548;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907634990;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:42.843916Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetTeredoConfiguration.types.ps1xml;file;1181;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907635370;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:43.062616Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetTeredoState.cdxml;file;500;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907637390;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:44.499820Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/MSFT_NetTeredoState.format.ps1xml;file;657;33206;2019-12-07T09:09:30.489907Z;;;2785144255;2;0;1125899907638300;4096;8;0;0;2019-12-07T09:09:30.489907Z;2020-11-03T12:35:45.030944Z;2019-12-07T09:09:30.489907Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/NetworkTransition/NetworkTransition.psd1;file;2769;33206;2019-12-07T09:09:30.474759Z;;;2785144255;2;0;1125899907634850;4096;8;0;0;2019-12-07T09:09:30.474759Z;2020-11-03T12:35:42.750190Z;2019-12-07T09:09:30.474759Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PKI;directory;0;16822;2019-12-07T09:15:01.149261Z;;;2785144255;1;0;3377699720849280;4096;0;0;0;2021-12-16T13:36:01.198732Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PKI/pki.psd1;file;1982;33206;2019-12-07T09:10:04.101070Z;;;2785144255;3;0;1125899907630270;4096;8;0;0;2021-02-22T08:01:25.257999Z;2021-02-22T08:01:25.257999Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PKI/pki.types.ps1xml;file;12307;33206;2019-12-07T09:10:04.101070Z;;;2785144255;3;0;1125899907628030;4096;32;0;0;2021-02-22T08:01:25.258319Z;2021-02-22T08:01:25.258319Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PnpDevice;directory;0;16822;2019-12-07T09:15:01.149261Z;;;2785144255;1;0;3377699720849280;4096;0;0;0;2021-12-16T13:36:01.198732Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PnpDevice/PnpDevice.cdxml;file;12850;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907635870;4096;32;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.343839Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PnpDevice/PnpDevice.Format.ps1xml;file;3356;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907638470;4096;8;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:45.124672Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PnpDevice/PnpDevice.psd1;file;910;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1407374884347890;4096;8;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:44.390468Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PnpDevice/PnpDevice.Resource.psd1;file;8147;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907635960;4096;16;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:43.453188Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PnpDevice/PnpDevice.Types.ps1xml;file;15326;33206;2019-12-07T09:09:15.005337Z;;;2785144255;2;0;1125899907637230;4096;32;0;0;2019-12-07T09:09:15.005337Z;2020-11-03T12:35:44.390468Z;2019-12-07T09:09:15.005337Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement;directory;0;16822;2019-12-07T09:15:01.162251Z;;;2785144255;1;0;5348024557823880;4096;16;0;0;2021-12-16T13:36:01.198732Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_3DPrinter.format.ps1xml;file;5551;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907629110;4096;16;0;0;2021-02-22T08:01:21.191127Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_3DPrinter_v1.0.cdxml;file;289;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907629530;4096;8;0;0;2021-04-14T10:18:59.168025Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_LocalPrinterPort.format.ps1xml;file;2188;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907630770;4096;8;0;0;2021-02-22T08:01:21.192127Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_LocalPrinterPort_v1.0.cdxml;file;300;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907628170;4096;8;0;0;2021-04-14T10:18:59.136741Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_LprPrinterPort.format.ps1xml;file;2411;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907629400;4096;8;0;0;2021-02-22T08:01:21.192127Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_LprPrinterPort_v1.0.cdxml;file;298;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907630490;4096;8;0;0;2021-04-14T10:18:59.136741Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_Printer.format.ps1xml;file;6161;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907630620;4096;16;0;0;2021-02-22T08:01:21.192127Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_Printer.types.ps1xml;file;1524;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907629840;4096;8;0;0;2021-02-22T08:01:21.192127Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterConfiguration.format.ps1xml;file;3193;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907630240;4096;8;0;0;2021-02-22T08:01:21.193124Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterConfiguration.types.ps1xml;file;1262;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907628540;4096;8;0;0;2021-02-22T08:01:21.193559Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterConfiguration_v1.0.cdxml;file;20701;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907630740;4096;48;0;0;2021-04-14T10:18:59.130193Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterDriver.format.ps1xml;file;4901;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907629150;4096;16;0;0;2021-02-22T08:01:21.193832Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterDriver_v1.0.cdxml;file;4601;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907630090;4096;16;0;0;2021-04-14T10:18:59.114574Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterNfcTag.format.ps1xml;file;2172;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907628790;4096;8;0;0;2021-02-22T08:01:21.194070Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.897712Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterNfcTagTasks_v1.0.cdxml;file;3195;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907629750;4096;8;0;0;2021-04-14T10:18:59.168025Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.897712Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterNfcTag_v1.0.cdxml;file;303;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907628110;4096;8;0;0;2021-04-14T10:18:59.168025Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.897712Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterPort.format.ps1xml;file;2093;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907628500;4096;8;0;0;2021-02-22T08:01:21.194360Z;2021-02-22T08:01:24.475328Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterPortTasks_v1.0.cdxml;file;6783;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907630550;4096;16;0;0;2021-04-14T10:18:59.114574Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterPort_v1.0.cdxml;file;2262;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907629310;4096;8;0;0;2021-04-14T10:18:59.098951Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterProperty.format.ps1xml;file;2904;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907630440;4096;8;0;0;2021-02-22T08:01:21.194662Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.897712Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterProperty.types.ps1xml;file;459;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907628520;4096;8;0;0;2021-02-22T08:01:21.194880Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.897712Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrinterProperty_v1.0.cdxml;file;6308;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907628250;4096;16;0;0;2021-04-14T10:18:59.152404Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.897712Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_Printer_v1.0.cdxml;file;26623;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907628630;4096;56;0;0;2021-04-14T10:18:59.098951Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrintJob.format.ps1xml;file;4228;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907628940;4096;16;0;0;2021-02-22T08:01:21.195292Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.897712Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrintJob.types.ps1xml;file;851;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907630480;4096;8;0;0;2021-02-22T08:01:21.195499Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.897712Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_PrintJob_v1.0.cdxml;file;17747;33206;2019-12-07T09:09:45.897712Z;;;2785144255;4;0;1125899907629910;4096;40;0;0;2021-04-14T10:18:59.136741Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_TcpIpPrinterPort.format.ps1xml;file;3740;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907628900;4096;8;0;0;2021-02-22T08:01:21.195722Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_TcpIpPrinterPort.types.ps1xml;file;458;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907628140;4096;8;0;0;2021-02-22T08:01:21.195919Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_TcpIpPrinterPort_v1.0.cdxml;file;482;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907629120;4096;8;0;0;2021-04-14T10:18:59.152404Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_WsdPrinterPort.format.ps1xml;file;2782;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907627860;4096;8;0;0;2021-02-22T08:01:21.196158Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_WsdPrinterPort.types.ps1xml;file;482;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907629050;4096;8;0;0;2021-02-22T08:01:21.196351Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/MSFT_WsdPrinterPort_v1.0.cdxml;file;503;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907630640;4096;8;0;0;2021-04-14T10:18:59.152404Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PrintManagement/PrintManagement.psd1;file;8574;33206;2019-12-07T09:09:45.881246Z;;;2785144255;4;0;1125899907628280;4096;24;0;0;2021-04-14T10:18:59.083332Z;2021-02-22T08:01:24.476327Z;2019-12-07T09:09:45.881246Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning;directory;0;16822;2021-10-03T19:51:39.736202Z;;;2785144255;1;0;3096224744138630;4096;8;0;0;2021-12-16T13:36:01.198732Z;2021-10-03T19:51:39.736202Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning/provautologger_add.reg;file;6570;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907629440;4096;16;0;0;2021-03-11T12:10:04.898335Z;2021-04-15T08:15:56.881599Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning/provautologger_del.reg;file;152;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907628870;4096;0;0;0;2021-03-11T12:10:04.898335Z;2021-04-15T08:15:56.881599Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning/provcmdlets.dll;file;21504;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907628260;4096;48;0;0;2021-03-11T12:10:04.891828Z;2021-11-11T11:29:31.741371Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning/provcommon.dll;file;91648;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907628310;4096;184;0;0;2021-03-11T12:10:04.891828Z;2021-11-11T11:29:31.747355Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning/provisioning.psd1;file;2340;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907630540;4096;8;0;0;2021-03-11T12:10:04.898335Z;2021-04-15T08:15:56.881599Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning/provisioning.psm1;file;482;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907627920;4096;8;0;0;2021-03-11T12:10:04.898335Z;2021-04-15T08:15:56.881599Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning/provpackageapi.dll;file;634880;33206;2021-10-03T19:02:58.388154Z;;;2785144255;2;0;1688849861187690;4096;1240;0;0;2021-10-03T19:51:52.660823Z;2021-11-11T11:29:31.746357Z;2021-10-03T19:02:58.357290Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning/provtrace.wprp;file;8378;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907630190;4096;24;0;0;2021-03-11T12:10:04.891828Z;2021-04-15T08:15:56.881599Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Provisioning/wiminterop.dll;file;14336;33206;2019-12-07T09:10:05.584846Z;;;2785144255;2;0;1125899907629540;4096;32;0;0;2021-03-11T12:10:04.891828Z;2021-11-11T11:29:31.742368Z;2019-12-07T09:10:05.584846Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2814749767427980;4096;8;0;0;2021-12-16T13:36:01.198732Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/de-DE;directory;0;16822;2019-12-07T14:51:16.766914Z;;;2785144255;1;0;3096224744138630;4096;0;0;0;2021-12-16T13:36:01.198732Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/de-DE/PSDesiredStateConfiguration.Resource.psd1;file;18608;33206;2019-12-07T14:50:50.907994Z;;;2785144255;2;0;15481123719854200;4096;40;0;0;2019-12-07T14:50:50.907994Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:50:50.907994Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/de-DE/PSDSCxMachine.strings.psd1;file;2266;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;15481123719854200;4096;8;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/Disable-DscDebug.cdxml;file;1145;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907628340;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:38.594687Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCClassResources;directory;0;16822;2019-12-07T09:31:04.476672Z;;;2785144255;1;0;15481123719407500;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCClassResources/WindowsPackageCab;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;5910974511245200;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCClassResources/WindowsPackageCab/de-DE;directory;0;16822;2019-12-07T14:51:16.782939Z;;;2785144255;1;0;85005442966939500;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.766914Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCClassResources/WindowsPackageCab/de-DE/WindowsPackageCab.Strings.psd1;file;1202;33206;2019-12-07T14:50:50.939043Z;;;2785144255;2;0;14636698789722300;4096;8;0;0;2019-12-07T14:50:50.939043Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:50:50.939043Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCClassResources/WindowsPackageCab/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227140;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCClassResources/WindowsPackageCab/en-US/WindowsPackageCab.Strings.psd1;file;1110;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397980;4096;8;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCClassResources/WindowsPackageCab/WindowsPackageCab.psd1;file;857;33206;2019-12-07T09:10:02.866107Z;;;2785144255;2;0;1125899907628120;4096;8;0;0;2019-12-07T09:10:02.866107Z;2020-11-03T12:35:38.485337Z;2019-12-07T09:10:02.866107Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCClassResources/WindowsPackageCab/WindowsPackageCab.psm1;file;36490;33206;2019-12-07T09:10:02.866107Z;;;2785144255;2;0;1125899907630480;4096;72;0;0;2019-12-07T09:10:02.866107Z;2020-11-03T12:35:39.813151Z;2019-12-07T09:10:02.866107Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;3096224744138640;4096;8;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/CompositeResourceHelper.psm1;file;3984;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907630550;4096;8;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:39.860015Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/de-DE;directory;0;16822;2019-12-07T14:51:16.782939Z;;;2785144255;1;0;6755399441377170;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.782939Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/de-DE/RunAsHelper.strings.psd1;file;2260;33206;2019-12-07T14:50:50.939043Z;;;2785144255;2;0;14073748836300900;4096;8;0;0;2019-12-07T14:50:50.939043Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:50:50.939043Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/DSCResourceHelper.psm1;file;378;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907630370;4096;0;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:39.750665Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227140;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/en-US/RunAsHelper.strings.psd1;file;1792;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397980;4096;8;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/GroupSet;directory;0;16822;2019-12-07T09:15:01.174284Z;;;2785144255;1;0;9570149208483730;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/GroupSet/GroupSet.psd1;file;5322;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907629860;4096;16;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:39.500724Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/GroupSet/GroupSet.Schema.psm1;file;1243;33206;2019-12-07T09:10:02.851615Z;;;2785144255;2;0;1125899907629450;4096;8;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:39.078946Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ArchiveResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;6192449487955860;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ArchiveResource/de-DE;directory;0;16822;2019-12-07T14:51:16.782939Z;;;2785144255;1;0;7036874418087830;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.782939Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ArchiveResource/de-DE/ArchiveProvider.psd1;file;15448;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;1125899907610570;4096;32;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ArchiveResource/de-DE/MSFT_ArchiveResource.schema.mfl;file;2990;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028950;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ArchiveResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227140;4096;0;0;0;2021-12-16T13:36:01.199729Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ArchiveResource/en-US/ArchiveProvider.psd1;file;12602;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397960;4096;32;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ArchiveResource/en-US/MSFT_ArchiveResource.schema.mfl;file;2552;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397030;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ArchiveResource/MSFT_ArchiveResource.psm1;file;39342;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907629370;4096;80;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.032092Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ArchiveResource/MSFT_ArchiveResource.schema.mof;file;1062;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907630150;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.656938Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_EnvironmentResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;10414574138615700;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_EnvironmentResource/de-DE;directory;0;16822;2019-12-07T14:51:16.782939Z;;;2785144255;1;0;5629499534534550;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.782939Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_EnvironmentResource/de-DE/MSFT_EnvironmentResource.schema.mfl;file;1594;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028950;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_EnvironmentResource/de-DE/MSFT_EnvironmentResource.strings.psd1;file;2674;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;16044073673275400;4096;8;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_EnvironmentResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227140;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_EnvironmentResource/en-US/MSFT_EnvironmentResource.schema.mfl;file;1506;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397040;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_EnvironmentResource/en-US/MSFT_EnvironmentResource.strings.psd1;file;2534;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397970;4096;8;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_EnvironmentResource/MSFT_EnvironmentResource.psm1;file;26815;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907630170;4096;56;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.656938Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_EnvironmentResource/MSFT_EnvironmentResource.schema.mof;file;544;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907630260;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.703799Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_GroupResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;7036874418087840;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_GroupResource/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;3377699720849370;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_GroupResource/de-DE/MSFT_GroupResource.schema.mfl;file;2304;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028960;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_GroupResource/de-DE/MSFT_GroupResource.strings.psd1;file;6140;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;16607023626696700;4096;16;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_GroupResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227140;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_GroupResource/en-US/MSFT_GroupResource.schema.mfl;file;2080;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397040;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_GroupResource/en-US/MSFT_GroupResource.strings.psd1;file;5182;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397970;4096;16;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_GroupResource/MSFT_GroupResource.psm1;file;78968;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907630850;4096;160;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.969363Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_GroupResource/MSFT_GroupResource.schema.mof;file;834;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907630510;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.828771Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_LogResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;3377699720849370;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_LogResource/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;3096224744138720;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_LogResource/de-DE/MSFT_LogResource.schema.mfl;file;910;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028960;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_LogResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227150;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_LogResource/en-US/MSFT_LogResource.schema.mfl;file;858;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397050;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_LogResource/MSFT_LogResource.schema.mof;file;209;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907629860;4096;0;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.500724Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_PackageResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;3096224744138720;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_PackageResource/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;3377699720849380;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_PackageResource/de-DE/MSFT_PackageResource.schema.mfl;file;3820;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028970;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_PackageResource/de-DE/PackageProvider.psd1;file;8218;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;15199648743143500;4096;24;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_PackageResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227150;4096;0;0;0;2021-12-16T13:36:01.200726Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_PackageResource/en-US/MSFT_PackageResource.schema.mfl;file;3370;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397030;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_PackageResource/en-US/PackageProvider.psd1;file;6958;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397960;4096;16;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_PackageResource/MSFT_PackageResource.psm1;file;29732;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907628980;4096;64;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.875877Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_PackageResource/MSFT_PackageResource.schema.mof;file;1188;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907629050;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.922734Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ProcessResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;6192449487955940;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ProcessResource/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;3096224744138720;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ProcessResource/de-DE/MSFT_ProcessResource.schema.mfl;file;3416;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028970;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ProcessResource/de-DE/MSFT_ProcessResource.strings.psd1;file;4410;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;14918173766432800;4096;16;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ProcessResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227150;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ProcessResource/en-US/MSFT_ProcessResource.schema.mfl;file;3078;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397040;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ProcessResource/en-US/MSFT_ProcessResource.strings.psd1;file;4030;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397970;4096;8;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ProcessResource/MSFT_ProcessResource.psm1;file;22804;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907629840;4096;48;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.500724Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ProcessResource/MSFT_ProcessResource.schema.mof;file;1250;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907629930;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.531966Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RegistryResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;3096224744138720;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RegistryResource/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;3096224744138720;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RegistryResource/de-DE/MSFT_RegistryResource.schema.mfl;file;2230;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028970;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RegistryResource/de-DE/MSFT_RegistryResource.strings.psd1;file;4324;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;14918173766432800;4096;16;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RegistryResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227180;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RegistryResource/en-US/MSFT_RegistryResource.schema.mfl;file;1986;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397040;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RegistryResource/en-US/MSFT_RegistryResource.strings.psd1;file;3410;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397970;4096;8;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RegistryResource/MSFT_RegistryResource.psm1;file;38336;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907630580;4096;80;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.860015Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RegistryResource/MSFT_RegistryResource.schema.mof;file;1008;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907628380;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.610307Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RoleResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;3096224744138720;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RoleResource/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;3096224744138730;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RoleResource/de-DE/MSFT_RoleResource.schema.mfl;file;916;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028970;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RoleResource/de-DE/MSFT_RoleResourceStrings.psd1;file;5018;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;15199648743143500;4096;16;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RoleResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227280;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RoleResource/en-US/MSFT_RoleResource.schema.mfl;file;850;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397030;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RoleResource/en-US/MSFT_RoleResourceStrings.psd1;file;4552;33206;2020-11-03T12:41:35.519702Z;;;2785144255;2;0;1407374884397960;4096;16;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.519702Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RoleResource/MSFT_RoleResource.psm1;file;22438;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907628990;4096;48;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.891490Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_RoleResource/MSFT_RoleResource.schema.mof;file;1306;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907630530;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.828771Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ScriptResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2814749767428070;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ScriptResource/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2814749767428070;4096;0;0;0;2021-12-16T13:36:01.201723Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ScriptResource/de-DE/MSFT_ScriptResource.schema.mfl;file;918;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028970;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ScriptResource/de-DE/MSFT_ScriptResourceStrings.psd1;file;3236;33206;2019-12-07T14:50:50.939043Z;;;2785144255;2;0;16044073673275500;4096;8;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.612506Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ScriptResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227280;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ScriptResource/en-US/MSFT_ScriptResource.schema.mfl;file;894;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397050;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ScriptResource/en-US/MSFT_ScriptResourceStrings.psd1;file;2836;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397980;4096;8;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ScriptResource/MSFT_ScriptResource.psm1;file;12557;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907629850;4096;32;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.500724Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ScriptResource/MSFT_ScriptResource.schema.mof;file;718;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907630740;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.922501Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ServiceResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;3096224744138730;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ServiceResource/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;3096224744138730;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ServiceResource/de-DE/MSFT_ServiceResource.schema.mfl;file;3386;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028970;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ServiceResource/de-DE/MSFT_ServiceResource.strings.psd1;file;6834;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;14636698789722200;4096;16;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ServiceResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227280;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ServiceResource/en-US/MSFT_ServiceResource.schema.mfl;file;3086;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397040;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ServiceResource/en-US/MSFT_ServiceResource.strings.psd1;file;5740;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397970;4096;16;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ServiceResource/MSFT_ServiceResource.psm1;file;42602;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907628690;4096;88;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.766520Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_ServiceResource/MSFT_ServiceResource.schema.mof;file;1548;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907628560;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.719669Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_UserResource;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2533274790717420;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_UserResource/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2533274790717420;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_UserResource/de-DE/MSFT_UserResource.schema.mfl;file;1002;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028970;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_UserResource/de-DE/MSFT_UserResource.strings.psd1;file;3456;33206;2019-12-07T14:50:50.924751Z;;;2785144255;2;0;15199648743143500;4096;8;0;0;2019-12-07T14:50:50.924751Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:50:50.924751Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_UserResource/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227280;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_UserResource/en-US/MSFT_UserResource.schema.mfl;file;928;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397030;4096;8;0;0;2020-11-03T12:41:34.629317Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_UserResource/en-US/MSFT_UserResource.strings.psd1;file;2878;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397960;4096;8;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_UserResource/MSFT_UserResource.psm1;file;35297;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907628190;4096;72;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.532199Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_UserResource/MSFT_UserResource.schema.mof;file;982;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907628740;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.782142Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAll;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2533274790717420;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAll/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2533274790717420;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAll/de-DE/MSFT_WaitForAll.schema.mfl;file;1608;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028980;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAll/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227280;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAll/en-US/MSFT_WaitForAll.schema.mfl;file;1470;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397050;4096;8;0;0;2020-11-03T12:41:34.644910Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAll/MSFT_WaitForAll.psm1;file;3065;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907629640;4096;8;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:39.172674Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAll/MSFT_WaitForAll.schema.mof;file;1448;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907630710;4096;8;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:39.906879Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAny;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2533274790717420;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAny/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2533274790717430;4096;0;0;0;2021-12-16T13:36:01.202721Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAny/de-DE/MSFT_WaitForAny.schema.mfl;file;1608;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028980;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAny/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227280;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAny/en-US/MSFT_WaitForAny.schema.mfl;file;1470;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397050;4096;8;0;0;2020-11-03T12:41:34.644910Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAny/MSFT_WaitForAny.psm1;file;3049;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907628290;4096;8;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:38.579065Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForAny/MSFT_WaitForAny.schema.mof;file;1446;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907629290;4096;8;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:39.016461Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForSome;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2533274790717430;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForSome/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2533274790717430;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForSome/de-DE/MSFT_WaitForSome.schema.mfl;file;1848;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028980;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForSome/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227290;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForSome/en-US/MSFT_WaitForSome.schema.mfl;file;1644;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397050;4096;8;0;0;2020-11-03T12:41:34.644910Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForSome/MSFT_WaitForSome.psm1;file;3424;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907628390;4096;8;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:38.625928Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WaitForSome/MSFT_WaitForSome.schema.mof;file;1636;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907628440;4096;8;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:38.657171Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WindowsOptionalFeature;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2533274790717430;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WindowsOptionalFeature/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2533274790717430;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WindowsOptionalFeature/de-DE/MSFT_WindowsOptionalFeature.schema.mfl;file;3276;33206;2019-12-07T14:50:49.455086Z;;;2785144255;4;0;1688849861028980;4096;8;0;0;2019-12-07T14:50:49.455086Z;2020-11-03T12:35:27.862681Z;2019-12-07T14:50:49.455086Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WindowsOptionalFeature/de-DE/MSFT_WindowsOptionalFeature.strings.psd1;file;2804;33206;2019-12-07T14:50:50.939043Z;;;2785144255;2;0;14636698789722200;4096;8;0;0;2019-12-07T14:50:50.939043Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:50:50.939043Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WindowsOptionalFeature/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227290;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WindowsOptionalFeature/en-US/MSFT_WindowsOptionalFeature.schema.mfl;file;2960;33206;2020-11-03T12:41:34.535557Z;;;2785144255;4;0;1407374884397050;4096;8;0;0;2020-11-03T12:41:34.644910Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:34.535557Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WindowsOptionalFeature/en-US/MSFT_WindowsOptionalFeature.strings.psd1;file;2532;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397980;4096;8;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.535323Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WindowsOptionalFeature/MSFT_WindowsOptionalFeature.psm1;file;16522;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907627880;4096;40;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.360366Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/MSFT_WindowsOptionalFeature/MSFT_WindowsOptionalFeature.schema.mof;file;1282;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907630350;4096;8;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:39.735045Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/ProcessSet;directory;0;16822;2019-12-07T09:15:01.192929Z;;;2785144255;1;0;2533274790717430;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/ProcessSet/ProcessSet.psd1;file;5392;33206;2019-12-07T09:10:02.851615Z;;;2785144255;2;0;1125899907630450;4096;16;0;0;2019-12-07T09:10:02.851615Z;2020-11-03T12:35:39.781908Z;2019-12-07T09:10:02.851615Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/ProcessSet/ProcessSet.Schema.psm1;file;1583;33206;2019-12-07T09:10:02.851615Z;;;2785144255;2;0;1125899907627960;4096;8;0;0;2019-12-07T09:10:02.851615Z;2020-11-03T12:35:38.407229Z;2019-12-07T09:10:02.851615Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/RunAsHelper.psm1;file;16425;33206;2019-12-07T09:10:02.475422Z;;;2785144255;2;0;1125899907628320;4096;40;0;0;2019-12-07T09:10:02.475422Z;2020-11-03T12:35:38.594687Z;2019-12-07T09:10:02.475422Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/ServiceSet;directory;0;16822;2019-12-07T09:15:01.192929Z;;;2785144255;1;0;2533274790717430;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/ServiceSet/ServiceSet.psd1;file;5404;33206;2019-12-07T09:10:02.851615Z;;;2785144255;2;0;1125899907629120;4096;16;0;0;2019-12-07T09:10:02.851615Z;2020-11-03T12:35:38.938354Z;2019-12-07T09:10:02.851615Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/ServiceSet/ServiceSet.Schema.psm1;file;1419;33206;2019-12-07T09:10:02.851615Z;;;2785144255;2;0;1125899907629560;4096;8;0;0;2019-12-07T09:10:02.851615Z;2020-11-03T12:35:39.141432Z;2019-12-07T09:10:02.851615Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/WindowsFeatureSet;directory;0;16822;2019-12-07T09:15:01.192929Z;;;2785144255;1;0;2533274790717430;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/WindowsFeatureSet/WindowsFeatureSet.psd1;file;5430;33206;2019-12-07T09:10:02.851615Z;;;2785144255;2;0;1125899907629640;4096;16;0;0;2019-12-07T09:10:02.851615Z;2020-11-03T12:35:39.172674Z;2019-12-07T09:10:02.851615Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/WindowsFeatureSet/WindowsFeatureSet.Schema.psm1;file;1354;33206;2019-12-07T09:10:02.851615Z;;;2785144255;2;0;1125899907628700;4096;8;0;0;2019-12-07T09:10:02.851615Z;2020-11-03T12:35:38.766520Z;2019-12-07T09:10:02.851615Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/WindowsOptionalFeatureSet;directory;0;16822;2019-12-07T09:15:01.192929Z;;;2785144255;1;0;3096224744138750;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/WindowsOptionalFeatureSet/WindowsOptionalFeatureSet.psd1;file;5426;33206;2019-12-07T09:10:02.851615Z;;;2785144255;2;0;1125899907629300;4096;16;0;0;2019-12-07T09:10:02.851615Z;2020-11-03T12:35:39.016461Z;2019-12-07T09:10:02.851615Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/DSCResources/WindowsOptionalFeatureSet/WindowsOptionalFeatureSet.Schema.psm1;file;1502;33206;2019-12-07T09:10:02.851615Z;;;2785144255;2;0;1125899907629030;4096;8;0;0;2019-12-07T09:10:02.851615Z;2020-11-03T12:35:38.907111Z;2019-12-07T09:10:02.851615Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227290;4096;0;0;0;2021-12-16T13:36:01.203718Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/en-US/PSDesiredStateConfiguration.Resource.psd1;file;16012;33206;2020-11-03T12:41:35.519702Z;;;2785144255;2;0;1407374884397950;4096;32;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.519702Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/en-US/PSDSCxMachine.strings.psd1;file;1952;33206;2020-11-03T12:41:35.535323Z;;;2785144255;2;0;1407374884397960;4096;8;0;0;2020-11-03T12:41:35.644705Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:35.519702Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/Enable-DscDebug.cdxml;file;1440;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907629660;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:39.188297Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/Get-DscConfiguration.cdxml;file;1366;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907629600;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:39.157055Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/Get-DscConfigurationStatus.cdxml;file;1525;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907629250;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:39.000839Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/Get-DSCLocalConfigurationManager.cdxml;file;1518;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907628800;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:38.813385Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/PSDesiredStateConfiguration.format.ps1xml;file;16202;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907628130;4096;32;0;0;2019-12-07T09:10:02.272161Z;2020-11-03T12:35:38.500956Z;2019-12-07T09:10:02.272161Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/PSDesiredStateConfiguration.psd1;file;5084;33206;2019-12-07T09:10:02.272161Z;;;2785144255;2;0;1125899907628760;4096;16;0;0;2019-12-07T09:10:02.272161Z;2020-11-03T12:35:38.797763Z;2019-12-07T09:10:02.272161Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/PSDesiredStateConfiguration.psm1;file;200440;33206;2019-12-07T09:10:02.272161Z;;;2785144255;2;0;844424930917578;4096;392;0;0;2019-12-07T09:10:02.272161Z;2020-11-03T12:35:38.547822Z;2019-12-07T09:10:02.272161Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/PSDesiredStateConfiguration.types.ps1xml;file;3589;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907628930;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:38.860247Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/PSDscXMachine.psm1;file;11938;33206;2019-12-07T09:10:02.459706Z;;;2785144255;2;0;1125899907628870;4096;24;0;0;2019-12-07T09:10:02.459706Z;2020-11-03T12:35:38.829004Z;2019-12-07T09:10:02.459706Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/Remove-DscConfigurationDocument.cdxml;file;2397;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907629750;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:39.219540Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/Restore-DscConfiguration.cdxml;file;1106;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907629680;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:39.188297Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/Stop-DscConfiguration.cdxml;file;1441;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907628570;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:38.735277Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/WebDownloadManager;directory;0;16822;2019-12-07T09:15:01.192929Z;;;2785144255;1;0;3096224744138750;4096;0;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDesiredStateConfiguration/WebDownloadManager/WebDownloadManager.psd1;file;2446;33206;2019-12-07T09:10:02.444696Z;;;2785144255;2;0;1125899907627940;4096;8;0;0;2019-12-07T09:10:02.444696Z;2020-11-03T12:35:38.391609Z;2019-12-07T09:10:02.444696Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDiagnostics;directory;0;16822;2019-12-07T09:31:04.476672Z;;;2785144255;1;0;2533274790717440;4096;0;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDiagnostics/PSDiagnostics.psd1;file;648;33206;2019-12-07T09:12:45.504196Z;;;2785144255;1;0;1125899907630340;4096;8;0;0;2019-12-07T09:12:45.504196Z;2020-11-03T12:35:39.735045Z;2019-12-07T09:15:01.192929Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSDiagnostics/PSDiagnostics.psm1;file;23642;33206;2019-12-07T09:12:45.504196Z;;;2785144255;1;0;1125899907630370;4096;48;0;0;2019-12-07T09:12:45.504196Z;2020-11-03T12:35:39.750665Z;2019-12-07T09:15:01.192929Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSScheduledJob;directory;0;16822;2019-12-07T09:15:01.192929Z;;;2785144255;1;0;2814749767428090;4096;0;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSScheduledJob/PSScheduledJob.Format.ps1xml;file;7942;33206;2019-12-07T09:10:32.961187Z;;;2785144255;2;0;1125899907630800;4096;16;0;0;2019-12-07T09:10:32.961187Z;2020-11-03T12:35:39.938121Z;2019-12-07T09:10:32.961187Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSScheduledJob/PSScheduledJob.psd1;file;1043;33206;2019-12-07T09:10:32.961187Z;;;2785144255;2;0;844424930917945;4096;8;0;0;2019-12-07T09:10:32.961187Z;2020-11-03T12:35:38.735277Z;2019-12-07T09:10:32.961187Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/PSScheduledJob/PSScheduledJob.types.ps1xml;file;2494;33206;2019-12-07T09:10:32.961187Z;;;2785144255;2;0;1125899907630390;4096;8;0;0;2019-12-07T09:10:32.961187Z;2020-11-03T12:35:39.750665Z;2019-12-07T09:10:32.961187Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ScheduledTasks;directory;0;16822;2019-12-07T09:15:01.192929Z;;;2785144255;1;0;2533274790717440;4096;8;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ScheduledTasks/MSFT_ScheduledTask.format.ps1xml;file;2232;33206;2019-12-07T09:09:00.614545Z;;;2785144255;4;0;1125899907635570;4096;8;0;0;2021-10-03T18:55:09.548013Z;2021-11-11T08:10:02.360741Z;2019-12-07T09:09:00.614545Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ScheduledTasks/MSFT_ScheduledTask.types.ps1xml;file;8860;33206;2019-12-07T09:09:00.614545Z;;;2785144255;4;0;1125899907634970;4096;24;0;0;2021-10-03T18:55:09.552860Z;2021-11-11T08:10:02.360741Z;2019-12-07T09:09:00.614545Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ScheduledTasks/MSFT_ScheduledTask_v1.0.cdxml;file;3225;33206;2019-12-07T09:09:00.614545Z;;;2785144255;4;0;1125899907636530;4096;8;0;0;2021-10-03T18:55:09.546964Z;2021-11-11T08:10:02.360741Z;2019-12-07T09:09:00.614545Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ScheduledTasks/PS_ClusteredScheduledTask_v1.0.cdxml;file;18135;33206;2019-12-07T09:09:00.614545Z;;;2785144255;4;0;1125899907635920;4096;40;0;0;2021-10-03T18:55:09.564583Z;2021-11-11T08:10:02.360741Z;2019-12-07T09:09:00.614545Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ScheduledTasks/PS_ScheduledTask.types.ps1xml;file;3151;33206;2019-12-07T09:09:00.614545Z;;;2785144255;4;0;1125899907636300;4096;8;0;0;2021-10-03T18:55:09.560547Z;2021-11-11T08:10:02.360741Z;2019-12-07T09:09:00.614545Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ScheduledTasks/PS_ScheduledTask_v1.0.cdxml;file;61794;33206;2019-12-07T09:09:00.614545Z;;;2785144255;4;0;1125899907638930;4096;128;0;0;2021-10-03T18:55:09.556934Z;2021-11-11T08:10:02.360741Z;2019-12-07T09:09:00.614545Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/ScheduledTasks/ScheduledTasks.psd1;file;1905;33206;2019-12-07T09:09:00.614545Z;;;2785144255;4;0;1125899907637710;4096;8;0;0;2021-10-03T18:55:09.543522Z;2021-11-11T08:10:02.360741Z;2019-12-07T09:09:00.614545Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SecureBoot;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2251799814006780;4096;0;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SecureBoot/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2251799814006780;4096;0;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SecureBoot/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1688849860937950;4096;0;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SecureBoot/SecureBoot.psd1;file;554;33206;2019-12-07T09:10:04.089589Z;;;2785144255;3;0;1125899907629980;4096;8;0;0;2019-12-07T09:10:04.089589Z;2020-11-03T12:35:39.547587Z;2019-12-07T09:10:04.089589Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare;directory;0;16822;2020-11-03T12:48:17.530636Z;;;2785144255;1;0;2251799814006780;4096;8;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:48:17.530636Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/en-US;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2251799814006790;4096;0;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/en-US/SmbLocalization.psd1;file;491;33206;2019-12-07T14:51:02.346023Z;;;2785144255;2;0;13792273859590300;4096;8;0;0;2019-12-07T14:51:02.346023Z;2020-11-03T12:35:28.628137Z;2019-12-07T14:51:02.346023Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/Smb.format.ps1xml;file;57660;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;1125899907514280;4096;120;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/Smb.types.ps1xml;file;21329;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;1125899907514280;4096;48;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbBandwidthLimit.cdxml;file;2991;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;40813871623476000;4096;8;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbClientConfiguration.cdxml;file;12167;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;56857945295983400;4096;24;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbClientNetworkInterface.cdxml;file;775;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;50384020831638300;4096;8;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbComponent.cdxml;file;1316;33206;2020-11-03T12:45:54.556203Z;;;2785144255;2;0;562949954398527;4096;8;0;0;2020-11-03T12:45:54.556203Z;2020-11-03T12:48:17.530636Z;2020-11-03T12:45:54.556203Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbConnection.cdxml;file;2177;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;49539595901506300;4096;8;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbGlobalMapping.cdxml;file;7795;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;31525197392024300;4096;16;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbMapping.cdxml;file;8195;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;24206847997547300;4096;24;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbMultichannelConnection.cdxml;file;3196;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;31525197392024400;4096;8;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbMultichannelConstraint.cdxml;file;7365;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;32088147345445700;4096;16;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbOpenFile.cdxml;file;7639;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;41095346600186700;4096;16;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbScriptModule.psm1;file;5009;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;1125899907514300;4096;16;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbServerCertificateMapping.cdxml;file;8103;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;20829148277019400;4096;16;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbServerConfiguration.cdxml;file;18350;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;20547673300308800;4096;40;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbServerNetworkInterface.cdxml;file;775;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;20266198323598100;4096;8;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbSession.cdxml;file;6851;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;19421773393466200;4096;16;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbShare.cdxml;file;32551;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;17451448556491600;4096;64;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbShare.Format.Helper.psm1;file;826;33206;2019-12-07T09:09:32.473386Z;;;2785144255;2;0;1125899907514310;4096;8;0;0;2020-12-08T23:56:40.277239Z;2020-12-08T23:56:40.277239Z;2019-12-07T09:09:32.473386Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/SmbShare/SmbShare.psd1;file;4965;33206;2020-11-03T12:45:54.556203Z;;;2785144255;2;0;562949954398526;4096;16;0;0;2020-11-03T12:45:54.556203Z;2020-11-03T12:48:17.530636Z;2020-11-03T12:45:54.556203Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage;directory;0;16822;2019-12-07T09:15:01.222273Z;;;2785144255;1;0;2251799814006790;4096;8;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/Disk.cdxml;file;25874;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;17451448556491400;4096;56;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.365610Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/DiskImage.cdxml;file;6590;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;19140298416755400;4096;16;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.365610Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/FileIntegrity.cdxml;file;3448;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;19421773393466000;4096;8;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.365610Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/FileServer.cdxml;file;8671;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;25895697857811100;4096;24;0;0;2019-12-07T09:09:55.068878Z;2020-11-03T12:35:15.365610Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/FileShare.cdxml;file;17579;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;29836347531760300;4096;40;0;0;2019-12-07T09:09:55.068878Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/FileStorageTier.cdxml;file;12081;33206;2019-12-07T09:09:56.818942Z;;;2785144255;2;0;49258120924795600;4096;24;0;0;2019-12-07T09:09:56.818942Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:56.818942Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/InitiatorId.cdxml;file;6536;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;26740122787943100;4096;16;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/InitiatorPort.cdxml;file;7464;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;25895697857811100;4096;16;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/MaskingSet.cdxml;file;23284;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;26458647811232500;4096;48;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/OffloadDataTransferSetting.cdxml;file;1245;33206;2019-12-07T09:09:56.818942Z;;;2785144255;2;0;36028797019394800;4096;8;0;0;2019-12-07T09:09:56.818942Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:56.818942Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/Partition.cdxml;file;18340;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;30117822508471000;4096;40;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/PhysicalDisk.cdxml;file;272;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;32932572275577600;4096;0;0;0;2019-12-07T09:09:55.068878Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/ResiliencySetting.cdxml;file;5341;33206;2019-12-07T09:09:56.678330Z;;;2785144255;2;0;67835469387698900;4096;16;0;0;2019-12-07T09:09:56.678330Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:56.678330Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/Storage.format.ps1xml;file;105889;33206;2019-12-07T09:09:57.022197Z;;;2785144255;2;0;1125899907514290;4096;208;0;0;2019-12-07T09:09:56.818942Z;2020-11-03T12:35:20.551896Z;2019-12-07T09:09:56.818942Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/Storage.psd1;file;7103;33206;2019-12-07T09:09:56.818942Z;;;2785144255;2;0;1125899907514300;4096;16;0;0;2019-12-07T09:09:56.818942Z;2020-11-03T12:35:20.551896Z;2019-12-07T09:09:56.818942Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/Storage.types.ps1xml;file;119617;33206;2019-12-07T09:09:57.022197Z;;;2785144255;2;0;1125899907514290;4096;240;0;0;2019-12-07T09:09:57.022197Z;2020-11-03T12:35:20.551896Z;2019-12-07T09:09:57.022197Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageCmdlets.cdxml;file;145184;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;17732923533202200;4096;288;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.381231Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageEnclosure.cdxml;file;14688;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;20547673300308800;4096;32;0;0;2019-12-07T09:09:55.068878Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageHealth.cdxml;file;6065;33206;2019-12-07T09:09:57.022197Z;;;2785144255;2;0;21392098230440800;4096;16;0;0;2019-12-07T09:09:57.022197Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:57.022197Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageJob.cdxml;file;8246;33206;2019-12-07T09:09:56.818942Z;;;2785144255;2;0;13792273859253100;4096;24;0;0;2019-12-07T09:09:56.818942Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:56.818942Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageNode.cdxml;file;6390;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;55450570412430200;4096;16;0;0;2019-12-07T09:09:55.068878Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StoragePool.cdxml;file;37194;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;24206847997547300;4096;80;0;0;2019-12-07T09:09:55.068878Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageProvider.cdxml;file;9913;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;14918173766095700;4096;24;0;0;2019-12-07T09:09:56.678330Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:56.678330Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageReliabilityCounter.cdxml;file;2137;33206;2019-12-07T09:09:56.818942Z;;;2785144255;2;0;16888498603070300;4096;8;0;0;2019-12-07T09:09:56.818942Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:56.818942Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageScripts.psm1;file;289460;33206;2019-12-07T09:09:56.818942Z;;;2785144255;2;0;1125899907514310;4096;568;0;0;2019-12-07T09:09:56.818942Z;2020-11-03T12:35:20.567523Z;2019-12-07T09:09:56.818942Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageSetting.cdxml;file;2976;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;17451448556491600;4096;8;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageSubSystem.cdxml;file;46518;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;57983845202826100;4096;96;0;0;2019-12-07T09:09:55.068878Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/StorageTier.cdxml;file;8789;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;58828270132958000;4096;24;0;0;2019-12-07T09:09:55.068878Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/TargetPort.cdxml;file;8149;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;15762598696227700;4096;16;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/TargetPortal.cdxml;file;3142;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;17451448556491600;4096;8;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/VirtualDisk.cdxml;file;37184;33206;2019-12-07T09:09:55.068878Z;;;2785144255;2;0;32932572275577700;4096;80;0;0;2019-12-07T09:09:55.068878Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:55.068878Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Storage/Volume.cdxml;file;40034;33206;2019-12-07T09:09:56.803963Z;;;2785144255;2;0;34339947159131000;4096;80;0;0;2019-12-07T09:09:56.803963Z;2020-11-03T12:35:15.396852Z;2019-12-07T09:09:56.803963Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/StorageBusCache;directory;0;16822;2019-12-07T09:15:01.222273Z;;;2785144255;1;0;2251799814006790;4096;0;0;0;2021-12-16T13:36:01.204715Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/StorageBusCache/StorageBusCache.format.ps1xml;file;2240;33206;2019-12-07T09:09:57.022197Z;;;2785144255;2;0;1125899907514290;4096;8;0;0;2019-12-07T09:09:57.022197Z;2020-11-03T12:35:20.551896Z;2019-12-07T09:09:57.022197Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/StorageBusCache/StorageBusCache.psd1;file;946;33206;2019-12-07T09:09:57.022197Z;;;2785144255;2;0;1125899907514300;4096;8;0;0;2019-12-07T09:09:57.022197Z;2020-11-03T12:35:20.551896Z;2019-12-07T09:09:57.022197Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/StorageBusCache/StorageBusCache.psm1;file;98432;33206;2019-12-07T09:09:57.022197Z;;;2785144255;2;0;1125899907514310;4096;200;0;0;2019-12-07T09:09:57.022197Z;2020-11-03T12:35:20.567523Z;2019-12-07T09:09:57.022197Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/StorageBusCache/StorageBusCache.types.ps1xml;file;334;33206;2019-12-07T09:09:57.022197Z;;;2785144255;2;0;1125899907514290;4096;0;0;0;2019-12-07T09:09:57.022197Z;2020-11-03T12:35:20.551896Z;2019-12-07T09:09:57.022197Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TLS;directory;0;16822;2019-12-07T09:15:01.222273Z;;;2785144255;1;0;2251799814006790;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TLS/tls.psd1;file;802;33206;2019-12-07T09:10:04.101070Z;;;2785144255;3;0;1125899907630300;4096;8;0;0;2020-12-08T23:56:40.121015Z;2020-12-08T23:56:40.121015Z;2019-12-07T09:10:04.101070Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TroubleshootingPack;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2251799814006790;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TroubleshootingPack/en-US;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2251799814006790;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TroubleshootingPack/TroubleshootingPack.format.ps1xml;file;20597;33206;2019-12-07T09:10:04.209803Z;;;2785144255;2;0;1125899907630610;4096;48;0;0;2019-12-07T09:10:04.209803Z;2020-11-03T12:35:39.875636Z;2019-12-07T09:10:04.209803Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TroubleshootingPack/TroubleshootingPack.psd1;file;599;33206;2019-12-07T09:10:04.209803Z;;;2785144255;2;0;1125899907629700;4096;8;0;0;2019-12-07T09:10:04.209803Z;2020-11-03T12:35:39.203919Z;2019-12-07T09:10:04.209803Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TrustedPlatformModule;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2533274790717650;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TrustedPlatformModule/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2251799814006990;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TrustedPlatformModule/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1688849860937950;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/TrustedPlatformModule/TrustedPlatformModule.psd1;file;729;33206;2019-12-07T09:09:13.524584Z;;;2785144255;3;0;1125899907638720;4096;8;0;0;2019-12-07T09:09:13.524584Z;2020-11-03T12:35:45.234021Z;2019-12-07T09:09:13.524584Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/UEV;directory;0;16822;2019-12-07T14:54:52.844554Z;;;2785144255;1;0;2251799814006990;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:54:51.407182Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/UEV/Microsoft.Uev.Commands.dll;file;84480;33206;2019-12-07T14:54:39.610298Z;;;2785144255;2;0;1125899907621560;4096;168;0;0;2021-11-11T11:27:34.116696Z;2021-12-16T12:06:18.143713Z;2019-12-07T09:10:22.569977Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/UEV/UEV.psd1;file;1160;33206;2019-12-07T09:10:22.569977Z;;;2785144255;2;0;1125899907621450;4096;8;0;0;2021-11-11T11:27:34.115699Z;2021-12-16T12:06:18.143713Z;2019-12-07T09:10:22.569977Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/UEV/UEV.Types.ps1xml;file;939;33206;2019-12-07T09:10:22.569977Z;;;2785144255;2;0;1125899907621490;4096;8;0;0;2021-11-11T11:27:34.113704Z;2021-12-16T12:06:18.143713Z;2019-12-07T09:10:22.569977Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2251799814006990;4096;8;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:41:50.329316Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/de-DE;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2251799814007000;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/en-US;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1688849860937950;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_EapConfiguration_v1.0.0.cdxml;file;8119;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907639190;4096;16;0;0;2019-12-07T09:09:32.333758Z;2020-11-03T12:35:45.468342Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_VpnConnectionIPsecConfiguration_v1.0.cdxml;file;9209;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907638810;4096;24;0;0;2019-12-07T09:09:32.333758Z;2020-11-03T12:35:45.280885Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_VpnConnectionProxy_v1.0.cdxml;file;3345;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907638990;4096;8;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:45.374613Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_VpnConnectionRoute_v1.0.cdxml;file;5194;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907637530;4096;16;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:44.593572Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_VpnConnectionTriggerApplication_v1.0.cdxml;file;4577;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907638690;4096;16;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:45.218400Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml;file;7500;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907635090;4096;16;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:42.906402Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml;file;6705;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907635950;4096;16;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:43.453188Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_VpnConnectionTrigger_v1.0.cdxml;file;1430;33206;2019-12-07T09:09:32.349807Z;;;2785144255;2;0;1125899907638080;4096;8;0;0;2019-12-07T09:09:32.349807Z;2020-11-03T12:35:44.952836Z;2019-12-07T09:09:32.349807Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_VpnConnection_v1.0.0.cdxml;file;29149;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907635690;4096;64;0;0;2019-12-07T09:09:32.333758Z;2020-11-03T12:35:43.250107Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/PS_VpnServerAddress_v1.0.cdxml;file;1706;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1407374884348330;4096;8;0;0;2019-12-07T09:09:32.333758Z;2020-11-03T12:35:44.687274Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/VpnClient.psd1;file;1653;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907638100;4096;8;0;0;2019-12-07T09:09:32.333758Z;2020-11-03T12:35:44.952836Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/VpnClientPSProvider.Format.ps1xml;file;38198;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907639000;4096;80;0;0;2019-12-07T09:09:32.333758Z;2020-11-03T12:35:45.374613Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/VpnClient/VpnClientPSProvider.Types.ps1xml;file;12016;33206;2019-12-07T09:09:32.333758Z;;;2785144255;2;0;1125899907639020;4096;24;0;0;2019-12-07T09:09:32.333758Z;2020-11-03T12:35:45.390235Z;2019-12-07T09:09:32.333758Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Wdac;directory;0;16822;2019-12-07T09:15:01.222273Z;;;2785144255;1;0;2251799814007000;4096;8;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Wdac/MSFT_OdbcDriverTask_v1.0.cdxml;file;17622;33206;2019-12-07T09:10:02.146090Z;;;2785144255;2;0;1125899907629670;4096;40;0;0;2019-12-07T09:10:02.146090Z;2020-11-03T12:35:39.188297Z;2019-12-07T09:10:02.146090Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Wdac/MSFT_OdbcDsnTask_v1.0.cdxml;file;26539;33206;2019-12-07T09:10:02.146090Z;;;2785144255;2;0;1125899907628090;4096;56;0;0;2019-12-07T09:10:02.146090Z;2020-11-03T12:35:38.469714Z;2019-12-07T09:10:02.146090Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Wdac/MSFT_OdbcPerfCounterTask_v1.0.cdxml;file;18971;33206;2019-12-07T09:10:02.146090Z;;;2785144255;2;0;1125899907627820;4096;40;0;0;2019-12-07T09:10:02.146090Z;2020-11-03T12:35:38.329122Z;2019-12-07T09:10:02.146090Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Wdac/MSFT_WdacBidTraceTask_v1.0.cdxml;file;31605;33206;2019-12-07T09:10:02.146090Z;;;2785144255;2;0;1125899907627980;4096;64;0;0;2019-12-07T09:10:02.146090Z;2020-11-03T12:35:38.407229Z;2019-12-07T09:10:02.146090Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Wdac/Wdac.format.ps1xml;file;34287;33206;2019-12-07T09:10:02.146090Z;;;2785144255;2;0;1125899907629620;4096;72;0;0;2019-12-07T09:10:02.146090Z;2020-11-03T12:35:39.157055Z;2019-12-07T09:10:02.146090Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Wdac/Wdac.psd1;file;1388;33206;2019-12-07T09:10:02.146090Z;;;2785144255;2;0;1125899907629220;4096;8;0;0;2019-12-07T09:10:02.146090Z;2020-11-03T12:35:38.985219Z;2019-12-07T09:10:02.146090Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/Wdac/Wdac.types.ps1xml;file;13869;33206;2019-12-07T09:10:02.146090Z;;;2785144255;2;0;1125899907630070;4096;32;0;0;2019-12-07T09:10:02.146090Z;2020-11-03T12:35:39.594450Z;2019-12-07T09:10:02.146090Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/WindowsDeveloperLicense;directory;0;16822;2019-12-07T09:15:01.236856Z;;;2785144255;1;0;2251799814007000;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/WindowsDeveloperLicense/WindowsDeveloperLicense.psd1;file;668;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907637070;4096;8;0;0;2019-12-07T09:09:15.145962Z;2020-11-03T12:35:44.171774Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/WindowsErrorReporting;directory;0;16822;2019-12-07T09:15:01.236856Z;;;2785144255;1;0;2251799814007000;4096;0;0;0;2021-12-16T13:36:01.205712Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/WindowsErrorReporting/Microsoft.WindowsErrorReporting.PowerShell.dll;file;7168;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907628900;4096;16;0;0;2020-11-03T12:35:38.844627Z;2021-11-11T11:29:34.209104Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/WindowsErrorReporting/WindowsErrorReporting.psd1;file;755;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907628970;4096;8;0;0;2019-12-07T09:10:00.427662Z;2020-11-03T12:35:38.875877Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/WindowsErrorReporting/WindowsErrorReporting.psm1;file;166;33206;2019-12-07T09:10:00.427662Z;;;2785144255;2;0;1125899907627820;4096;0;0;0;2019-12-07T09:10:00.427662Z;2020-11-03T12:35:38.329122Z;2019-12-07T09:10:00.427662Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/WindowsUpdate;directory;0;16822;2019-12-07T09:15:01.236856Z;;;2785144255;1;0;2251799814007000;4096;0;0;0;2021-12-16T13:36:01.206709Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/WindowsUpdate/WindowsUpdate.psd1;file;1078;33206;2019-12-07T09:09:13.707215Z;;;2785144255;2;0;1125899907639400;4096;8;0;0;2021-10-16T00:20:01.546793Z;2021-11-15T13:07:18.049433Z;2019-12-07T09:09:13.707215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Modules/WindowsUpdate/WindowsUpdateLog.psm1;file;15398;33206;2019-12-07T09:09:13.707215Z;;;2785144255;2;0;1125899907635990;4096;32;0;0;2021-10-16T00:20:01.546793Z;2021-11-15T13:07:18.049433Z;2019-12-07T09:09:13.707215Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/powershell.exe;file;433152;33206;2020-11-03T12:46:14.739343Z;;;2785144255;2;0;562949954403955;4096;848;0;0;2021-12-16T09:35:30.243263Z;2021-11-11T11:29:34.238065Z;2020-11-03T12:46:14.739343Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/powershell.exe.config;file;395;33206;2019-12-07T09:10:47.447060Z;;;2785144255;2;0;1125899907629290;4096;8;0;0;2021-11-01T10:20:40.497535Z;2020-12-08T23:56:39.574269Z;2019-12-07T09:10:47.447060Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/PowerShellCore.format.ps1xml;file;206468;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907629140;4096;408;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.938354Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/PowerShellTrace.format.ps1xml;file;4097;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907630260;4096;16;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.703799Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/powershell_ise.exe;file;213504;33206;2019-12-06T16:50:00Z;;;2785144255;2;0;14355223812925200;4096;424;0;0;2021-12-16T09:35:30.253306Z;2021-11-11T11:29:35.487636Z;2019-12-07T14:54:04.157553Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/powershell_ise.exe.config;file;465;33206;2019-04-18T18:46:00Z;;;2785144255;2;0;1125899907612440;4096;8;0;0;2021-11-01T10:20:39.369710Z;2020-11-03T12:35:28.753098Z;2019-12-07T14:54:04.157553Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/PSEvents.dll;file;55808;33206;2019-12-07T09:10:47.447060Z;;;2785144255;2;0;1125899907627830;4096;112;0;0;2020-11-03T12:35:38.329122Z;2021-11-11T11:29:34.234037Z;2019-12-07T09:10:47.447060Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/pspluginwkr.dll;file;154624;33206;2019-12-07T09:10:32.961187Z;;;2785144255;2;0;1125899907631730;4096;304;0;0;2020-11-03T12:35:40.703794Z;2021-11-11T11:29:31.432937Z;2019-12-07T09:10:32.961187Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/pwrshmsg.dll;file;2560;33206;2019-12-07T09:10:47.447060Z;;;2785144255;2;0;1125899907630800;4096;8;0;0;2020-11-03T12:35:39.938121Z;2021-11-11T11:29:34.235034Z;2019-12-07T09:10:47.447060Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/pwrshsip.dll;file;23040;33206;2020-11-03T12:46:14.739343Z;;;2785144255;2;0;562949954403956;4096;48;0;0;2021-12-16T12:20:53.457094Z;2021-11-11T11:29:34.237030Z;2020-11-03T12:46:14.739343Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Registry.format.ps1xml;file;8458;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907628220;4096;24;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.547822Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas;directory;0;16822;2019-12-07T09:14:52.783428Z;;;2785144255;1;0;2251799814007000;4096;0;0;0;2021-12-16T13:36:01.206709Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml;directory;0;16822;2019-12-07T09:15:01.252441Z;;;2785144255;1;0;2251799814007000;4096;16;0;0;2021-12-16T13:36:01.206709Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.783428Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/base.xsd;file;6434;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907628980;4096;16;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.875877Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/baseConditional.xsd;file;5297;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907628370;4096;16;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.610307Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/block.xsd;file;917;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907627940;4096;8;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.391609Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/blockCommon.xsd;file;3872;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907630330;4096;8;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.735045Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/blockSoftware.xsd;file;1282;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907630760;4096;8;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.922501Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/command.xsd;file;13062;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907629670;4096;32;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.188297Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/conditionSet.xsd;file;4279;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907627990;4096;16;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.422851Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developer.xsd;file;11403;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907628010;4096;24;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.438473Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerCommand.rld;file;115907;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907630060;4096;232;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.594450Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerCommand.xsd;file;14520;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907627890;4096;32;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.375987Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerDscResource.xsd;file;2897;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907628820;4096;8;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.813385Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManaged.xsd;file;10238;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628300;4096;24;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.579065Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedClass.xsd;file;3693;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628330;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.594687Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedConstructor.xsd;file;2557;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907630670;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.891256Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedDelegate.xsd;file;2558;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628540;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.719669Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedEnumeration.xsd;file;2306;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628680;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.766520Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedEvent.xsd;file;3108;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907630120;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.641315Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedField.xsd;file;2803;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628680;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.766520Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedInterface.xsd;file;2882;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907630360;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.735045Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedMethod.xsd;file;2544;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628700;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.766520Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedNamespace.xsd;file;3359;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907629270;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.000839Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedOperator.xsd;file;1896;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907630140;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.656938Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedOverload.xsd;file;2573;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907629770;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.266414Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedProperty.xsd;file;2843;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907630580;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.860015Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerManagedStructure.xsd;file;2951;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628150;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.500956Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerReference.xsd;file;12604;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628490;4096;32;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.688413Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerStructure.xsd;file;4112;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628940;4096;16;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.860247Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/developerXaml.xsd;file;6746;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907630850;4096;16;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.969363Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/endUser.xsd;file;2183;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907629000;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.891490Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/faq.xsd;file;4080;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907629780;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.266414Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/glossary.xsd;file;2239;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907630690;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.906879Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/hierarchy.xsd;file;10070;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907629360;4096;24;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.032092Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/inline.xsd;file;7644;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628900;4096;16;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.844627Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/inlineCommon.xsd;file;8860;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628640;4096;24;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.750898Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/inlineSoftware.xsd;file;8016;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907629020;4096;16;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.907111Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/inlineUi.xsd;file;6400;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907629970;4096;16;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.547587Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/ITPro.xsd;file;1208;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907629770;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.266414Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/Maml.rld;file;115835;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907630120;4096;232;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.625693Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/Maml.tbr;file;30576;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907630070;4096;64;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.610072Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/Maml.xsd;file;1618;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628350;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.610307Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/Maml.xsx;file;211;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907629980;4096;0;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:39.547587Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/Maml_HTML.xsl;file;728;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628400;4096;8;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.625928Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/Maml_HTML_Style.xsl;file;14421;33206;2019-12-07T09:10:47.414657Z;;;2785144255;2;0;1125899907628080;4096;32;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.469714Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/ManagedDeveloper.xsd;file;14518;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907627840;4096;32;0;0;2019-12-07T09:10:47.414657Z;2020-11-03T12:35:38.344745Z;2019-12-07T09:10:47.414657Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/ManagedDeveloperStructure.xsd;file;3392;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907629730;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.203919Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/ProviderHelp.xsd;file;6769;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907629590;4096;16;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.157055Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/shellExecute.xsd;file;2250;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907627830;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.344745Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/structure.xsd;file;5973;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628610;4096;16;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.735277Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/structureGlossary.xsd;file;4186;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628230;4096;16;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.547822Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/structureList.xsd;file;4173;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907630610;4096;16;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.875636Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/structureProcedure.xsd;file;1994;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907629560;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.141432Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/structureTable.xsd;file;6137;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628310;4096;16;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.594687Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/structureTaskExecution.xsd;file;6794;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628080;4096;16;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.469714Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/task.xsd;file;22391;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628580;4096;48;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.735277Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/Schemas/PSMaml/troubleshooting.xsd;file;3239;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907628270;4096;8;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:38.563443Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/SessionConfig;directory;0;16822;2019-12-07T09:14:52.799154Z;;;2785144255;1;0;2251799814007000;4096;0;0;0;2021-12-16T13:36:01.206709Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.799154Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/types.ps1xml;file;210376;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907629540;4096;416;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:39.125810Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/typesv3.ps1xml;file;12282;33206;2019-12-07T09:10:47.430274Z;;;2785144255;2;0;1125899907630420;4096;24;0;0;2019-12-07T09:10:47.430274Z;2020-11-03T12:35:39.781908Z;2019-12-07T09:10:47.430274Z +C:/Windows/SysWOW64/WindowsPowerShell/v1.0/WSMan.Format.ps1xml;file;16598;33206;2019-12-07T09:10:47.401791Z;;;2785144255;2;0;1125899907628530;4096;40;0;0;2019-12-07T09:10:47.401791Z;2020-11-03T12:35:38.704036Z;2019-12-07T09:10:47.401791Z +C:/Windows/SysWOW64/WinFax.dll;file;25600;33206;2021-04-17T10:36:01.562235Z;;;2785144255;2;0;844424930952501;4096;56;0;0;2021-12-16T13:35:58.636124Z;2021-11-11T11:29:35.534511Z;2021-04-17T10:36:01.558246Z +C:/Windows/SysWOW64/winhttp.dll;file;829960;33206;2021-11-11T11:29:00.531351Z;;;2785144255;2;0;281474977879226;4096;1624;0;0;2021-12-16T13:35:58.636124Z;2021-11-11T11:38:50.419750Z;2021-11-11T11:29:00.507363Z +C:/Windows/SysWOW64/winhttpcom.dll;file;82432;33206;2021-11-11T11:29:08.031561Z;;;2785144255;2;0;281474977879567;4096;168;0;0;2021-12-16T13:35:58.646486Z;2021-11-11T11:38:51.210554Z;2021-11-11T11:29:08.029535Z +C:/Windows/SysWOW64/wininet.dll;file;4516352;33206;2021-11-11T11:29:00.779408Z;;;2785144255;2;0;281474977879236;4096;8824;0;0;2021-12-16T13:35:58.646486Z;2021-11-11T11:38:51.921501Z;2021-11-11T11:29:00.695760Z +C:/Windows/SysWOW64/wininetlui.dll;file;65024;33206;2019-12-07T09:10:00.444993Z;;;2785144255;2;0;1125899907628760;4096;128;0;0;2021-12-16T13:35:58.666195Z;2021-11-11T11:29:34.201157Z;2019-12-07T09:10:00.444993Z +C:/Windows/SysWOW64/wininitext.dll;file;37688;33206;2021-10-03T19:02:17.406552Z;;;2785144255;2;0;1688849861186980;4096;80;0;0;2021-12-16T13:35:58.676495Z;2021-11-11T11:29:33.787167Z;2021-10-03T19:02:17.403390Z +C:/Windows/SysWOW64/winipcfile.dll;file;355328;33206;2019-12-07T09:09:21.302568Z;;;2785144255;2;0;1125899907637280;4096;696;0;0;2021-12-16T13:35:58.696315Z;2021-11-11T11:29:33.779158Z;2019-12-07T09:09:21.302568Z +C:/Windows/SysWOW64/winipcsecproc.dll;file;800256;33206;2019-12-07T09:09:21.302568Z;;;2785144255;2;0;1125899907637810;4096;1568;0;0;2021-12-16T13:35:58.746398Z;2021-11-11T11:29:33.765194Z;2019-12-07T09:09:21.302568Z +C:/Windows/SysWOW64/winipsec.dll;file;69632;33206;2021-05-18T10:59:11.751980Z;;;2785144255;2;0;2814749767993800;4096;136;0;0;2021-12-16T13:35:58.756295Z;2021-11-11T11:29:33.793120Z;2021-05-18T10:59:11.750983Z +C:/Windows/SysWOW64/Winlangdb.dll;file;144384;33206;2020-11-03T12:45:49.213620Z;;;2785144255;2;0;562949954395938;4096;288;0;0;2021-12-16T13:35:58.771064Z;2021-11-11T11:29:33.746245Z;2020-11-03T12:45:49.213620Z +C:/Windows/SysWOW64/WinMetadata;directory;0;16822;2021-10-03T19:51:39.767446Z;;;2785144255;1;0;2251799814007000;4096;8;0;0;2021-12-16T13:36:01.206709Z;2021-10-03T19:51:39.767446Z;2019-12-07T09:14:52.799154Z +C:/Windows/SysWOW64/WinMetadata/Windows.AI.winmd;file;57248;33206;2020-11-03T12:46:09.709002Z;;;2785144255;2;0;562949954402393;4096;112;0;0;2021-10-03T18:55:11.268917Z;2021-11-11T11:29:32.542220Z;2020-11-03T12:46:09.709002Z +C:/Windows/SysWOW64/WinMetadata/Windows.ApplicationModel.winmd;file;828920;33206;2021-10-03T19:03:23.902921Z;;;2785144255;2;0;54606145481883800;4096;1624;0;0;2021-10-03T19:03:23.922235Z;2021-11-11T11:29:32.541223Z;2021-10-03T19:03:23.843960Z +C:/Windows/SysWOW64/WinMetadata/Windows.Data.winmd;file;65528;33206;2021-10-03T19:03:23.936457Z;;;2785144255;2;0;1688849861188070;4096;128;0;0;2021-10-03T19:03:23.940684Z;2021-11-11T11:29:32.541223Z;2021-10-03T19:03:23.927743Z +C:/Windows/SysWOW64/WinMetadata/Windows.Devices.winmd;file;855248;33206;2021-10-03T19:03:23.999319Z;;;2785144255;2;0;1688849861188080;4096;1672;0;0;2021-10-03T19:03:24.016532Z;2021-11-11T11:29:32.541223Z;2021-10-03T19:03:23.946424Z +C:/Windows/SysWOW64/WinMetadata/Windows.Foundation.winmd;file;69632;33206;2021-10-03T19:03:24.028081Z;;;2785144255;2;0;1688849861188080;4096;136;0;0;2021-10-03T19:03:24.033317Z;2021-11-11T11:29:32.542220Z;2021-10-03T19:03:24.021724Z +C:/Windows/SysWOW64/WinMetadata/Windows.Gaming.winmd;file;64472;33206;2021-10-03T19:03:24.045790Z;;;2785144255;2;0;1688849861188080;4096;128;0;0;2021-10-03T19:03:24.050252Z;2021-11-11T11:29:32.541223Z;2021-10-03T19:03:24.038344Z +C:/Windows/SysWOW64/WinMetadata/Windows.Globalization.winmd;file;75840;33206;2021-10-03T19:03:24.061400Z;;;2785144255;2;0;1688849861188080;4096;152;0;0;2021-10-03T19:03:24.066278Z;2021-11-11T11:29:32.540195Z;2021-10-03T19:03:24.053669Z +C:/Windows/SysWOW64/WinMetadata/Windows.Graphics.winmd;file;176040;33206;2021-10-03T19:03:24.085381Z;;;2785144255;2;0;1688849861188080;4096;344;0;0;2021-10-03T19:03:24.086378Z;2021-11-11T11:29:32.542220Z;2021-10-03T19:03:24.071712Z +C:/Windows/SysWOW64/WinMetadata/Windows.Management.winmd;file;46888;33206;2021-10-03T19:03:24.104504Z;;;2785144255;2;0;1688849861188080;4096;96;0;0;2021-10-03T19:03:24.104504Z;2021-11-11T11:29:32.540195Z;2021-10-03T19:03:24.099104Z +C:/Windows/SysWOW64/WinMetadata/Windows.Media.winmd;file;743688;33206;2021-10-03T19:03:24.164155Z;;;2785144255;2;0;1688849861188080;4096;1456;0;0;2021-10-03T19:03:24.181909Z;2021-11-11T11:29:32.542220Z;2021-10-03T19:03:24.115403Z +C:/Windows/SysWOW64/WinMetadata/Windows.Networking.winmd;file;250928;33206;2021-10-03T19:03:24.210321Z;;;2785144255;2;0;1688849861188080;4096;496;0;0;2021-10-03T19:03:24.225066Z;2021-11-11T11:29:32.540195Z;2021-10-03T19:03:24.187854Z +C:/Windows/SysWOW64/WinMetadata/Windows.Perception.winmd;file;46888;33206;2021-10-03T19:03:24.233199Z;;;2785144255;2;0;1688849861188080;4096;96;0;0;2021-10-03T19:03:24.233199Z;2021-11-11T11:29:32.540195Z;2021-10-03T19:03:24.230227Z +C:/Windows/SysWOW64/WinMetadata/Windows.Security.winmd;file;201880;33206;2021-10-03T19:03:24.266232Z;;;2785144255;2;0;1688849861188080;4096;400;0;0;2021-10-03T19:03:24.275995Z;2021-11-11T11:29:32.539352Z;2021-10-03T19:03:24.247809Z +C:/Windows/SysWOW64/WinMetadata/Windows.Services.winmd;file;108872;33206;2021-10-03T19:03:24.284243Z;;;2785144255;2;0;1688849861188090;4096;216;0;0;2021-10-03T19:03:24.296538Z;2021-11-11T11:29:32.541223Z;2021-10-03T19:03:24.281669Z +C:/Windows/SysWOW64/WinMetadata/Windows.Storage.winmd;file;145544;33206;2021-10-03T19:03:24.315536Z;;;2785144255;2;0;1688849861188090;4096;288;0;0;2021-10-03T19:03:24.317568Z;2021-11-11T11:29:32.542220Z;2021-10-03T19:03:24.301813Z +C:/Windows/SysWOW64/WinMetadata/Windows.System.winmd;file;162584;33206;2021-10-03T19:03:24.334459Z;;;2785144255;2;0;1688849861188090;4096;320;0;0;2021-10-03T19:03:24.346382Z;2021-11-11T11:29:32.541223Z;2021-10-03T19:03:24.325690Z +C:/Windows/SysWOW64/WinMetadata/Windows.UI.winmd;file;669312;33206;2021-10-03T19:03:24.401618Z;;;2785144255;2;0;1688849861188090;4096;1312;0;0;2021-10-03T19:03:24.415303Z;2021-11-11T11:29:32.542220Z;2021-10-03T19:03:24.351027Z +C:/Windows/SysWOW64/WinMetadata/Windows.UI.Xaml.winmd;file;1718296;33206;2021-10-03T19:03:24.534175Z;;;2785144255;2;0;1688849861188090;4096;3360;0;0;2021-10-03T19:03:24.567812Z;2021-11-11T11:29:32.541223Z;2021-10-03T19:03:24.420642Z +C:/Windows/SysWOW64/WinMetadata/Windows.Web.winmd;file;144008;33206;2021-10-03T19:03:24.586630Z;;;2785144255;2;0;1688849861188090;4096;288;0;0;2021-10-03T19:03:24.596131Z;2021-11-11T11:29:32.540195Z;2021-10-03T19:03:24.576486Z +C:/Windows/SysWOW64/winml.dll;file;32768;33206;2019-12-07T09:09:20.822517Z;;;2785144255;2;0;1125899907636390;4096;64;0;0;2021-12-16T13:35:58.776142Z;2021-11-11T11:29:33.746245Z;2019-12-07T09:09:20.822517Z +C:/Windows/SysWOW64/winmm.dll;file;149272;33206;2020-11-03T12:45:45.355149Z;;;2785144255;2;0;1125899907815910;4096;296;0;0;2021-12-16T13:35:58.776142Z;2021-11-11T11:29:33.702363Z;2020-11-03T12:45:45.355149Z +C:/Windows/SysWOW64/winmmbase.dll;file;110720;33206;2019-12-07T09:09:11.911069Z;;;2785144255;2;0;1125899907635710;4096;224;0;0;2021-12-16T13:35:58.776142Z;2021-11-11T11:29:33.701365Z;2019-12-07T09:09:11.911069Z +C:/Windows/SysWOW64/winmsipc.dll;file;1648640;33206;2019-12-07T09:09:21.302568Z;;;2785144255;2;0;1125899907637690;4096;3224;0;0;2021-12-16T13:35:58.821232Z;2021-11-11T11:29:33.762202Z;2019-12-07T09:09:21.302568Z +C:/Windows/SysWOW64/WinMsoIrmProtector.dll;file;72192;33206;2021-01-15T09:27:18.333304Z;;;2785144255;2;0;9851624185492080;4096;144;0;0;2021-12-16T13:35:58.836405Z;2021-11-11T11:29:33.776165Z;2021-01-15T09:27:18.317715Z +C:/Windows/SysWOW64/winnlsres.dll;file;19968;33206;2019-12-07T09:09:25.771074Z;;;2785144255;2;0;1125899907637580;4096;40;0;0;2021-12-16T13:35:58.836405Z;2021-11-11T11:29:33.779158Z;2019-12-07T09:09:25.771074Z +C:/Windows/SysWOW64/winnsi.dll;file;28360;33206;2020-11-03T12:45:39.590772Z;;;2785144255;3;0;562949954392078;4096;56;0;0;2021-12-16T13:35:58.836405Z;2021-11-11T11:29:33.777163Z;2020-11-03T12:45:39.590772Z +C:/Windows/SysWOW64/WinOpcIrmProtector.dll;file;67584;33206;2021-01-15T09:27:18.333304Z;;;2785144255;2;0;9288674232070770;4096;136;0;0;2021-12-16T13:35:58.846159Z;2021-11-11T11:29:33.778160Z;2021-01-15T09:27:18.333304Z +C:/Windows/SysWOW64/winrm;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;2251799814007000;4096;0;0;0;2021-12-16T13:36:01.206709Z;2020-11-03T12:41:50.329316Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/winrm/0407;directory;0;16822;2019-12-07T14:51:16.829934Z;;;2785144255;1;0;2251799814007010;4096;0;0;0;2021-12-16T13:36:01.206709Z;2020-11-03T12:35:52.841736Z;2019-12-07T14:51:16.829934Z +C:/Windows/SysWOW64/winrm/0407/winrm.ini;file;110394;33206;2019-12-07T14:51:01.564006Z;;;2785144255;4;0;3377699721273700;4096;216;0;0;2019-12-07T14:51:01.564006Z;2020-11-03T12:35:26.956644Z;2019-12-07T14:51:01.564006Z +C:/Windows/SysWOW64/winrm/0409;directory;0;16822;2020-11-03T12:41:50.329316Z;;;2785144255;1;0;1407374884227290;4096;0;0;0;2021-12-16T13:36:01.206709Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:50.329316Z +C:/Windows/SysWOW64/winrm/0409/winrm.ini;file;102518;33206;2020-11-03T12:41:40.644085Z;;;2785144255;4;0;1125899907691730;4096;208;0;0;2020-11-03T12:41:40.753434Z;2020-11-03T12:41:50.329316Z;2020-11-03T12:41:40.644085Z +C:/Windows/SysWOW64/winrm.cmd;file;33;33206;2019-12-07T09:08:19.721582Z;;;2785144255;4;0;1125899907635260;4096;0;0;0;2021-12-16T13:35:58.846159Z;2021-11-15T13:07:17.563366Z;2019-12-07T09:08:19.721582Z +C:/Windows/SysWOW64/winrm.vbs;file;204074;33206;2019-12-07T09:08:19.721582Z;;;2785144255;4;0;1125899907636650;4096;400;0;0;2021-12-16T13:35:58.846159Z;2021-11-15T13:07:17.563366Z;2019-12-07T09:08:19.721582Z +C:/Windows/SysWOW64/winrnr.dll;file;34304;33206;2020-11-03T12:45:52.744124Z;;;2785144255;2;0;562949954397842;4096;72;0;0;2021-12-16T13:35:58.846159Z;2021-11-11T11:29:33.786186Z;2020-11-03T12:45:52.744124Z +C:/Windows/SysWOW64/winrs.exe;file;43008;33206;2019-12-07T09:09:15.036181Z;;;2785144255;2;0;1125899907629240;4096;88;0;0;2021-12-16T13:35:58.866584Z;2021-11-11T11:29:34.252028Z;2019-12-07T09:09:15.036181Z +C:/Windows/SysWOW64/winrscmd.dll;file;98304;33206;2021-07-07T12:58:44.035357Z;;;2785144255;2;0;281474977790733;4096;192;0;0;2021-12-16T13:35:58.886142Z;2021-11-11T11:29:34.245008Z;2021-07-07T12:58:44.035357Z +C:/Windows/SysWOW64/winrshost.exe;file;24064;33206;2019-12-07T09:09:15.036181Z;;;2785144255;2;0;1125899907629940;4096;48;0;0;2021-12-16T13:35:58.907084Z;2021-11-11T11:29:34.253035Z;2019-12-07T09:09:15.036181Z +C:/Windows/SysWOW64/winrsmgr.dll;file;2048;33206;2019-12-07T09:09:15.036181Z;;;2785144255;2;0;1125899907629970;4096;8;0;0;2021-12-16T13:35:58.907084Z;2021-11-11T11:29:34.241020Z;2019-12-07T09:09:15.036181Z +C:/Windows/SysWOW64/winrssrv.dll;file;10752;33206;2019-12-07T09:09:15.036181Z;;;2785144255;2;0;1125899907630820;4096;24;0;0;2021-12-16T13:35:58.916543Z;2021-11-11T11:29:34.244011Z;2019-12-07T09:09:15.036181Z +C:/Windows/SysWOW64/WinRTNetMUAHostServer.exe;file;16896;33206;2021-01-15T09:27:12.230789Z;;;2785144255;2;0;2533274790986870;4096;40;0;0;2021-12-16T13:35:58.926102Z;2021-11-11T11:29:33.758214Z;2021-01-15T09:27:12.230789Z +C:/Windows/SysWOW64/WinRtTracing.dll;file;124928;33206;2021-01-15T09:27:12.246400Z;;;2785144255;2;0;2533274790986880;4096;248;0;0;2021-12-16T13:35:58.926102Z;2021-11-11T11:29:33.746245Z;2021-01-15T09:27:12.246400Z +C:/Windows/SysWOW64/WinSATAPI.dll;file;303616;33206;2021-11-11T11:29:10.235923Z;;;2785144255;2;0;281474977879592;4096;600;0;0;2021-12-16T13:35:58.951265Z;2021-11-11T11:38:52.237074Z;2021-11-11T11:29:10.230937Z +C:/Windows/SysWOW64/WinSCard.dll;file;182784;33206;2021-03-11T12:12:20.143914Z;;;2785144255;2;0;844424931103431;4096;360;0;0;2021-12-16T13:35:58.961341Z;2021-11-11T11:29:33.808081Z;2021-03-11T12:12:20.143914Z +C:/Windows/SysWOW64/winshfhc.dll;file;15360;33206;2020-12-09T00:08:26.996857Z;;;2785144255;2;0;562949953795047;4096;32;0;0;2021-12-16T13:35:58.966396Z;2021-11-11T11:29:33.700367Z;2020-12-09T00:08:26.996857Z +C:/Windows/SysWOW64/winsku.dll;file;265216;33206;2021-10-03T19:02:15.786607Z;;;2785144255;2;0;1688849861186950;4096;520;0;0;2021-12-16T13:35:58.986182Z;2021-11-11T11:29:33.775168Z;2021-10-03T19:02:15.768371Z +C:/Windows/SysWOW64/winsockhc.dll;file;72704;33206;2021-01-15T09:27:12.277627Z;;;2785144255;2;0;2533274790986880;4096;144;0;0;2021-12-16T13:35:58.996286Z;2021-11-11T11:29:33.730288Z;2021-01-15T09:27:12.277627Z +C:/Windows/SysWOW64/winspool.drv;file;449024;33206;2021-10-16T00:21:15.547363Z;;;2785144255;2;0;281474977857317;4096;880;0;0;2021-12-16T13:36:00.886468Z;2021-11-11T11:29:33.706351Z;2021-10-16T00:21:15.531744Z +C:/Windows/SysWOW64/winsqlite3.dll;file;676256;33206;2019-12-07T09:09:26.005823Z;;;2785144255;2;0;1125899907638420;4096;1328;0;0;2021-12-16T13:35:59.016242Z;2021-11-11T11:29:33.767189Z;2019-12-07T09:09:26.005823Z +C:/Windows/SysWOW64/WINSRPC.DLL;file;17920;33206;2019-12-07T09:09:30.521078Z;;;2785144255;2;0;1125899907636530;4096;40;0;0;2021-12-16T13:35:59.026182Z;2021-11-11T11:29:33.800102Z;2019-12-07T09:09:30.521078Z +C:/Windows/SysWOW64/winsta.dll;file;270640;33206;2020-11-03T12:45:46.386127Z;;;2785144255;2;0;3940649674923060;4096;536;0;0;2021-12-16T13:35:59.026182Z;2021-11-11T11:29:33.724303Z;2020-11-03T12:45:46.386127Z +C:/Windows/SysWOW64/WinSync.dll;file;686592;33206;2019-12-07T09:09:18.083266Z;;;2785144255;2;0;1125899907628890;4096;1344;0;0;2021-12-16T13:35:59.046157Z;2021-11-11T11:29:34.213094Z;2019-12-07T09:09:18.083266Z +C:/Windows/SysWOW64/WinSyncMetastore.dll;file;186880;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907629640;4096;368;0;0;2021-12-16T13:35:59.061751Z;2021-11-11T11:29:34.206112Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/WinSyncProviders.dll;file;110592;33206;2019-12-07T09:09:57.912704Z;;;2785144255;2;0;1125899907628220;4096;216;0;0;2021-12-16T13:35:59.076350Z;2021-11-11T11:29:34.201157Z;2019-12-07T09:09:57.912704Z +C:/Windows/SysWOW64/wintrust.dll;file;289200;33206;2021-10-16T00:21:16.617148Z;;;2785144255;2;0;281474977857348;4096;568;0;0;2021-12-16T13:35:59.076350Z;2021-11-11T11:29:33.795115Z;2021-10-16T00:21:16.605021Z +C:/Windows/SysWOW64/WinTypes.dll;file;896088;33206;2021-11-11T11:29:00.409569Z;;;2785144255;2;0;281474977879219;4096;1752;0;0;2021-12-16T13:35:59.076350Z;2021-11-11T11:38:52.409158Z;2021-11-11T11:29:00.386591Z +C:/Windows/SysWOW64/winusb.dll;file;22528;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907636380;4096;48;0;0;2021-12-16T13:35:59.076350Z;2021-11-11T11:29:33.750234Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/winver.exe;file;57344;33206;2019-12-07T09:09:13.647489Z;;;2785144255;2;0;1125899907628020;4096;112;0;0;2021-12-16T13:35:59.091099Z;2021-11-11T11:29:34.248Z;2019-12-07T09:09:13.647489Z +C:/Windows/SysWOW64/wisp.dll;file;225280;33206;2021-01-15T09:27:10.010062Z;;;2785144255;2;0;20266198323754200;4096;440;0;0;2021-12-16T13:35:59.106224Z;2021-11-11T11:29:33.714330Z;2021-01-15T09:27:10.010062Z +C:/Windows/SysWOW64/wkscli.dll;file;58856;33206;2020-11-03T12:45:51.978692Z;;;2785144255;2;0;562949954397222;4096;120;0;0;2021-12-16T13:35:59.107261Z;2021-11-11T11:29:33.768187Z;2020-11-03T12:45:51.978692Z +C:/Windows/SysWOW64/wkspbrokerAx.dll;file;105472;33206;2021-01-15T09:27:38.754493Z;;;2785144255;2;0;16325548649840700;4096;208;0;0;2021-12-16T13:35:59.116521Z;2021-11-11T11:29:34.248Z;2021-01-15T09:27:38.754493Z +C:/Windows/SysWOW64/wksprtPS.dll;file;17920;33206;2019-12-07T09:09:13.707215Z;;;2785144255;2;0;1125899907635840;4096;40;0;0;2021-12-16T13:35:59.131320Z;2021-11-11T11:29:33.730288Z;2019-12-07T09:09:13.707215Z +C:/Windows/SysWOW64/wlanapi.dll;file;366672;33206;2021-10-03T19:02:00.614372Z;;;2785144255;2;0;1688849861186620;4096;720;0;0;2021-12-16T13:35:59.131320Z;2021-11-11T11:29:33.709343Z;2021-10-03T19:02:00.594544Z +C:/Windows/SysWOW64/wlancfg.dll;file;249344;33206;2021-10-03T19:02:00.683034Z;;;2785144255;2;0;1688849861186620;4096;488;0;0;2021-12-16T13:35:59.146475Z;2021-11-11T11:29:33.704357Z;2021-10-03T19:02:00.665442Z +C:/Windows/SysWOW64/WLanConn.dll;file;446464;33206;2021-01-15T09:27:21.365976Z;;;2785144255;2;0;7599824371807410;4096;872;0;0;2021-12-16T13:35:59.156567Z;2021-11-11T11:29:33.802096Z;2021-01-15T09:27:21.365976Z +C:/Windows/SysWOW64/wlandlg.dll;file;183808;33206;2021-01-15T09:27:09.791114Z;;;2785144255;2;0;3096224744401470;4096;360;0;0;2021-12-16T13:35:59.176161Z;2021-11-11T11:29:33.701365Z;2021-01-15T09:27:09.791114Z +C:/Windows/SysWOW64/wlanext.exe;file;78336;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907638530;4096;160;0;0;2021-12-16T13:35:59.186214Z;2021-11-11T11:29:33.711338Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/wlangpui.dll;file;295936;33206;2021-01-15T09:27:09.775468Z;;;2785144255;2;0;7318349395061100;4096;584;0;0;2021-12-16T13:35:59.201169Z;2021-11-11T11:29:33.707349Z;2021-01-15T09:27:09.759848Z +C:/Windows/SysWOW64/wlanhlp.dll;file;16384;33206;2021-10-03T19:02:00.635051Z;;;2785144255;2;0;1688849861186620;4096;32;0;0;2021-12-16T13:35:59.201169Z;2021-11-11T11:29:33.707349Z;2021-10-03T19:02:00.634279Z +C:/Windows/SysWOW64/WlanMM.dll;file;299520;33206;2021-01-15T09:27:38.035914Z;;;2785144255;2;0;7599824371810300;4096;592;0;0;2021-12-16T13:35:59.216461Z;2021-11-11T11:29:34.227087Z;2021-01-15T09:27:38.020292Z +C:/Windows/SysWOW64/wlanpref.dll;file;705536;33206;2021-01-15T09:27:09.791114Z;;;2785144255;2;0;3096224744401630;4096;1384;0;0;2021-12-16T13:35:59.241251Z;2021-11-11T11:29:33.699370Z;2021-01-15T09:27:09.791114Z +C:/Windows/SysWOW64/wlanui.dll;file;364544;33206;2021-10-03T19:02:00.741158Z;;;2785144255;2;0;1688849861186630;4096;712;0;0;2021-12-16T13:35:59.266174Z;2021-11-11T11:29:33.702363Z;2021-10-03T19:02:00.724095Z +C:/Windows/SysWOW64/wlanutil.dll;file;3072;33206;2019-12-07T09:09:13.567452Z;;;2785144255;2;0;1125899907637990;4096;8;0;0;2021-12-16T13:35:59.266174Z;2021-11-11T11:29:33.708346Z;2019-12-07T09:09:13.567452Z +C:/Windows/SysWOW64/Wldap32.dll;file;334848;33206;2020-11-03T12:45:51.900570Z;;;2785144255;2;0;562949954397201;4096;656;0;0;2021-12-16T13:35:59.266174Z;2021-11-11T11:29:33.759211Z;2020-11-03T12:45:51.900570Z +C:/Windows/SysWOW64/wldp.dll;file;146648;33206;2021-11-11T11:29:00.280188Z;;;2785144255;2;0;281474977879216;4096;288;0;0;2021-12-16T13:35:59.266174Z;2021-11-11T11:38:51.137759Z;2021-11-11T11:29:00.276167Z +C:/Windows/SysWOW64/wlgpclnt.dll;file;98304;33206;2020-11-03T12:45:45.651953Z;;;2785144255;2;0;1125899907815950;4096;192;0;0;2021-12-16T13:35:59.276128Z;2021-11-11T11:29:33.702363Z;2020-11-03T12:45:45.651953Z +C:/Windows/SysWOW64/wlidcli.dll;file;500224;33206;2021-01-15T09:27:21.147158Z;;;2785144255;2;0;8725724278650010;4096;984;0;0;2021-12-16T13:35:59.301502Z;2021-11-11T11:29:30.989462Z;2021-01-15T09:27:21.131537Z +C:/Windows/SysWOW64/wlidcredprov.dll;file;227328;33206;2021-01-15T09:27:21.162779Z;;;2785144255;2;0;4785074604700830;4096;448;0;0;2021-12-16T13:35:59.316217Z;2021-11-11T11:29:31.004427Z;2021-01-15T09:27:21.147158Z +C:/Windows/SysWOW64/wlidfdp.dll;file;65536;33206;2021-01-15T09:27:21.162779Z;;;2785144255;2;0;7318349395096730;4096;128;0;0;2021-12-16T13:35:59.326258Z;2021-11-11T11:29:30.947615Z;2021-01-15T09:27:21.162779Z +C:/Windows/SysWOW64/wlidnsp.dll;file;41984;33206;2020-11-03T12:45:53.259628Z;;;2785144255;2;0;562949954397890;4096;88;0;0;2021-12-16T13:35:59.346217Z;2021-11-11T11:29:30.954428Z;2020-11-03T12:45:53.259628Z +C:/Windows/SysWOW64/wlidprov.dll;file;525824;33206;2021-01-15T09:27:12.964965Z;;;2785144255;2;0;2533274790986930;4096;1032;0;0;2021-12-16T13:35:59.361524Z;2021-11-11T11:29:33.742257Z;2021-01-15T09:27:12.964965Z +C:/Windows/SysWOW64/wlidres.dll;file;30208;33206;2019-12-07T09:09:16.989439Z;;;2785144255;2;0;1125899907634740;4096;64;0;0;2021-12-16T13:35:59.366077Z;2021-11-11T11:29:33.742257Z;2019-12-07T09:09:16.989439Z +C:/Windows/SysWOW64/WMADMOD.DLL;file;665272;33206;2021-10-16T00:21:34.619586Z;;;2785144255;2;0;281474977858068;4096;1304;0;0;2021-12-16T13:35:59.381139Z;2021-11-11T11:29:34.304849Z;2021-10-16T00:21:34.609404Z +C:/Windows/SysWOW64/WMADMOE.DLL;file;680664;33206;2020-11-03T12:46:09.037284Z;;;2785144255;2;0;562949954402340;4096;1336;0;0;2021-12-16T13:35:59.396229Z;2021-11-11T11:29:32.499713Z;2020-11-03T12:46:09.037284Z +C:/Windows/SysWOW64/WMASF.DLL;file;247344;33206;2019-12-07T14:54:46.066237Z;;;2785144255;2;0;1125899907618440;4096;488;0;0;2021-12-16T13:35:59.396229Z;2021-11-11T11:29:32.503702Z;2019-12-07T09:10:14.695171Z +C:/Windows/SysWOW64/wmcodecdspps.dll;file;10752;33206;2019-12-07T14:54:41.969306Z;;;2785144255;2;0;1125899907618630;4096;24;0;0;2021-12-16T13:35:59.407593Z;2021-11-11T11:29:32.482835Z;2019-12-07T09:10:11.990066Z +C:/Windows/SysWOW64/wmdmlog.dll;file;32256;33206;2021-01-15T09:27:48.536920Z;;;2785144255;2;0;12947848929314100;4096;64;0;0;2021-12-16T13:35:59.416150Z;2021-11-11T11:29:32.505697Z;2021-01-15T09:27:48.536920Z +C:/Windows/SysWOW64/wmdmps.dll;file;37376;33206;2019-12-07T14:54:43.891244Z;;;2785144255;2;0;1125899907618420;4096;80;0;0;2021-12-16T13:35:59.431508Z;2021-11-11T11:29:32.504700Z;2019-12-07T09:10:14.710340Z +C:/Windows/SysWOW64/wmdrmsdk.dll;file;5632;33206;2019-12-07T09:10:04.140075Z;;;2785144255;2;0;1125899907630010;4096;16;0;0;2021-12-16T13:35:59.436052Z;2021-11-11T11:29:34.243013Z;2019-12-07T09:10:04.140075Z +C:/Windows/SysWOW64/wmerror.dll;file;2560;33206;2019-12-06T19:49:00Z;;;2785144255;2;0;1125899907619620;4096;8;0;0;2021-12-16T13:35:59.436052Z;2021-11-11T11:29:35.575400Z;2019-12-07T14:52:21.126178Z +C:/Windows/SysWOW64/wmi.dll;file;5120;33206;2019-12-07T09:08:49.363293Z;;;2785144255;2;0;4503599627808940;4096;16;0;0;2021-12-16T13:35:59.446540Z;2021-11-11T11:29:33.776165Z;2019-12-07T09:08:49.363293Z +C:/Windows/SysWOW64/wmiclnt.dll;file;40448;33206;2020-11-03T12:45:45.214527Z;;;2785144255;2;0;1125899907815890;4096;80;0;0;2021-12-16T13:35:59.446540Z;2021-11-11T11:29:33.709343Z;2020-11-03T12:45:45.214527Z +C:/Windows/SysWOW64/wmidcom.dll;file;136704;33206;2020-11-03T12:45:46.667315Z;;;2785144255;2;0;3377699721501790;4096;272;0;0;2021-12-16T13:35:59.456109Z;2021-11-11T11:29:33.721311Z;2020-11-03T12:45:46.667315Z +C:/Windows/SysWOW64/wmidx.dll;file;146944;33206;2021-01-15T09:27:48.490056Z;;;2785144255;2;0;12947848929314100;4096;288;0;0;2021-12-16T13:35:59.471462Z;2021-11-11T11:29:32.503702Z;2021-01-15T09:27:48.490056Z +C:/Windows/SysWOW64/wmiprop.dll;file;24576;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907630290;4096;48;0;0;2021-12-16T13:35:59.476506Z;2021-11-11T11:29:34.244011Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/wmitomi.dll;file;153600;33206;2019-12-07T09:09:15.067349Z;;;2785144255;2;0;1125899907639120;4096;304;0;0;2021-12-16T13:35:59.496114Z;2021-11-11T11:29:33.717322Z;2019-12-07T09:09:15.067349Z +C:/Windows/SysWOW64/WMNetMgr.dll;file;1111552;33206;2021-01-15T09:27:48.521299Z;;;2785144255;2;0;21673573207344400;4096;2176;0;0;2021-12-16T13:35:59.526069Z;2021-11-11T11:29:32.502705Z;2021-01-15T09:27:48.505677Z +C:/Windows/SysWOW64/wmp.dll;file;9501184;33206;2021-10-16T00:21:37.869389Z;;;2785144255;2;0;281474977858419;4096;18560;0;0;2021-12-16T13:35:59.646361Z;2021-11-11T11:29:35.572408Z;2021-10-16T00:21:37.617660Z +C:/Windows/SysWOW64/wmpdxm.dll;file;167424;33206;2021-10-16T00:21:38.000495Z;;;2785144255;2;0;281474977858430;4096;328;0;0;2021-12-16T13:35:59.666486Z;2021-11-11T11:29:35.573406Z;2021-10-16T00:21:37.998480Z +C:/Windows/SysWOW64/wmpeffects.dll;file;242736;33206;2021-10-16T00:21:38.008545Z;;;2785144255;2;0;281474977858431;4096;480;0;0;2021-12-16T13:35:59.686039Z;2021-11-11T11:29:35.574404Z;2021-10-16T00:21:38.000495Z +C:/Windows/SysWOW64/WMPhoto.dll;file;328704;33206;2021-03-11T12:12:19.341848Z;;;2785144255;2;0;844424931103390;4096;648;0;0;2021-12-16T13:35:59.696467Z;2021-11-11T11:29:33.797110Z;2021-03-11T12:12:19.341848Z +C:/Windows/SysWOW64/wmploc.DLL;file;2560;33206;2021-10-16T00:21:37.940006Z;;;2785144255;2;0;281474977858423;4096;8;0;0;2021-12-16T13:35:59.707538Z;2021-11-11T11:29:35.571412Z;2021-10-16T00:21:37.940006Z +C:/Windows/SysWOW64/wmpps.dll;file;153880;33206;2019-12-06T20:00:00Z;;;2785144255;2;0;1125899907619470;4096;304;0;0;2021-12-16T13:35:59.716093Z;2021-11-11T11:29:35.575400Z;2019-12-07T14:52:21.142233Z +C:/Windows/SysWOW64/wmpshell.dll;file;96768;33206;2021-10-16T00:21:38.018592Z;;;2785144255;2;0;281474977858432;4096;192;0;0;2021-12-16T13:35:59.736534Z;2021-11-11T11:29:35.574404Z;2021-10-16T00:21:38.008545Z +C:/Windows/SysWOW64/wmsgapi.dll;file;15360;33206;2020-11-03T12:45:51.978692Z;;;2785144255;2;0;562949954397221;4096;32;0;0;2021-12-16T13:35:59.751146Z;2021-11-11T11:29:33.767189Z;2020-11-03T12:45:51.978692Z +C:/Windows/SysWOW64/WMSPDMOD.DLL;file;866816;33206;2019-12-07T09:09:13.597569Z;;;2785144255;2;0;1125899907635290;4096;1696;0;0;2021-12-16T13:35:59.766119Z;2021-11-11T11:29:33.729290Z;2019-12-07T09:09:13.597569Z +C:/Windows/SysWOW64/WMSPDMOE.DLL;file;1048064;33206;2020-11-03T12:46:08.943557Z;;;2785144255;2;0;562949954402332;4096;2048;0;0;2021-12-16T13:35:59.776073Z;2021-11-11T11:29:32.483865Z;2020-11-03T12:46:08.943557Z +C:/Windows/SysWOW64/WMVCORE.DLL;file;2137248;33206;2021-10-03T19:03:21.603005Z;;;2785144255;2;0;1688849861188050;4096;4176;0;0;2021-12-16T13:35:59.786322Z;2021-11-11T11:29:32.503702Z;2021-10-03T19:03:21.501252Z +C:/Windows/SysWOW64/WMVDECOD.DLL;file;2254544;33206;2021-07-16T09:18:12.290429Z;;;2785144255;2;0;281474977817304;4096;4408;0;0;2021-12-16T13:35:59.806375Z;2021-11-11T11:29:34.304849Z;2021-07-16T09:18:12.259202Z +C:/Windows/SysWOW64/wmvdspa.dll;file;178176;33206;2021-01-15T09:27:48.349463Z;;;2785144255;2;0;14636698789578000;4096;352;0;0;2021-12-16T13:35:59.816514Z;2021-11-11T11:29:32.482835Z;2021-01-15T09:27:48.349463Z +C:/Windows/SysWOW64/WMVENCOD.DLL;file;2074960;33206;2019-12-07T14:54:35.391268Z;;;2785144255;2;0;1125899907618690;4096;4056;0;0;2021-12-16T13:35:59.836173Z;2021-11-11T11:29:32.481837Z;2019-12-07T09:10:13.811150Z +C:/Windows/SysWOW64/WMVSDECD.DLL;file;268248;33206;2019-12-07T14:54:45.935697Z;;;2785144255;2;0;1125899907618490;4096;528;0;0;2021-12-16T13:35:59.851139Z;2021-11-11T11:29:32.499713Z;2019-12-07T09:10:14.288474Z +C:/Windows/SysWOW64/WMVSENCD.DLL;file;384000;33206;2019-12-07T14:54:42.047239Z;;;2785144255;2;0;1125899907618380;4096;752;0;0;2021-12-16T13:35:59.866185Z;2021-11-11T11:29:32.482835Z;2019-12-07T09:10:13.835255Z +C:/Windows/SysWOW64/WMVXENCD.DLL;file;680960;33206;2021-03-11T12:12:36.360319Z;;;2785144255;2;0;844424931105594;4096;1336;0;0;2021-12-16T13:35:59.881053Z;2021-11-11T11:29:32.483865Z;2021-03-11T12:12:36.360319Z +C:/Windows/SysWOW64/WofUtil.dll;file;29184;33206;2019-12-07T09:09:22.177248Z;;;2785144255;2;0;5910974511362310;4096;64;0;0;2021-12-16T13:35:59.891104Z;2021-11-11T11:29:33.774171Z;2019-12-07T09:09:22.177248Z +C:/Windows/SysWOW64/WordBreakers.dll;file;33792;33206;2021-11-11T11:28:59.281489Z;;;2785144255;2;0;281474977879186;4096;72;0;0;2021-12-16T13:35:59.906171Z;2021-11-11T11:38:52.771730Z;2021-11-11T11:28:59.279522Z +C:/Windows/SysWOW64/WorkFoldersRes.dll;file;61952;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907630720;4096;128;0;0;2021-12-16T13:35:59.916347Z;2021-11-11T11:29:31.726682Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/wow32.dll;file;6144;33206;2021-06-10T14:01:41.460622Z;;;2785144255;2;0;281474977765209;4096;16;0;0;2021-12-16T13:35:59.926170Z;2021-11-11T11:29:33.794117Z;2021-06-10T14:01:41.445002Z +C:/Windows/SysWOW64/wowreg32.exe;file;15360;33206;2021-10-03T19:02:19.734473Z;;;2785144255;2;0;1970324837897560;4096;32;0;0;2021-12-16T13:35:59.936384Z;2021-11-11T11:29:33.814066Z;2021-10-03T19:02:19.730400Z +C:/Windows/SysWOW64/wpbcreds.dll;file;83456;33206;2019-12-07T09:09:26.161644Z;;;2785144255;2;0;1125899907636970;4096;168;0;0;2021-12-16T13:35:59.951112Z;2021-11-11T11:29:33.784180Z;2019-12-07T09:09:26.161644Z +C:/Windows/SysWOW64/Wpc.dll;file;1372672;33206;2021-05-18T10:59:06.867804Z;;;2785144255;2;0;2251799814572410;4096;2688;0;0;2021-12-16T13:35:59.956138Z;2021-11-11T11:29:33.712335Z;2021-05-18T10:59:06.808123Z +C:/Windows/SysWOW64/WpcWebFilter.dll;file;622592;33206;2021-05-18T10:59:06.782956Z;;;2785144255;2;0;2251799814572410;4096;1216;0;0;2021-12-16T13:35:59.966556Z;2021-11-11T11:29:33.709343Z;2021-05-18T10:59:06.766222Z +C:/Windows/SysWOW64/wpdshext.dll;file;548352;33206;2021-10-16T00:21:34.676465Z;;;2785144255;2;0;281474977858071;4096;1072;0;0;2021-12-16T13:35:59.966556Z;2021-11-11T11:29:32.513676Z;2021-10-16T00:21:34.660872Z +C:/Windows/SysWOW64/WPDShextAutoplay.exe;file;25600;33206;2019-12-07T14:54:46.313186Z;;;2785144255;2;0;1125899907618450;4096;56;0;0;2021-12-16T13:35:59.996090Z;2021-11-15T13:07:18.049433Z;2019-12-07T09:10:14.741601Z +C:/Windows/SysWOW64/WPDShServiceObj.dll;file;55296;33206;2021-01-15T09:27:48.630647Z;;;2785144255;2;0;17732923533395200;4096;112;0;0;2021-12-16T13:36:00.008132Z;2021-11-15T13:07:18.049433Z;2021-01-15T09:27:48.630647Z +C:/Windows/SysWOW64/WPDSp.dll;file;326656;33206;2021-01-15T09:27:48.646269Z;;;2785144255;2;0;13229323906024700;4096;640;0;0;2021-12-16T13:36:00.016245Z;2021-11-11T11:29:32.515671Z;2021-01-15T09:27:48.630647Z +C:/Windows/SysWOW64/wpnapps.dll;file;1041920;33206;2021-10-03T19:02:13.192131Z;;;2785144255;2;0;1688849861186920;4096;2040;0;0;2021-12-16T13:36:00.036196Z;2021-11-11T11:29:33.751232Z;2021-10-03T19:02:13.111619Z +C:/Windows/SysWOW64/wpnclient.dll;file;304128;33206;2021-01-15T09:27:16.280616Z;;;2785144255;2;0;12666373952598200;4096;600;0;0;2021-12-16T13:36:00.056465Z;2021-11-11T11:29:33.749237Z;2021-01-15T09:27:16.280616Z +C:/Windows/SysWOW64/WpPortingLibrary.dll;file;11776;33206;2019-12-07T09:09:15.176871Z;;;2785144255;2;0;1125899907637440;4096;24;0;0;2021-12-16T13:36:00.066117Z;2021-11-11T11:29:33.734277Z;2019-12-07T09:09:15.176871Z +C:/Windows/SysWOW64/write.exe;file;10240;33206;2019-12-06T19:46:00Z;;;2785144255;2;0;21110623253981000;4096;24;0;0;2021-12-16T13:36:00.076425Z;2020-11-03T12:35:25.128947Z;2019-12-07T14:53:58.078594Z +C:/Windows/SysWOW64/ws2help.dll;file;4096;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907635030;4096;8;0;0;2021-12-16T13:36:00.076425Z;2021-11-11T11:29:33.718319Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/ws2_32.dll;file;397728;33206;2020-11-03T12:45:45.480119Z;;;2785144255;2;0;1125899907815930;4096;784;0;0;2021-12-16T13:36:00.076425Z;2021-11-11T11:29:33.710341Z;2020-11-03T12:45:45.464502Z +C:/Windows/SysWOW64/wscadminui.exe;file;8192;33206;2021-07-07T12:58:43.750072Z;;;2785144255;2;0;281474977790719;4096;16;0;0;2021-12-16T13:36:00.086354Z;2021-11-11T11:29:33.705354Z;2021-07-07T12:58:43.750072Z +C:/Windows/SysWOW64/wscapi.dll;file;250976;33206;2021-07-07T12:58:43.750072Z;;;2785144255;2;0;281474977790716;4096;496;0;0;2021-12-16T13:36:00.106167Z;2021-11-11T11:29:33.708346Z;2021-07-07T12:58:43.734454Z +C:/Windows/SysWOW64/wscinterop.dll;file;162304;33206;2021-07-07T12:58:52.767434Z;;;2785144255;2;0;281474977791123;4096;320;0;0;2021-12-16T13:36:00.116343Z;2021-11-11T11:29:31.747355Z;2021-07-07T12:58:52.767434Z +C:/Windows/SysWOW64/wscisvif.dll;file;22016;33206;2021-07-07T12:58:43.750072Z;;;2785144255;2;0;281474977790717;4096;48;0;0;2021-12-16T13:36:00.126301Z;2021-11-11T11:29:33.706351Z;2021-07-07T12:58:43.750072Z +C:/Windows/SysWOW64/WSClient.dll;file;11776;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907638870;4096;24;0;0;2021-12-16T13:36:00.126301Z;2021-11-11T11:29:33.729290Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/wscproxystub.dll;file;12800;33206;2021-07-07T12:58:43.750072Z;;;2785144255;2;0;281474977790718;4096;32;0;0;2021-12-16T13:36:00.141037Z;2021-11-11T11:29:33.710341Z;2021-07-07T12:58:43.750072Z +C:/Windows/SysWOW64/wscript.exe;file;147456;33206;2021-10-03T19:02:20.205741Z;;;2785144255;2;0;1688849861187020;4096;288;0;0;2021-12-16T13:36:00.186324Z;2021-11-11T11:29:33.809077Z;2021-10-03T19:02:20.199487Z +C:/Windows/SysWOW64/wscui.cpl;file;67584;33206;2021-07-07T12:58:52.767434Z;;;2785144255;2;0;281474977791122;4096;136;0;0;2021-12-16T13:36:00.201326Z;2021-11-11T11:29:31.745360Z;2021-07-07T12:58:52.767434Z +C:/Windows/SysWOW64/WSDApi.dll;file;562688;33206;2021-01-15T09:27:18.317715Z;;;2785144255;2;0;4785074604700270;4096;1104;0;0;2021-12-16T13:36:00.216471Z;2021-11-11T11:29:34.204118Z;2021-01-15T09:27:18.302060Z +C:/Windows/SysWOW64/wsdchngr.dll;file;43520;33206;2019-12-07T09:10:04.069297Z;;;2785144255;2;0;1125899907629430;4096;88;0;0;2021-12-16T13:36:00.226274Z;2021-11-11T11:29:34.238065Z;2019-12-07T09:10:04.069297Z +C:/Windows/SysWOW64/wsecedit.dll;file;526848;33206;2021-01-15T09:27:34.412705Z;;;2785144255;2;0;11821949022469600;4096;1032;0;0;2021-12-16T13:36:00.246094Z;2021-11-11T11:29:34.213094Z;2021-01-15T09:27:34.397050Z +C:/Windows/SysWOW64/wshbth.dll;file;50688;33206;2020-11-03T12:45:50.838320Z;;;2785144255;2;0;562949954396538;4096;104;0;0;2021-12-16T13:36:00.246094Z;2021-11-11T11:29:33.772176Z;2020-11-03T12:45:50.838320Z +C:/Windows/SysWOW64/wshcon.dll;file;21504;33206;2021-10-03T19:02:23.286792Z;;;2785144255;2;0;1688849861187280;4096;48;0;0;2021-12-16T13:36:00.256118Z;2021-11-11T11:29:33.811072Z;2021-10-03T19:02:23.284128Z +C:/Windows/SysWOW64/wshelper.dll;file;16384;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907636910;4096;32;0;0;2021-12-16T13:36:00.266264Z;2021-11-11T11:29:33.717322Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/wshext.dll;file;80896;33206;2019-12-07T09:09:32.380631Z;;;2785144255;2;0;1125899907635690;4096;160;0;0;2021-12-16T13:36:00.266264Z;2021-11-11T11:29:33.806085Z;2019-12-07T09:09:32.380631Z +C:/Windows/SysWOW64/wshhyperv.dll;file;17216;33206;2019-12-07T09:10:05.537917Z;;;2785144255;2;0;1125899907629570;4096;40;0;0;2021-12-16T13:36:00.276123Z;2021-11-11T11:29:31.725684Z;2019-12-07T09:10:05.537917Z +C:/Windows/SysWOW64/wship6.dll;file;11264;33206;2020-11-03T12:45:51.775603Z;;;2785144255;2;0;562949954397182;4096;24;0;0;2021-12-16T13:36:00.286115Z;2021-11-11T11:29:33.764197Z;2020-11-03T12:45:51.775603Z +C:/Windows/SysWOW64/wshom.ocx;file;122880;33206;2021-10-03T19:02:23.297900Z;;;2785144255;2;0;1688849861187280;4096;240;0;0;2021-12-16T13:36:00.308704Z;2021-11-11T11:29:33.807083Z;2021-10-03T19:02:23.292726Z +C:/Windows/SysWOW64/wshqos.dll;file;15872;33206;2020-11-03T12:45:49.541675Z;;;2785144255;2;0;15762598696771400;4096;32;0;0;2021-12-16T13:36:00.308704Z;2021-11-11T11:29:33.801130Z;2020-11-03T12:45:49.541675Z +C:/Windows/SysWOW64/wshrm.dll;file;14848;33206;2019-12-07T09:10:00.678451Z;;;2785144255;2;0;1125899907629000;4096;32;0;0;2021-12-16T13:36:00.321295Z;2021-11-11T11:29:34.219114Z;2019-12-07T09:10:00.678451Z +C:/Windows/SysWOW64/WSHTCPIP.DLL;file;10752;33206;2020-11-03T12:45:51.775603Z;;;2785144255;2;0;562949954397181;4096;24;0;0;2021-12-16T13:36:00.326352Z;2021-11-11T11:29:33.768187Z;2020-11-03T12:45:51.775603Z +C:/Windows/SysWOW64/wshunix.dll;file;16496;33206;2019-12-07T09:09:30.850397Z;;;2785144255;2;0;1125899907636940;4096;40;0;0;2021-12-16T13:36:00.336202Z;2021-11-11T11:29:33.801130Z;2019-12-07T09:09:30.850397Z +C:/Windows/SysWOW64/WsmAgent.dll;file;26112;33206;2021-10-03T19:02:02.066528Z;;;2785144255;2;0;1688849861186640;4096;56;0;0;2021-12-16T13:36:00.351103Z;2021-11-11T11:29:33.717322Z;2021-10-03T19:02:02.065487Z +C:/Windows/SysWOW64/wsmanconfig_schema.xml;file;4675;33206;2019-12-07T09:08:19.721582Z;;;2785144255;4;0;1688849861056940;4096;16;0;0;2021-12-16T13:36:00.351103Z;2021-11-15T13:07:17.563366Z;2019-12-07T09:08:19.721582Z +C:/Windows/SysWOW64/WSManHTTPConfig.exe;file;35840;33206;2021-10-03T19:02:02.097570Z;;;2785144255;2;0;1688849861186640;4096;72;0;0;2021-12-16T13:36:00.376588Z;2021-11-11T11:29:33.727295Z;2021-10-03T19:02:02.095377Z +C:/Windows/SysWOW64/WSManMigrationPlugin.dll;file;66560;33206;2021-10-03T19:02:02.116160Z;;;2785144255;2;0;1688849861186640;4096;136;0;0;2021-12-16T13:36:00.386466Z;2021-11-11T11:29:33.726298Z;2021-10-03T19:02:02.110236Z +C:/Windows/SysWOW64/WsmAuto.dll;file;144896;33206;2021-10-03T19:02:01.794597Z;;;2785144255;2;0;1688849861186640;4096;288;0;0;2021-12-16T13:36:00.401466Z;2021-11-11T11:29:33.722309Z;2021-10-03T19:02:01.788305Z +C:/Windows/SysWOW64/wsmplpxy.dll;file;11776;33206;2021-10-03T19:02:02.127980Z;;;2785144255;2;0;1688849861186640;4096;24;0;0;2021-12-16T13:36:00.416134Z;2021-11-11T11:29:33.727295Z;2021-10-03T19:02:02.126975Z +C:/Windows/SysWOW64/wsmprovhost.exe;file;37376;33206;2021-10-03T19:02:02.144490Z;;;2785144255;2;0;1688849861186650;4096;80;0;0;2021-12-16T13:36:00.436284Z;2021-11-11T11:29:33.716325Z;2021-10-03T19:02:02.141852Z +C:/Windows/SysWOW64/WsmPty.xsl;file;1559;33206;2019-12-07T09:08:19.705959Z;;;2785144255;4;0;1125899907635630;4096;8;0;0;2021-12-16T13:36:00.436284Z;2021-11-15T13:07:17.563366Z;2019-12-07T09:08:19.705959Z +C:/Windows/SysWOW64/WsmRes.dll;file;61952;33206;2021-10-03T19:02:02.084811Z;;;2785144255;2;0;1688849861186640;4096;128;0;0;2021-12-16T13:36:00.446093Z;2021-11-11T11:29:33.722309Z;2021-10-03T19:02:02.079846Z +C:/Windows/SysWOW64/WsmSvc.dll;file;2348544;33206;2021-10-03T19:02:01.976667Z;;;2785144255;2;0;1688849861186640;4096;4592;0;0;2021-12-16T13:36:00.496567Z;2021-11-11T11:29:33.722309Z;2021-10-03T19:02:01.811627Z +C:/Windows/SysWOW64/WsmTxt.xsl;file;2426;33206;2019-12-07T09:08:19.721582Z;;;2785144255;4;0;1125899907636560;4096;8;0;0;2021-12-16T13:36:00.496567Z;2021-11-15T13:07:17.563366Z;2019-12-07T09:08:19.721582Z +C:/Windows/SysWOW64/WsmWmiPl.dll;file;235008;33206;2021-10-03T19:02:02.051580Z;;;2785144255;2;0;1688849861186640;4096;464;0;0;2021-12-16T13:36:00.508577Z;2021-11-11T11:29:33.729290Z;2021-10-03T19:02:02.035830Z +C:/Windows/SysWOW64/wsnmp32.dll;file;52736;33206;2019-12-07T09:09:13.597569Z;;;2785144255;2;0;1407374884348920;4096;104;0;0;2021-12-16T13:36:00.508577Z;2021-11-11T11:29:33.726298Z;2019-12-07T09:09:13.597569Z +C:/Windows/SysWOW64/wsock32.dll;file;16384;33206;2019-12-07T09:09:15.145962Z;;;2785144255;2;0;1125899907637370;4096;32;0;0;2021-12-16T13:36:00.508577Z;2021-11-11T11:29:33.725301Z;2019-12-07T09:09:15.145962Z +C:/Windows/SysWOW64/wsp_fs.dll;file;1506632;33206;2021-10-03T19:02:57.439070Z;;;2785144255;2;0;1688849861187680;4096;2944;0;0;2021-12-16T13:36:00.536207Z;2021-11-11T11:29:34.251028Z;2021-10-03T19:02:57.335325Z +C:/Windows/SysWOW64/wsp_health.dll;file;1315144;33206;2021-10-03T19:02:57.561547Z;;;2785144255;2;0;1688849861187680;4096;2576;0;0;2021-12-16T13:36:00.556459Z;2021-11-11T11:29:34.252028Z;2021-10-03T19:02:57.477029Z +C:/Windows/SysWOW64/wsp_sr.dll;file;725544;33206;2019-12-07T09:10:04.140075Z;;;2785144255;2;0;1125899907630790;4096;1424;0;0;2021-12-16T13:36:00.576086Z;2021-11-11T11:29:34.242017Z;2019-12-07T09:10:04.140075Z +C:/Windows/SysWOW64/WSTPager.ax;file;72192;33206;2019-12-07T09:10:04.241061Z;;;2785144255;2;0;1125899907628160;4096;144;0;0;2021-12-16T13:36:00.586090Z;2021-11-11T11:29:34.248Z;2019-12-07T09:10:04.241061Z +C:/Windows/SysWOW64/wtsapi32.dll;file;52664;33206;2020-11-03T12:45:46.386127Z;;;2785144255;2;0;3940649674923060;4096;104;0;0;2021-12-16T13:36:00.586090Z;2021-11-11T11:29:33.728293Z;2020-11-03T12:45:46.386127Z +C:/Windows/SysWOW64/wuapi.dll;file;754176;33206;2021-11-11T11:29:00.112267Z;;;2785144255;2;0;281474977879206;4096;1480;0;0;2021-12-16T13:36:00.606181Z;2021-11-11T11:38:52.124916Z;2021-11-11T11:29:00.096310Z +C:/Windows/SysWOW64/wuceffects.dll;file;172544;33206;2020-11-03T12:45:51.666253Z;;;2785144255;2;0;562949954397166;4096;344;0;0;2021-12-16T13:36:00.621307Z;2021-11-11T11:29:33.772176Z;2020-11-03T12:45:51.666253Z +C:/Windows/SysWOW64/wudriver.dll;file;115712;33206;2021-10-16T00:21:15.816975Z;;;2785144255;2;0;281474977857328;4096;232;0;0;2021-12-16T13:36:00.626413Z;2021-11-11T11:29:33.721311Z;2021-10-16T00:21:15.816975Z +C:/Windows/SysWOW64/wups.dll;file;36864;33206;2021-11-11T11:29:00.093318Z;;;2785144255;2;0;281474977879205;4096;72;0;0;2021-12-16T13:36:00.646135Z;2021-11-11T11:38:53.395638Z;2021-11-11T11:29:00.091322Z +C:/Windows/SysWOW64/wusa.exe;file;305664;33206;2021-10-03T19:02:18.825875Z;;;2785144255;2;0;1688849861187000;4096;600;0;0;2021-12-16T13:36:00.666127Z;2021-11-11T11:29:33.796165Z;2021-10-03T19:02:18.812946Z +C:/Windows/SysWOW64/wvc.dll;file;474112;33206;2021-01-15T09:27:38.098399Z;;;2785144255;2;0;13792273859444700;4096;928;0;0;2021-12-16T13:36:00.686150Z;2021-11-11T11:29:34.237030Z;2021-01-15T09:27:38.098399Z +C:/Windows/SysWOW64/WwaApi.dll;file;436736;33206;2021-10-03T19:02:03.776725Z;;;2785144255;2;0;23925373020444300;4096;856;0;0;2021-12-16T13:36:00.701453Z;2021-11-11T11:29:33.746245Z;2021-10-03T19:02:03.736372Z +C:/Windows/SysWOW64/WwaExt.dll;file;32256;33206;2021-01-15T09:27:11.525342Z;;;2785144255;2;0;2533274790986860;4096;64;0;0;2021-12-16T13:36:00.709059Z;2021-11-11T11:29:33.729290Z;2021-01-15T09:27:11.525342Z +C:/Windows/SysWOW64/WWAHost.exe;file;886080;33206;2021-02-11T15:05:12.705225Z;;;2785144255;2;0;562949954318883;4096;1736;0;0;2021-12-16T13:36:00.731234Z;2021-11-11T11:29:33.750234Z;2021-02-11T15:05:12.689601Z +C:/Windows/SysWOW64/WWanAPI.dll;file;469936;33206;2021-01-15T09:27:09.032176Z;;;2785144255;2;0;3940649674530910;4096;920;0;0;2021-12-16T13:36:00.731234Z;2021-11-11T11:29:33.712335Z;2021-01-15T09:27:09.032176Z +C:/Windows/SysWOW64/wwapi.dll;file;74832;33206;2020-11-03T12:45:45.198939Z;;;2785144255;3;0;1125899907815890;4096;152;0;0;2021-12-16T13:36:00.731234Z;2021-11-11T11:29:33.710341Z;2020-11-03T12:45:45.198939Z +C:/Windows/SysWOW64/XAudio2_8.dll;file;3072;33206;2019-12-07T09:09:11.879967Z;;;2785144255;2;0;1125899907638110;4096;8;0;0;2021-12-16T13:36:00.736307Z;2021-11-11T11:29:33.709343Z;2019-12-07T09:09:11.879967Z +C:/Windows/SysWOW64/XAudio2_9.dll;file;597504;33206;2021-10-16T00:21:15.293321Z;;;2785144255;2;0;281474977857303;4096;1168;0;0;2021-12-16T13:36:00.751045Z;2021-11-11T11:29:33.705354Z;2021-10-16T00:21:15.277666Z +C:/Windows/SysWOW64/XblAuthManagerProxy.dll;file;55296;33206;2021-01-15T09:27:09.063409Z;;;2785144255;2;0;4222124651241570;4096;112;0;0;2021-12-16T13:36:00.766126Z;2021-11-11T11:29:33.699370Z;2021-01-15T09:27:09.063409Z +C:/Windows/SysWOW64/XblAuthTokenBrokerExt.dll;file;89088;33206;2021-01-15T09:27:09.063409Z;;;2785144255;2;0;3940649674530910;4096;176;0;0;2021-12-16T13:36:00.776459Z;2021-11-11T11:29:33.703360Z;2021-01-15T09:27:09.063409Z +C:/Windows/SysWOW64/XblGameSaveProxy.dll;file;20992;33206;2019-12-07T09:09:11.817330Z;;;2785144255;2;0;1125899907636070;4096;48;0;0;2021-12-16T13:36:00.786395Z;2021-11-11T11:29:33.708346Z;2019-12-07T09:09:11.817330Z +C:/Windows/SysWOW64/xboxgipsynthetic.dll;file;60416;33206;2019-12-07T09:09:17.208173Z;;;2785144255;2;0;1125899907635010;4096;120;0;0;2021-12-16T13:36:00.801142Z;2021-11-11T11:29:33.743254Z;2019-12-07T09:09:17.208173Z +C:/Windows/SysWOW64/xcopy.exe;file;43520;33206;2019-12-07T09:09:57.819019Z;;;2785144255;2;0;1125899907628390;4096;88;0;0;2021-12-16T13:36:00.809230Z;2021-11-11T11:29:34.202158Z;2019-12-07T09:09:57.819019Z +C:/Windows/SysWOW64/XInput1_4.dll;file;36864;33206;2021-03-11T12:12:28.805353Z;;;2785144255;2;0;844424931104564;4096;72;0;0;2021-12-16T13:36:00.826455Z;2021-11-11T11:29:34.203158Z;2021-03-11T12:12:28.805353Z +C:/Windows/SysWOW64/XInput9_1_0.dll;file;9216;33206;2019-12-07T09:09:57.944449Z;;;2785144255;2;0;1125899907628910;4096;24;0;0;2021-12-16T13:36:00.836138Z;2021-11-11T11:29:34.206112Z;2019-12-07T09:09:57.944449Z +C:/Windows/SysWOW64/XInputUap.dll;file;38400;33206;2021-01-15T09:27:12.949343Z;;;2785144255;2;0;2533274790986930;4096;80;0;0;2021-12-16T13:36:00.846513Z;2021-11-11T11:29:33.740262Z;2021-01-15T09:27:12.949343Z +C:/Windows/SysWOW64/xmlfilter.dll;file;52224;33206;2021-01-15T09:27:21.584555Z;;;2785144255;2;0;21673573207340200;4096;104;0;0;2021-12-16T13:36:00.861466Z;2021-11-11T11:29:33.811072Z;2021-01-15T09:27:21.584555Z +C:/Windows/SysWOW64/xmllite.dll;file;171440;33206;2020-11-03T12:45:52.150533Z;;;2785144255;2;0;562949954397261;4096;336;0;0;2021-12-16T13:36:00.866513Z;2021-11-11T11:29:33.785173Z;2020-11-03T12:45:52.150533Z +C:/Windows/SysWOW64/xmlprovi.dll;file;17920;33206;2021-01-15T09:27:19.675159Z;;;2785144255;2;0;10696049115624200;4096;40;0;0;2021-12-16T13:36:00.876521Z;2021-11-11T11:29:33.786186Z;2021-01-15T09:27:19.675159Z +C:/Windows/SysWOW64/xolehlp.dll;file;50176;33206;2019-12-07T09:09:57.865923Z;;;2785144255;2;0;1125899907629570;4096;104;0;0;2021-12-16T13:36:00.886468Z;2021-11-11T11:29:34.205151Z;2019-12-07T09:09:57.865923Z +C:/Windows/SysWOW64/XpsDocumentTargetPrint.dll;file;252928;33206;2021-01-15T09:27:21.475225Z;;;2785144255;2;0;7881299348518080;4096;496;0;0;2021-12-16T13:36:00.909086Z;2021-11-11T11:29:33.815064Z;2021-01-15T09:27:21.475225Z +C:/Windows/SysWOW64/XpsGdiConverter.dll;file;324608;33206;2019-12-07T09:09:30.911822Z;;;2785144255;2;0;1125899907635360;4096;640;0;0;2021-12-16T13:36:00.926174Z;2021-11-11T11:29:33.816060Z;2019-12-07T09:09:30.897005Z +C:/Windows/SysWOW64/XpsPrint.dll;file;1029632;33206;2021-10-03T19:02:19.837425Z;;;2785144255;2;0;1688849861187010;4096;2016;0;0;2021-12-16T13:36:00.946286Z;2021-11-11T11:29:33.811072Z;2021-10-03T19:02:19.770360Z +C:/Windows/SysWOW64/XpsRasterService.dll;file;474624;33206;2019-12-07T09:09:32.303053Z;;;2785144255;2;0;1125899907638640;4096;928;0;0;2021-12-16T13:36:00.961154Z;2021-11-11T11:29:33.804091Z;2019-12-07T09:09:32.303053Z +C:/Windows/SysWOW64/xpsservices.dll;file;1831424;33206;2021-06-10T14:01:41.844836Z;;;2785144255;2;0;281474977765229;4096;3584;0;0;2021-12-16T13:36:00.981288Z;2021-11-11T11:29:33.812069Z;2021-06-10T14:01:41.800742Z +C:/Windows/SysWOW64/xwizard.dtd;file;4014;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907629170;4096;8;0;0;2021-12-16T13:36:00.981288Z;2021-02-22T08:01:25.249063Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/xwizard.exe;file;55808;33206;2019-12-07T09:10:05.522389Z;;;2785144255;2;0;1125899907629010;4096;112;0;0;2021-12-16T13:36:01.009037Z;2021-11-11T11:29:34.244011Z;2019-12-07T09:10:05.522389Z +C:/Windows/SysWOW64/xwizards.dll;file;376320;33206;2021-01-15T09:27:38.879464Z;;;2785144255;2;0;16044073673130100;4096;736;0;0;2021-12-16T13:36:01.026156Z;2021-11-11T11:29:34.248997Z;2021-01-15T09:27:38.879464Z +C:/Windows/SysWOW64/xwreg.dll;file;98816;33206;2021-01-15T09:27:38.895086Z;;;2785144255;2;0;13510798882734200;4096;200;0;0;2021-12-16T13:36:01.046102Z;2021-11-11T11:29:34.242017Z;2021-01-15T09:27:38.895086Z +C:/Windows/SysWOW64/xwtpdui.dll;file;206336;33206;2021-01-15T09:27:38.879464Z;;;2785144255;2;0;23080948090896500;4096;408;0;0;2021-12-16T13:36:01.061517Z;2021-11-11T11:29:34.248997Z;2021-01-15T09:27:38.879464Z +C:/Windows/SysWOW64/xwtpw32.dll;file;119808;33206;2021-01-15T09:27:38.895086Z;;;2785144255;2;0;12666373952602200;4096;240;0;0;2021-12-16T13:36:01.076132Z;2021-11-11T11:29:34.241020Z;2021-01-15T09:27:38.895086Z +C:/Windows/SysWOW64/zh-CN;directory;0;16822;2021-06-10T14:11:37.586068Z;;;2785144255;1;0;2251799814007010;4096;8;0;0;2021-12-16T13:36:01.206709Z;2021-06-10T14:11:37.586068Z;2019-12-07T09:14:52.799154Z +C:/Windows/SysWOW64/zh-CN/APHostRes.dll.mui;file;9216;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648570;4096;24;0;0;2019-12-07T14:53:37.766934Z;2020-11-03T12:35:52.435552Z;2019-12-07T14:53:37.766934Z +C:/Windows/SysWOW64/zh-CN/cdosys.dll.mui;file;40960;33206;2019-12-07T09:09:30.442382Z;;;2785144255;2;0;6755399441725400;4096;80;0;0;2019-12-07T09:09:30.442382Z;2020-11-03T12:35:19.927041Z;2019-12-07T09:09:30.442382Z +C:/Windows/SysWOW64/zh-CN/comctl32.dll.mui;file;5120;33206;2021-06-10T14:01:41.684884Z;;;2785144255;2;0;281474977765214;4096;16;0;0;2021-06-10T14:01:41.684884Z;2021-06-10T14:11:37.586068Z;2021-06-10T14:01:41.684884Z +C:/Windows/SysWOW64/zh-CN/quickassist.exe.mui;file;3072;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619420;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/zh-CN/SyncRes.dll.mui;file;13824;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648700;4096;32;0;0;2019-12-07T14:53:37.875787Z;2020-11-03T12:35:52.482415Z;2019-12-07T14:53:37.875787Z +C:/Windows/SysWOW64/zh-CN/windows.ui.xaml.dll.mui;file;11776;33206;2021-06-10T14:01:34.390488Z;;;2785144255;4;0;281474977764487;4096;24;0;0;2021-06-10T14:01:41.659251Z;2021-06-10T14:11:37.586068Z;2021-06-10T14:01:34.390488Z +C:/Windows/SysWOW64/zh-TW;directory;0;16822;2019-12-07T14:53:40.626174Z;;;2785144255;1;0;2251799814007010;4096;8;0;0;2021-12-16T13:36:01.207707Z;2020-11-03T12:35:52.841736Z;2019-12-07T09:14:52.799154Z +C:/Windows/SysWOW64/zh-TW/APHostRes.dll.mui;file;9216;33206;2019-12-06T16:57:00Z;;;2785144255;4;0;1125899907648820;4096;24;0;0;2019-12-07T14:53:37.766934Z;2020-11-03T12:35:52.544900Z;2019-12-07T14:53:37.766934Z +C:/Windows/SysWOW64/zh-TW/cdosys.dll.mui;file;40960;33206;2019-12-07T09:09:30.442382Z;;;2785144255;2;0;6473924465014750;4096;80;0;0;2019-12-07T09:09:30.442382Z;2020-11-03T12:35:19.942674Z;2019-12-07T09:09:30.442382Z +C:/Windows/SysWOW64/zh-TW/comctl32.dll.mui;file;5120;33206;2019-12-07T09:09:29.177315Z;;;2785144255;2;0;4222124651330290;4096;16;0;0;2019-12-07T09:09:29.177315Z;2020-11-03T12:35:20.005149Z;2019-12-07T09:09:29.177315Z +C:/Windows/SysWOW64/zh-TW/quickassist.exe.mui;file;3072;33206;2019-12-06T21:58:00Z;;;2785144255;4;0;1125899907619420;4096;8;0;0;2019-12-07T14:52:07.751202Z;2020-11-03T12:35:33.486508Z;2019-12-07T14:52:07.751202Z +C:/Windows/SysWOW64/zh-TW/SyncRes.dll.mui;file;13824;33206;2019-12-06T16:58:00Z;;;2785144255;4;0;1125899907648550;4096;32;0;0;2019-12-07T14:53:37.875787Z;2020-11-03T12:35:52.419930Z;2019-12-07T14:53:37.875787Z +C:/Windows/SysWOW64/zh-TW/windows.ui.xaml.dll.mui;file;11776;33206;2019-12-07T09:09:02.067275Z;;;2785144255;4;0;1407374884349810;4096;24;0;0;2019-12-07T09:09:02.067275Z;2020-11-03T12:35:45.452720Z;2019-12-07T09:09:02.067275Z +C:/Windows/SysWOW64/zipcontainer.dll;file;67584;33206;2019-12-07T09:09:18.020777Z;;;2785144255;2;0;1125899907638390;4096;136;0;0;2021-12-16T13:36:01.086320Z;2021-11-11T11:29:33.748240Z;2019-12-07T09:09:18.020777Z +C:/Windows/SysWOW64/zipfldr.dll;file;225792;33206;2021-02-11T15:05:14.848432Z;;;2785144255;2;0;562949954318948;4096;448;0;0;2021-12-16T13:36:01.109018Z;2021-11-11T11:29:33.777163Z;2021-02-11T15:05:14.848432Z +C:/Windows/SysWOW64/ztrace_maps.dll;file;25600;33206;2019-12-07T09:09:17.943084Z;;;2785144255;2;0;1125899907634730;4096;56;0;0;2021-12-16T13:36:01.121077Z;2021-11-11T11:29:33.735274Z;2019-12-07T09:09:17.943084Z diff --git a/man/get_and_save_file_info.Rd b/man/get_and_save_file_info.Rd index ddc7a5a..1111be5 100644 --- a/man/get_and_save_file_info.Rd +++ b/man/get_and_save_file_info.Rd @@ -4,8 +4,13 @@ \alias{get_and_save_file_info} \title{Get and Save File Information} \usage{ -get_and_save_file_info(root_dir, output_dir, check_dirs = TRUE, - format = "\%Y-\%m-\%d_\%H\%M", ...) +get_and_save_file_info( + root_dir, + output_dir, + check_dirs = TRUE, + format = "\%Y-\%m-\%d_\%H\%M", + ... +) } \arguments{ \item{root_dir}{path to the directory from which to start searching for diff --git a/man/get_recursive_file_info.Rd b/man/get_recursive_file_info.Rd index 0add713..277ace2 100644 --- a/man/get_recursive_file_info.Rd +++ b/man/get_recursive_file_info.Rd @@ -4,8 +4,7 @@ \alias{get_recursive_file_info} \title{Call file.info recursively on files below a root folder} \usage{ -get_recursive_file_info(root_dir, pattern = NULL, all = TRUE, ..., - dbg = TRUE) +get_recursive_file_info(root_dir, pattern = NULL, all = TRUE, ..., dbg = TRUE) } \arguments{ \item{root_dir}{path to the root directory from which to start the recursive diff --git a/man/guess_file_metadata.Rd b/man/guess_file_metadata.Rd index 12ed43a..2024f36 100644 --- a/man/guess_file_metadata.Rd +++ b/man/guess_file_metadata.Rd @@ -12,8 +12,8 @@ guess_file_metadata(file, n_first_rows = 1000, ...) \item{n_first_rows}{number of first rows of \code{file} from which to guess the meta information.} -\item{\dots}{further arguments passed to \code{fakin.path.app:::read_lines}, -such as \code{fileEncoding}} +\item{\dots}{further arguments passed to +\code{\link[kwb.utils]{readLinesWithEncoding}}, such as \code{fileEncoding}} } \value{ data frame with columns diff --git a/man/left_substring_equals.Rd b/man/left_substring_equals.Rd deleted file mode 100644 index 4607a6d..0000000 --- a/man/left_substring_equals.Rd +++ /dev/null @@ -1,16 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/utils.R -\name{left_substring_equals} -\alias{left_substring_equals} -\title{Is Left Substring of X Equal To Y?} -\usage{ -left_substring_equals(x, y) -} -\arguments{ -\item{x}{String of which the left part is compared with \code{y}} - -\item{y}{String to be compared with the left part of \code{x}} -} -\description{ -Is Left Substring of X Equal To Y? -} diff --git a/man/plot_path_network.Rd b/man/plot_path_network.Rd index 7326247..a332e24 100644 --- a/man/plot_path_network.Rd +++ b/man/plot_path_network.Rd @@ -4,11 +4,20 @@ \alias{plot_path_network} \title{Plot Paths as Sankey Network} \usage{ -plot_path_network(paths, max_depth = 3, nodePadding = 8, - nodeHeight = 10, sinksRight = FALSE, remove_common_root = TRUE, - names_to_colours = name_to_traffic_light, height = NULL, ..., - method = 1, weight_by = c("n_files", "size", "none")[1], - sizes = NULL) +plot_path_network( + paths, + max_depth = 3, + nodePadding = 8, + nodeHeight = 10, + sinksRight = FALSE, + remove_common_root = TRUE, + names_to_colours = name_to_traffic_light, + height = NULL, + ..., + method = 1, + weight_by = c("n_files", "size", "none")[1], + sizes = NULL +) } \arguments{ \item{paths}{character vector of paths} diff --git a/man/plot_treemaps_from_path_data.Rd b/man/plot_treemaps_from_path_data.Rd index f18cba2..f3eb4c8 100644 --- a/man/plot_treemaps_from_path_data.Rd +++ b/man/plot_treemaps_from_path_data.Rd @@ -4,10 +4,19 @@ \alias{plot_treemaps_from_path_data} \title{Plot Treemaps Given File Path Data} \usage{ -plot_treemaps_from_path_data(path_data, root_path = "", name = "root", - as_png = FALSE, n_levels = 2, output_dir = tempdir(), - type = "value", args_png = list(), n_biggest = -1, depth = 1, - types = c("size", "files")) +plot_treemaps_from_path_data( + path_data, + root_path = "", + name = "root", + as_png = FALSE, + n_levels = 2, + output_dir = tempdir(), + type = "value", + args_png = list(), + n_biggest = -1, + depth = 1, + types = c("size", "files") +) } \arguments{ \item{path_data}{data frame containing file path information as returned by diff --git a/man/read_paths_.Rd b/man/read_paths_.Rd index adfeb2d..90f42ab 100644 --- a/man/read_paths_.Rd +++ b/man/read_paths_.Rd @@ -4,8 +4,14 @@ \alias{read_paths_} \title{Read Paths From File} \usage{ -read_paths_(file, fileEncoding = NULL, encoding = NULL, ..., - do_sort = TRUE, expected_encodings = c("windows-1252", "ISO-8859-1")) +read_paths_( + file, + fileEncoding = NULL, + encoding = NULL, + ..., + do_sort = TRUE, + expected_encodings = c("windows-1252", "ISO-8859-1") +) } \arguments{ \item{file}{full path to the text file containing paths} @@ -15,8 +21,8 @@ read_paths_(file, fileEncoding = NULL, encoding = NULL, ..., \item{encoding}{passed to \code{\link{readLines}}.} -\item{\dots}{arguments passed to \code{fakin.path.app:::read_lines}, -such as \code{n}} +\item{\dots}{arguments passed to +\code{\link[kwb.utils]{readLinesWithEncoding}}, such as \code{n}} \item{do_sort}{if \code{TRUE} (default), the vector of paths is sorted alphanumerically.} diff --git a/tests/testthat/test-function-args_treemap.R b/tests/testthat/test-function-args_treemap.R index 5cf7461..34b0985 100644 --- a/tests/testthat/test-function-args_treemap.R +++ b/tests/testthat/test-function-args_treemap.R @@ -1,8 +1,11 @@ test_that("args_treemap() works", { testthat::expect_identical( - names(fakin.path.app:::args_treemap()), - c("index", "type", "border.col", "vSize", "vColor", "title", "title.legend") + names(fakin.path.app:::args_treemap()), + c( + "index", "type", "border.col", "vSize", "vColor", "title", "title.legend", + "format.legend" + ) ) - + }) diff --git a/tests/testthat/test-function-plot_treemaps_from_path_data.R b/tests/testthat/test-function-plot_treemaps_from_path_data.R index 0558c97..e371d1c 100644 --- a/tests/testthat/test-function-plot_treemaps_from_path_data.R +++ b/tests/testthat/test-function-plot_treemaps_from_path_data.R @@ -10,5 +10,6 @@ test_that("plot_treemaps_from_path_data() works", { type = "file" ) - expect_error(f(path_data, n_levels = 1)) + f(path_data) + f(path_data, n_levels = 1L) }) diff --git a/tests/testthat/test-function-read_lines.R b/tests/testthat/test-function-read_lines.R deleted file mode 100644 index 3388326..0000000 --- a/tests/testthat/test-function-read_lines.R +++ /dev/null @@ -1,16 +0,0 @@ -# -# This test file has been generated by kwb.test::create_test_files() -# launched by user hauke on 2019-07-14 11:27:53. -# Your are strongly encouraged to modify the dummy functions -# so that real cases are tested. You should then delete this comment. -# - -test_that("read_lines() works", { - - expect_error( - fakin.path.app:::read_lines() - # argument "file" is missing, with no default - ) - -}) - diff --git a/tests/testthat/test-function-remove_empty.R b/tests/testthat/test-function-remove_empty.R deleted file mode 100644 index 45d9ff8..0000000 --- a/tests/testthat/test-function-remove_empty.R +++ /dev/null @@ -1,16 +0,0 @@ -# -# This test file has been generated by kwb.test::create_test_files() -# launched by user hauke on 2019-09-11 11:52:06. -# Your are strongly encouraged to modify the dummy functions -# so that real cases are tested. You should then delete this comment. -# - -test_that("remove_empty() works", { - - expect_error( - fakin.path.app:::remove_empty() - # argument "x" is missing, with no default - ) - -}) - diff --git a/vignettes/images/pathana-01.png b/vignettes/images/pathana-01.png new file mode 100644 index 0000000..e6d069f Binary files /dev/null and b/vignettes/images/pathana-01.png differ diff --git a/vignettes/images/pathana-02.png b/vignettes/images/pathana-02.png new file mode 100644 index 0000000..df6d987 Binary files /dev/null and b/vignettes/images/pathana-02.png differ diff --git a/vignettes/images/pathana-03.png b/vignettes/images/pathana-03.png new file mode 100644 index 0000000..afd7848 Binary files /dev/null and b/vignettes/images/pathana-03.png differ diff --git a/vignettes/images/pathana-04.png b/vignettes/images/pathana-04.png new file mode 100644 index 0000000..ff3d5d9 Binary files /dev/null and b/vignettes/images/pathana-04.png differ diff --git a/vignettes/images/pathana-05.png b/vignettes/images/pathana-05.png new file mode 100644 index 0000000..554a145 Binary files /dev/null and b/vignettes/images/pathana-05.png differ diff --git a/vignettes/images/pathana-06.png b/vignettes/images/pathana-06.png new file mode 100644 index 0000000..371930a Binary files /dev/null and b/vignettes/images/pathana-06.png differ diff --git a/vignettes/usage.Rmd b/vignettes/usage.Rmd index 6f81bc6..f85bd2d 100644 --- a/vignettes/usage.Rmd +++ b/vignettes/usage.Rmd @@ -1,5 +1,5 @@ --- -title: "Using the FAKIN Path Analysator" +title: "Using the FAKIN Path Analyser" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{usage} @@ -10,22 +10,87 @@ vignette: > ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, - comment = "#>" + comment = "#>", + eval = FALSE ) ``` Once you have installed the package fakin.path.app and all related packages, you are set up to -1. Scan your file system for file paths and file properties and save them to -CSV files (CSV = Comma Separated Values), +1. [Scan your file system](#step-1) for file paths and file properties and save +them to CSV files (CSV = Comma Separated Values), -2. Run the Web Application to analyse the path information produced in the -first step. +2. [Run the Web Application](#step-2) to analyse the path information produced +in the first step. -## Step 1: Scan your file system +## Application 1: Scan your file system{#step-1} -## Step 2: Run the Web Application +Run the following R command to start the application that scans your system for +files to be analysed: + +```{r} +fakin.path.app::run_app_scan() +``` + +This will open a new tab in your default web browser as shown here for a +Mozilla Firefox browser on an Ubuntu Linux system: + +![Main window of the scan app](images/pathana-01.png){width=300px} + +The main window is devided into three sections representing the steps required +to start the scan process: + +1. Define root directories +2. Define ouput directory +3. Scan root directories + +In the first step you define one or more root directories that act as the +starting point of the scan. The search is done recursively, i.e. files in all +folders and subfolders will be considered. Take this in mind when selecting a +root directory. It can take a long time to scan a "top-level" folder! Click the +Button "Add root directory..." to select a root directory: + +![Select a root directory](images/pathana-02.png){width=500px} + +In the opening dialog window, use the left-hand pane to navigate to the folder +that you want to scan. Select the folder by clicking on its name (`hauke` in the +example). The contents of the folder are shown in the right-hand pane. Confirm +your selection by clicking the "Select" button. This closes the dialog window +and enters the path to the selected root directory (here: `/home/hauke`) in the +text field on top of the main window: + +![After selecting a root directory](images/pathana-03.png){width=300px} + +In the next (optional) step you can set the output directory, i.e. the location +where to store the results of the scan. You may use the default +(`/home/hauke/pathana-db` in the example) or select another location by clicking +"Change output directory..." and selecting a different folder (similar to +selecting a root directory). + +Once the root and output directories are specified, you are ready to start the +scan process. Therefore, click the "Scan root directories" button... + +![Start the scan process](images/pathana-04.png){width=300px} + +... and wait until the scan has been completed. + +![Wait for the scan to be completed](images/pathana-05.png){width=300px} + +The completion of the scan is indicated by a message box stating that the +information on the scanned files have been written to a CSV file in the output +directory: + +![Message after successful completion of the scan](images/pathana-06.png){width=300px} + +Close the message box by clicking the "Dismiss" button. + +Now, that the result of the scan is available in a CSV file you are ready to run +the application that helps you to inspect and analyse this file. Before you run +this second application, close the current application by pressing ESC in the +R console or by closing the corresponding tab in the web browser. + +## Application 2: Run the Web Application{#step-2} ```{r eval = FALSE} # Set the path to your personal "path database" (a folder containing files as