Skip to content

Instantly share code, notes, and snippets.

@ynkdir
Created July 20, 2026 13:22
Show Gist options
  • Select an option

  • Save ynkdir/6153533a51334644bb28d45353a26245 to your computer and use it in GitHub Desktop.

Select an option

Save ynkdir/6153533a51334644bb28d45353a26245 to your computer and use it in GitHub Desktop.
ucrt.py
import ctypes
def __getattr__(key):
if key not in apiset:
raise AttributeError(f"cannot find {key}")
dllname = apiset[key]
if dllname not in dlls:
dlls[dllname] = ctypes.CDLL(dllname)
return dlls[dllname][key]
dlls = {}
# 10.0.26100.0
apiset = {
"__conio_common_vcprintf": "api-ms-win-crt-conio-l1-1-0.dll",
"__conio_common_vcprintf_p": "api-ms-win-crt-conio-l1-1-0.dll",
"__conio_common_vcprintf_s": "api-ms-win-crt-conio-l1-1-0.dll",
"__conio_common_vcscanf": "api-ms-win-crt-conio-l1-1-0.dll",
"__conio_common_vcwprintf": "api-ms-win-crt-conio-l1-1-0.dll",
"__conio_common_vcwprintf_p": "api-ms-win-crt-conio-l1-1-0.dll",
"__conio_common_vcwprintf_s": "api-ms-win-crt-conio-l1-1-0.dll",
"__conio_common_vcwscanf": "api-ms-win-crt-conio-l1-1-0.dll",
"_cgets": "api-ms-win-crt-conio-l1-1-0.dll",
"_cgets_s": "api-ms-win-crt-conio-l1-1-0.dll",
"_cgetws": "api-ms-win-crt-conio-l1-1-0.dll",
"_cgetws_s": "api-ms-win-crt-conio-l1-1-0.dll",
"_cputs": "api-ms-win-crt-conio-l1-1-0.dll",
"_cputws": "api-ms-win-crt-conio-l1-1-0.dll",
"_getch": "api-ms-win-crt-conio-l1-1-0.dll",
"_getch_nolock": "api-ms-win-crt-conio-l1-1-0.dll",
"_getche": "api-ms-win-crt-conio-l1-1-0.dll",
"_getche_nolock": "api-ms-win-crt-conio-l1-1-0.dll",
"_getwch": "api-ms-win-crt-conio-l1-1-0.dll",
"_getwch_nolock": "api-ms-win-crt-conio-l1-1-0.dll",
"_getwche": "api-ms-win-crt-conio-l1-1-0.dll",
"_getwche_nolock": "api-ms-win-crt-conio-l1-1-0.dll",
"_putch": "api-ms-win-crt-conio-l1-1-0.dll",
"_putch_nolock": "api-ms-win-crt-conio-l1-1-0.dll",
"_putwch": "api-ms-win-crt-conio-l1-1-0.dll",
"_putwch_nolock": "api-ms-win-crt-conio-l1-1-0.dll",
"_ungetch": "api-ms-win-crt-conio-l1-1-0.dll",
"_ungetch_nolock": "api-ms-win-crt-conio-l1-1-0.dll",
"_ungetwch": "api-ms-win-crt-conio-l1-1-0.dll",
"_ungetwch_nolock": "api-ms-win-crt-conio-l1-1-0.dll",
"__toascii": "api-ms-win-crt-convert-l1-1-0.dll",
"_atodbl": "api-ms-win-crt-convert-l1-1-0.dll",
"_atodbl_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_atof_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_atoflt": "api-ms-win-crt-convert-l1-1-0.dll",
"_atoflt_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_atoi64": "api-ms-win-crt-convert-l1-1-0.dll",
"_atoi64_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_atoi_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_atol_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_atoldbl": "api-ms-win-crt-convert-l1-1-0.dll",
"_atoldbl_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_atoll_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_ecvt": "api-ms-win-crt-convert-l1-1-0.dll",
"_ecvt_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_fcvt": "api-ms-win-crt-convert-l1-1-0.dll",
"_fcvt_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_gcvt": "api-ms-win-crt-convert-l1-1-0.dll",
"_gcvt_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_i64toa": "api-ms-win-crt-convert-l1-1-0.dll",
"_i64toa_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_i64tow": "api-ms-win-crt-convert-l1-1-0.dll",
"_i64tow_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_itoa": "api-ms-win-crt-convert-l1-1-0.dll",
"_itoa_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_itow": "api-ms-win-crt-convert-l1-1-0.dll",
"_itow_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_ltoa": "api-ms-win-crt-convert-l1-1-0.dll",
"_ltoa_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_ltow": "api-ms-win-crt-convert-l1-1-0.dll",
"_ltow_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtod_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtof_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtoi64": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtoi64_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtoimax_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtol_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtold_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtoll_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtoui64": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtoui64_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtoul_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtoull_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_strtoumax_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_ui64toa": "api-ms-win-crt-convert-l1-1-0.dll",
"_ui64toa_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_ui64tow": "api-ms-win-crt-convert-l1-1-0.dll",
"_ui64tow_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_ultoa": "api-ms-win-crt-convert-l1-1-0.dll",
"_ultoa_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_ultow": "api-ms-win-crt-convert-l1-1-0.dll",
"_ultow_s": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstod_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstof_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstoi64": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstoi64_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstoimax_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstol_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstold_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstoll_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstombs_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstombs_s_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstoui64": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstoui64_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstoul_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstoull_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wcstoumax_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wctomb_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wctomb_s_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtof": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtof_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtoi": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtoi64": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtoi64_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtoi_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtol": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtol_l": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtoll": "api-ms-win-crt-convert-l1-1-0.dll",
"_wtoll_l": "api-ms-win-crt-convert-l1-1-0.dll",
"atof": "api-ms-win-crt-convert-l1-1-0.dll",
"atoi": "api-ms-win-crt-convert-l1-1-0.dll",
"atol": "api-ms-win-crt-convert-l1-1-0.dll",
"atoll": "api-ms-win-crt-convert-l1-1-0.dll",
"btowc": "api-ms-win-crt-convert-l1-1-0.dll",
"c16rtomb": "api-ms-win-crt-convert-l1-1-0.dll",
"c32rtomb": "api-ms-win-crt-convert-l1-1-0.dll",
"mbrtoc16": "api-ms-win-crt-convert-l1-1-0.dll",
"mbrtoc32": "api-ms-win-crt-convert-l1-1-0.dll",
"mbrtowc": "api-ms-win-crt-convert-l1-1-0.dll",
"mbsrtowcs": "api-ms-win-crt-convert-l1-1-0.dll",
"mbsrtowcs_s": "api-ms-win-crt-convert-l1-1-0.dll",
"mbstowcs": "api-ms-win-crt-convert-l1-1-0.dll",
"mbstowcs_s": "api-ms-win-crt-convert-l1-1-0.dll",
"mbtowc": "api-ms-win-crt-convert-l1-1-0.dll",
"strtod": "api-ms-win-crt-convert-l1-1-0.dll",
"strtof": "api-ms-win-crt-convert-l1-1-0.dll",
"strtoimax": "api-ms-win-crt-convert-l1-1-0.dll",
"strtol": "api-ms-win-crt-convert-l1-1-0.dll",
"strtold": "api-ms-win-crt-convert-l1-1-0.dll",
"strtoll": "api-ms-win-crt-convert-l1-1-0.dll",
"strtoul": "api-ms-win-crt-convert-l1-1-0.dll",
"strtoull": "api-ms-win-crt-convert-l1-1-0.dll",
"strtoumax": "api-ms-win-crt-convert-l1-1-0.dll",
"wcrtomb": "api-ms-win-crt-convert-l1-1-0.dll",
"wcrtomb_s": "api-ms-win-crt-convert-l1-1-0.dll",
"wcsrtombs": "api-ms-win-crt-convert-l1-1-0.dll",
"wcsrtombs_s": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstod": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstof": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstoimax": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstol": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstold": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstoll": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstombs": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstombs_s": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstoul": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstoull": "api-ms-win-crt-convert-l1-1-0.dll",
"wcstoumax": "api-ms-win-crt-convert-l1-1-0.dll",
"wctob": "api-ms-win-crt-convert-l1-1-0.dll",
"wctomb": "api-ms-win-crt-convert-l1-1-0.dll",
"wctomb_s": "api-ms-win-crt-convert-l1-1-0.dll",
"wctrans": "api-ms-win-crt-convert-l1-1-0.dll",
"__p__environ": "api-ms-win-crt-environment-l1-1-0.dll",
"__p__wenviron": "api-ms-win-crt-environment-l1-1-0.dll",
"_dupenv_s": "api-ms-win-crt-environment-l1-1-0.dll",
"_putenv": "api-ms-win-crt-environment-l1-1-0.dll",
"_putenv_s": "api-ms-win-crt-environment-l1-1-0.dll",
"_searchenv": "api-ms-win-crt-environment-l1-1-0.dll",
"_searchenv_s": "api-ms-win-crt-environment-l1-1-0.dll",
"_wdupenv_s": "api-ms-win-crt-environment-l1-1-0.dll",
"_wgetcwd": "api-ms-win-crt-environment-l1-1-0.dll",
"_wgetdcwd": "api-ms-win-crt-environment-l1-1-0.dll",
"_wgetenv": "api-ms-win-crt-environment-l1-1-0.dll",
"_wgetenv_s": "api-ms-win-crt-environment-l1-1-0.dll",
"_wputenv": "api-ms-win-crt-environment-l1-1-0.dll",
"_wputenv_s": "api-ms-win-crt-environment-l1-1-0.dll",
"_wsearchenv": "api-ms-win-crt-environment-l1-1-0.dll",
"_wsearchenv_s": "api-ms-win-crt-environment-l1-1-0.dll",
"getenv": "api-ms-win-crt-environment-l1-1-0.dll",
"getenv_s": "api-ms-win-crt-environment-l1-1-0.dll",
"_access": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_access_s": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_chdir": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_chdrive": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_chmod": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_findclose": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_findfirst32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_findfirst32i64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_findfirst64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_findfirst64i32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_findnext32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_findnext32i64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_findnext64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_findnext64i32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_fstat32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_fstat32i64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_fstat64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_fstat64i32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_fullpath": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_getdiskfree": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_getdrive": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_getdrives": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_lock_file": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_makepath": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_makepath_s": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_mkdir": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_rmdir": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_splitpath": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_splitpath_s": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_stat32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_stat32i64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_stat64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_stat64i32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_umask": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_umask_s": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_unlink": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_unlock_file": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_waccess": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_waccess_s": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wchdir": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wchmod": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wfindfirst32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wfindfirst32i64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wfindfirst64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wfindfirst64i32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wfindnext32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wfindnext32i64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wfindnext64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wfindnext64i32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wfullpath": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wmakepath": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wmakepath_s": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wmkdir": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wremove": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wrename": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wrmdir": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wsplitpath": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wsplitpath_s": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wstat32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wstat32i64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wstat64": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wstat64i32": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_wunlink": "api-ms-win-crt-filesystem-l1-1-0.dll",
"remove": "api-ms-win-crt-filesystem-l1-1-0.dll",
"rename": "api-ms-win-crt-filesystem-l1-1-0.dll",
"_aligned_free": "api-ms-win-crt-heap-l1-1-0.dll",
"_aligned_malloc": "api-ms-win-crt-heap-l1-1-0.dll",
"_aligned_msize": "api-ms-win-crt-heap-l1-1-0.dll",
"_aligned_offset_malloc": "api-ms-win-crt-heap-l1-1-0.dll",
"_aligned_offset_realloc": "api-ms-win-crt-heap-l1-1-0.dll",
"_aligned_offset_recalloc": "api-ms-win-crt-heap-l1-1-0.dll",
"_aligned_realloc": "api-ms-win-crt-heap-l1-1-0.dll",
"_aligned_recalloc": "api-ms-win-crt-heap-l1-1-0.dll",
"_callnewh": "api-ms-win-crt-heap-l1-1-0.dll",
"_calloc_base": "api-ms-win-crt-heap-l1-1-0.dll",
"_expand": "api-ms-win-crt-heap-l1-1-0.dll",
"_free_base": "api-ms-win-crt-heap-l1-1-0.dll",
"_get_heap_handle": "api-ms-win-crt-heap-l1-1-0.dll",
"_heapchk": "api-ms-win-crt-heap-l1-1-0.dll",
"_heapmin": "api-ms-win-crt-heap-l1-1-0.dll",
"_heapwalk": "api-ms-win-crt-heap-l1-1-0.dll",
"_malloc_base": "api-ms-win-crt-heap-l1-1-0.dll",
"_msize": "api-ms-win-crt-heap-l1-1-0.dll",
"_query_new_handler": "api-ms-win-crt-heap-l1-1-0.dll",
"_query_new_mode": "api-ms-win-crt-heap-l1-1-0.dll",
"_realloc_base": "api-ms-win-crt-heap-l1-1-0.dll",
"_recalloc": "api-ms-win-crt-heap-l1-1-0.dll",
"_set_new_mode": "api-ms-win-crt-heap-l1-1-0.dll",
"calloc": "api-ms-win-crt-heap-l1-1-0.dll",
"free": "api-ms-win-crt-heap-l1-1-0.dll",
"malloc": "api-ms-win-crt-heap-l1-1-0.dll",
"realloc": "api-ms-win-crt-heap-l1-1-0.dll",
"___lc_codepage_func": "api-ms-win-crt-locale-l1-1-0.dll",
"___lc_collate_cp_func": "api-ms-win-crt-locale-l1-1-0.dll",
"___lc_locale_name_func": "api-ms-win-crt-locale-l1-1-0.dll",
"___mb_cur_max_func": "api-ms-win-crt-locale-l1-1-0.dll",
"___mb_cur_max_l_func": "api-ms-win-crt-locale-l1-1-0.dll",
"__initialize_lconv_for_unsigned_char": "api-ms-win-crt-locale-l1-1-0.dll",
"__pctype_func": "api-ms-win-crt-locale-l1-1-0.dll",
"__pwctype_func": "api-ms-win-crt-locale-l1-1-0.dll",
"_configthreadlocale": "api-ms-win-crt-locale-l1-1-0.dll",
"_create_locale": "api-ms-win-crt-locale-l1-1-0.dll",
"_free_locale": "api-ms-win-crt-locale-l1-1-0.dll",
"_get_current_locale": "api-ms-win-crt-locale-l1-1-0.dll",
"_getmbcp": "api-ms-win-crt-locale-l1-1-0.dll",
"_lock_locales": "api-ms-win-crt-locale-l1-1-0.dll",
"_setmbcp": "api-ms-win-crt-locale-l1-1-0.dll",
"_unlock_locales": "api-ms-win-crt-locale-l1-1-0.dll",
"_wcreate_locale": "api-ms-win-crt-locale-l1-1-0.dll",
"_wsetlocale": "api-ms-win-crt-locale-l1-1-0.dll",
"localeconv": "api-ms-win-crt-locale-l1-1-0.dll",
"setlocale": "api-ms-win-crt-locale-l1-1-0.dll",
"_Cbuild": "api-ms-win-crt-math-l1-1-0.dll",
"_Cmulcc": "api-ms-win-crt-math-l1-1-0.dll",
"_Cmulcr": "api-ms-win-crt-math-l1-1-0.dll",
"_FCbuild": "api-ms-win-crt-math-l1-1-0.dll",
"_FCmulcc": "api-ms-win-crt-math-l1-1-0.dll",
"_FCmulcr": "api-ms-win-crt-math-l1-1-0.dll",
"_LCbuild": "api-ms-win-crt-math-l1-1-0.dll",
"_LCmulcc": "api-ms-win-crt-math-l1-1-0.dll",
"_LCmulcr": "api-ms-win-crt-math-l1-1-0.dll",
"__setusermatherr": "api-ms-win-crt-math-l1-1-0.dll",
"_cabs": "api-ms-win-crt-math-l1-1-0.dll",
"_chgsign": "api-ms-win-crt-math-l1-1-0.dll",
"_chgsignf": "api-ms-win-crt-math-l1-1-0.dll",
"_copysign": "api-ms-win-crt-math-l1-1-0.dll",
"_copysignf": "api-ms-win-crt-math-l1-1-0.dll",
"_d_int": "api-ms-win-crt-math-l1-1-0.dll",
"_dclass": "api-ms-win-crt-math-l1-1-0.dll",
"_dexp": "api-ms-win-crt-math-l1-1-0.dll",
"_dlog": "api-ms-win-crt-math-l1-1-0.dll",
"_dnorm": "api-ms-win-crt-math-l1-1-0.dll",
"_dpcomp": "api-ms-win-crt-math-l1-1-0.dll",
"_dpoly": "api-ms-win-crt-math-l1-1-0.dll",
"_dscale": "api-ms-win-crt-math-l1-1-0.dll",
"_dsign": "api-ms-win-crt-math-l1-1-0.dll",
"_dsin": "api-ms-win-crt-math-l1-1-0.dll",
"_dtest": "api-ms-win-crt-math-l1-1-0.dll",
"_dunscale": "api-ms-win-crt-math-l1-1-0.dll",
"_except1": "api-ms-win-crt-math-l1-1-0.dll",
"_fd_int": "api-ms-win-crt-math-l1-1-0.dll",
"_fdclass": "api-ms-win-crt-math-l1-1-0.dll",
"_fdexp": "api-ms-win-crt-math-l1-1-0.dll",
"_fdlog": "api-ms-win-crt-math-l1-1-0.dll",
"_fdnorm": "api-ms-win-crt-math-l1-1-0.dll",
"_fdopen": "api-ms-win-crt-math-l1-1-0.dll",
"_fdpcomp": "api-ms-win-crt-math-l1-1-0.dll",
"_fdpoly": "api-ms-win-crt-math-l1-1-0.dll",
"_fdscale": "api-ms-win-crt-math-l1-1-0.dll",
"_fdsign": "api-ms-win-crt-math-l1-1-0.dll",
"_fdsin": "api-ms-win-crt-math-l1-1-0.dll",
"_fdtest": "api-ms-win-crt-math-l1-1-0.dll",
"_fdunscale": "api-ms-win-crt-math-l1-1-0.dll",
"_finite": "api-ms-win-crt-math-l1-1-0.dll",
"_finitef": "api-ms-win-crt-math-l1-1-0.dll",
"_fpclass": "api-ms-win-crt-math-l1-1-0.dll",
"_fpclassf": "api-ms-win-crt-math-l1-1-0.dll",
"_get_FMA3_enable": "api-ms-win-crt-math-l1-1-0.dll",
"_hypot": "api-ms-win-crt-math-l1-1-0.dll",
"_hypotf": "api-ms-win-crt-math-l1-1-0.dll",
"_isnan": "api-ms-win-crt-math-l1-1-0.dll",
"_isnanf": "api-ms-win-crt-math-l1-1-0.dll",
"_j0": "api-ms-win-crt-math-l1-1-0.dll",
"_j1": "api-ms-win-crt-math-l1-1-0.dll",
"_jn": "api-ms-win-crt-math-l1-1-0.dll",
"_ld_int": "api-ms-win-crt-math-l1-1-0.dll",
"_ldclass": "api-ms-win-crt-math-l1-1-0.dll",
"_ldexp": "api-ms-win-crt-math-l1-1-0.dll",
"_ldlog": "api-ms-win-crt-math-l1-1-0.dll",
"_ldpcomp": "api-ms-win-crt-math-l1-1-0.dll",
"_ldpoly": "api-ms-win-crt-math-l1-1-0.dll",
"_ldscale": "api-ms-win-crt-math-l1-1-0.dll",
"_ldsign": "api-ms-win-crt-math-l1-1-0.dll",
"_ldsin": "api-ms-win-crt-math-l1-1-0.dll",
"_ldtest": "api-ms-win-crt-math-l1-1-0.dll",
"_ldunscale": "api-ms-win-crt-math-l1-1-0.dll",
"_logb": "api-ms-win-crt-math-l1-1-0.dll",
"_logbf": "api-ms-win-crt-math-l1-1-0.dll",
"_nextafter": "api-ms-win-crt-math-l1-1-0.dll",
"_nextafterf": "api-ms-win-crt-math-l1-1-0.dll",
"_scalb": "api-ms-win-crt-math-l1-1-0.dll",
"_scalbf": "api-ms-win-crt-math-l1-1-0.dll",
"_set_FMA3_enable": "api-ms-win-crt-math-l1-1-0.dll",
"_y0": "api-ms-win-crt-math-l1-1-0.dll",
"_y1": "api-ms-win-crt-math-l1-1-0.dll",
"_yn": "api-ms-win-crt-math-l1-1-0.dll",
"acos": "api-ms-win-crt-math-l1-1-0.dll",
"acosf": "api-ms-win-crt-math-l1-1-0.dll",
"acosh": "api-ms-win-crt-math-l1-1-0.dll",
"acoshf": "api-ms-win-crt-math-l1-1-0.dll",
"acoshl": "api-ms-win-crt-math-l1-1-0.dll",
"asin": "api-ms-win-crt-math-l1-1-0.dll",
"asinf": "api-ms-win-crt-math-l1-1-0.dll",
"asinh": "api-ms-win-crt-math-l1-1-0.dll",
"asinhf": "api-ms-win-crt-math-l1-1-0.dll",
"asinhl": "api-ms-win-crt-math-l1-1-0.dll",
"atan": "api-ms-win-crt-math-l1-1-0.dll",
"atan2": "api-ms-win-crt-math-l1-1-0.dll",
"atan2f": "api-ms-win-crt-math-l1-1-0.dll",
"atanf": "api-ms-win-crt-math-l1-1-0.dll",
"atanh": "api-ms-win-crt-math-l1-1-0.dll",
"atanhf": "api-ms-win-crt-math-l1-1-0.dll",
"atanhl": "api-ms-win-crt-math-l1-1-0.dll",
"cabs": "api-ms-win-crt-math-l1-1-0.dll",
"cabsf": "api-ms-win-crt-math-l1-1-0.dll",
"cabsl": "api-ms-win-crt-math-l1-1-0.dll",
"cacos": "api-ms-win-crt-math-l1-1-0.dll",
"cacosf": "api-ms-win-crt-math-l1-1-0.dll",
"cacosh": "api-ms-win-crt-math-l1-1-0.dll",
"cacoshf": "api-ms-win-crt-math-l1-1-0.dll",
"cacoshl": "api-ms-win-crt-math-l1-1-0.dll",
"cacosl": "api-ms-win-crt-math-l1-1-0.dll",
"carg": "api-ms-win-crt-math-l1-1-0.dll",
"cargf": "api-ms-win-crt-math-l1-1-0.dll",
"cargl": "api-ms-win-crt-math-l1-1-0.dll",
"casin": "api-ms-win-crt-math-l1-1-0.dll",
"casinf": "api-ms-win-crt-math-l1-1-0.dll",
"casinh": "api-ms-win-crt-math-l1-1-0.dll",
"casinhf": "api-ms-win-crt-math-l1-1-0.dll",
"casinhl": "api-ms-win-crt-math-l1-1-0.dll",
"casinl": "api-ms-win-crt-math-l1-1-0.dll",
"catan": "api-ms-win-crt-math-l1-1-0.dll",
"catanf": "api-ms-win-crt-math-l1-1-0.dll",
"catanh": "api-ms-win-crt-math-l1-1-0.dll",
"catanhf": "api-ms-win-crt-math-l1-1-0.dll",
"catanhl": "api-ms-win-crt-math-l1-1-0.dll",
"catanl": "api-ms-win-crt-math-l1-1-0.dll",
"cbrt": "api-ms-win-crt-math-l1-1-0.dll",
"cbrtf": "api-ms-win-crt-math-l1-1-0.dll",
"cbrtl": "api-ms-win-crt-math-l1-1-0.dll",
"ccos": "api-ms-win-crt-math-l1-1-0.dll",
"ccosf": "api-ms-win-crt-math-l1-1-0.dll",
"ccosh": "api-ms-win-crt-math-l1-1-0.dll",
"ccoshf": "api-ms-win-crt-math-l1-1-0.dll",
"ccoshl": "api-ms-win-crt-math-l1-1-0.dll",
"ccosl": "api-ms-win-crt-math-l1-1-0.dll",
"ceil": "api-ms-win-crt-math-l1-1-0.dll",
"ceilf": "api-ms-win-crt-math-l1-1-0.dll",
"cexp": "api-ms-win-crt-math-l1-1-0.dll",
"cexpf": "api-ms-win-crt-math-l1-1-0.dll",
"cexpl": "api-ms-win-crt-math-l1-1-0.dll",
"cimag": "api-ms-win-crt-math-l1-1-0.dll",
"cimagf": "api-ms-win-crt-math-l1-1-0.dll",
"cimagl": "api-ms-win-crt-math-l1-1-0.dll",
"clog": "api-ms-win-crt-math-l1-1-0.dll",
"clog10": "api-ms-win-crt-math-l1-1-0.dll",
"clog10f": "api-ms-win-crt-math-l1-1-0.dll",
"clog10l": "api-ms-win-crt-math-l1-1-0.dll",
"clogf": "api-ms-win-crt-math-l1-1-0.dll",
"clogl": "api-ms-win-crt-math-l1-1-0.dll",
"conj": "api-ms-win-crt-math-l1-1-0.dll",
"conjf": "api-ms-win-crt-math-l1-1-0.dll",
"conjl": "api-ms-win-crt-math-l1-1-0.dll",
"copysign": "api-ms-win-crt-math-l1-1-0.dll",
"copysignf": "api-ms-win-crt-math-l1-1-0.dll",
"copysignl": "api-ms-win-crt-math-l1-1-0.dll",
"cos": "api-ms-win-crt-math-l1-1-0.dll",
"cosf": "api-ms-win-crt-math-l1-1-0.dll",
"cosh": "api-ms-win-crt-math-l1-1-0.dll",
"coshf": "api-ms-win-crt-math-l1-1-0.dll",
"cpow": "api-ms-win-crt-math-l1-1-0.dll",
"cpowf": "api-ms-win-crt-math-l1-1-0.dll",
"cpowl": "api-ms-win-crt-math-l1-1-0.dll",
"cproj": "api-ms-win-crt-math-l1-1-0.dll",
"cprojf": "api-ms-win-crt-math-l1-1-0.dll",
"cprojl": "api-ms-win-crt-math-l1-1-0.dll",
"creal": "api-ms-win-crt-math-l1-1-0.dll",
"crealf": "api-ms-win-crt-math-l1-1-0.dll",
"creall": "api-ms-win-crt-math-l1-1-0.dll",
"csin": "api-ms-win-crt-math-l1-1-0.dll",
"csinf": "api-ms-win-crt-math-l1-1-0.dll",
"csinh": "api-ms-win-crt-math-l1-1-0.dll",
"csinhf": "api-ms-win-crt-math-l1-1-0.dll",
"csinhl": "api-ms-win-crt-math-l1-1-0.dll",
"csinl": "api-ms-win-crt-math-l1-1-0.dll",
"csqrt": "api-ms-win-crt-math-l1-1-0.dll",
"csqrtf": "api-ms-win-crt-math-l1-1-0.dll",
"csqrtl": "api-ms-win-crt-math-l1-1-0.dll",
"ctan": "api-ms-win-crt-math-l1-1-0.dll",
"ctanf": "api-ms-win-crt-math-l1-1-0.dll",
"ctanh": "api-ms-win-crt-math-l1-1-0.dll",
"ctanhf": "api-ms-win-crt-math-l1-1-0.dll",
"ctanhl": "api-ms-win-crt-math-l1-1-0.dll",
"ctanl": "api-ms-win-crt-math-l1-1-0.dll",
"erf": "api-ms-win-crt-math-l1-1-0.dll",
"erfc": "api-ms-win-crt-math-l1-1-0.dll",
"erfcf": "api-ms-win-crt-math-l1-1-0.dll",
"erfcl": "api-ms-win-crt-math-l1-1-0.dll",
"erff": "api-ms-win-crt-math-l1-1-0.dll",
"erfl": "api-ms-win-crt-math-l1-1-0.dll",
"exp": "api-ms-win-crt-math-l1-1-0.dll",
"exp2": "api-ms-win-crt-math-l1-1-0.dll",
"exp2f": "api-ms-win-crt-math-l1-1-0.dll",
"exp2l": "api-ms-win-crt-math-l1-1-0.dll",
"expf": "api-ms-win-crt-math-l1-1-0.dll",
"expm1": "api-ms-win-crt-math-l1-1-0.dll",
"expm1f": "api-ms-win-crt-math-l1-1-0.dll",
"expm1l": "api-ms-win-crt-math-l1-1-0.dll",
"fabs": "api-ms-win-crt-math-l1-1-0.dll",
"fdim": "api-ms-win-crt-math-l1-1-0.dll",
"fdimf": "api-ms-win-crt-math-l1-1-0.dll",
"fdiml": "api-ms-win-crt-math-l1-1-0.dll",
"floor": "api-ms-win-crt-math-l1-1-0.dll",
"floorf": "api-ms-win-crt-math-l1-1-0.dll",
"fma": "api-ms-win-crt-math-l1-1-0.dll",
"fmaf": "api-ms-win-crt-math-l1-1-0.dll",
"fmal": "api-ms-win-crt-math-l1-1-0.dll",
"fmax": "api-ms-win-crt-math-l1-1-0.dll",
"fmaxf": "api-ms-win-crt-math-l1-1-0.dll",
"fmaxl": "api-ms-win-crt-math-l1-1-0.dll",
"fmin": "api-ms-win-crt-math-l1-1-0.dll",
"fminf": "api-ms-win-crt-math-l1-1-0.dll",
"fminl": "api-ms-win-crt-math-l1-1-0.dll",
"fmod": "api-ms-win-crt-math-l1-1-0.dll",
"fmodf": "api-ms-win-crt-math-l1-1-0.dll",
"frexp": "api-ms-win-crt-math-l1-1-0.dll",
"hypot": "api-ms-win-crt-math-l1-1-0.dll",
"ilogb": "api-ms-win-crt-math-l1-1-0.dll",
"ilogbf": "api-ms-win-crt-math-l1-1-0.dll",
"ilogbl": "api-ms-win-crt-math-l1-1-0.dll",
"ldexp": "api-ms-win-crt-math-l1-1-0.dll",
"lgamma": "api-ms-win-crt-math-l1-1-0.dll",
"lgammaf": "api-ms-win-crt-math-l1-1-0.dll",
"lgammal": "api-ms-win-crt-math-l1-1-0.dll",
"llrint": "api-ms-win-crt-math-l1-1-0.dll",
"llrintf": "api-ms-win-crt-math-l1-1-0.dll",
"llrintl": "api-ms-win-crt-math-l1-1-0.dll",
"llround": "api-ms-win-crt-math-l1-1-0.dll",
"llroundf": "api-ms-win-crt-math-l1-1-0.dll",
"llroundl": "api-ms-win-crt-math-l1-1-0.dll",
"log": "api-ms-win-crt-math-l1-1-0.dll",
"log10": "api-ms-win-crt-math-l1-1-0.dll",
"log10f": "api-ms-win-crt-math-l1-1-0.dll",
"log1p": "api-ms-win-crt-math-l1-1-0.dll",
"log1pf": "api-ms-win-crt-math-l1-1-0.dll",
"log1pl": "api-ms-win-crt-math-l1-1-0.dll",
"log2": "api-ms-win-crt-math-l1-1-0.dll",
"log2f": "api-ms-win-crt-math-l1-1-0.dll",
"log2l": "api-ms-win-crt-math-l1-1-0.dll",
"logb": "api-ms-win-crt-math-l1-1-0.dll",
"logbf": "api-ms-win-crt-math-l1-1-0.dll",
"logbl": "api-ms-win-crt-math-l1-1-0.dll",
"logf": "api-ms-win-crt-math-l1-1-0.dll",
"lrint": "api-ms-win-crt-math-l1-1-0.dll",
"lrintf": "api-ms-win-crt-math-l1-1-0.dll",
"lrintl": "api-ms-win-crt-math-l1-1-0.dll",
"lround": "api-ms-win-crt-math-l1-1-0.dll",
"lroundf": "api-ms-win-crt-math-l1-1-0.dll",
"lroundl": "api-ms-win-crt-math-l1-1-0.dll",
"modf": "api-ms-win-crt-math-l1-1-0.dll",
"modff": "api-ms-win-crt-math-l1-1-0.dll",
"nan": "api-ms-win-crt-math-l1-1-0.dll",
"nanf": "api-ms-win-crt-math-l1-1-0.dll",
"nanl": "api-ms-win-crt-math-l1-1-0.dll",
"nearbyint": "api-ms-win-crt-math-l1-1-0.dll",
"nearbyintf": "api-ms-win-crt-math-l1-1-0.dll",
"nearbyintl": "api-ms-win-crt-math-l1-1-0.dll",
"nextafter": "api-ms-win-crt-math-l1-1-0.dll",
"nextafterf": "api-ms-win-crt-math-l1-1-0.dll",
"nextafterl": "api-ms-win-crt-math-l1-1-0.dll",
"nexttoward": "api-ms-win-crt-math-l1-1-0.dll",
"nexttowardf": "api-ms-win-crt-math-l1-1-0.dll",
"nexttowardl": "api-ms-win-crt-math-l1-1-0.dll",
"norm": "api-ms-win-crt-math-l1-1-0.dll",
"normf": "api-ms-win-crt-math-l1-1-0.dll",
"norml": "api-ms-win-crt-math-l1-1-0.dll",
"pow": "api-ms-win-crt-math-l1-1-0.dll",
"powf": "api-ms-win-crt-math-l1-1-0.dll",
"remainder": "api-ms-win-crt-math-l1-1-0.dll",
"remainderf": "api-ms-win-crt-math-l1-1-0.dll",
"remainderl": "api-ms-win-crt-math-l1-1-0.dll",
"remquo": "api-ms-win-crt-math-l1-1-0.dll",
"remquof": "api-ms-win-crt-math-l1-1-0.dll",
"remquol": "api-ms-win-crt-math-l1-1-0.dll",
"rint": "api-ms-win-crt-math-l1-1-0.dll",
"rintf": "api-ms-win-crt-math-l1-1-0.dll",
"rintl": "api-ms-win-crt-math-l1-1-0.dll",
"round": "api-ms-win-crt-math-l1-1-0.dll",
"roundf": "api-ms-win-crt-math-l1-1-0.dll",
"roundl": "api-ms-win-crt-math-l1-1-0.dll",
"scalbln": "api-ms-win-crt-math-l1-1-0.dll",
"scalblnf": "api-ms-win-crt-math-l1-1-0.dll",
"scalblnl": "api-ms-win-crt-math-l1-1-0.dll",
"scalbn": "api-ms-win-crt-math-l1-1-0.dll",
"scalbnf": "api-ms-win-crt-math-l1-1-0.dll",
"scalbnl": "api-ms-win-crt-math-l1-1-0.dll",
"sin": "api-ms-win-crt-math-l1-1-0.dll",
"sinf": "api-ms-win-crt-math-l1-1-0.dll",
"sinh": "api-ms-win-crt-math-l1-1-0.dll",
"sinhf": "api-ms-win-crt-math-l1-1-0.dll",
"sqrt": "api-ms-win-crt-math-l1-1-0.dll",
"sqrtf": "api-ms-win-crt-math-l1-1-0.dll",
"tan": "api-ms-win-crt-math-l1-1-0.dll",
"tanf": "api-ms-win-crt-math-l1-1-0.dll",
"tanh": "api-ms-win-crt-math-l1-1-0.dll",
"tanhf": "api-ms-win-crt-math-l1-1-0.dll",
"tgamma": "api-ms-win-crt-math-l1-1-0.dll",
"tgammaf": "api-ms-win-crt-math-l1-1-0.dll",
"tgammal": "api-ms-win-crt-math-l1-1-0.dll",
"trunc": "api-ms-win-crt-math-l1-1-0.dll",
"truncf": "api-ms-win-crt-math-l1-1-0.dll",
"truncl": "api-ms-win-crt-math-l1-1-0.dll",
"__p__mbcasemap": "api-ms-win-crt-multibyte-l1-1-0.dll",
"__p__mbctype": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbalnum": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbalnum_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbalpha": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbalpha_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbblank": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbblank_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbgraph": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbgraph_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbkalnum": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbkalnum_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbkana": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbkana_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbkprint": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbkprint_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbkpunct": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbkpunct_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbblead": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbblead_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbprint": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbprint_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbpunct": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbpunct_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbtrail": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbbtrail_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcalnum": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcalnum_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcalpha": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcalpha_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcblank": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcblank_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcdigit": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcdigit_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcgraph": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcgraph_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbchira": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbchira_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbckata": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbckata_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcl0": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcl0_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcl1": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcl1_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcl2": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcl2_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbclegal": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbclegal_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbclower": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbclower_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcprint": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcprint_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcpunct": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcpunct_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcspace": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcspace_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcsymbol": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcsymbol_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcupper": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbcupper_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbslead": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbslead_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbstrail": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_ismbstrail_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbbtombc": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbbtombc_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbbtype": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbbtype_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbcasemap": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbccpy": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbccpy_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbccpy_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbccpy_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbcjistojms": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbcjistojms_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbcjmstojis": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbcjmstojis_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbclen": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbclen_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctohira": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctohira_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctokata": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctokata_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctolower": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctolower_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctombb": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctombb_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctoupper": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbctoupper_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mblen_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsbtype": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsbtype_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscat_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscat_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbschr": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbschr_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscmp": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscmp_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscoll": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscoll_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscpy_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscpy_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscspn": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbscspn_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsdec": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsdec_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsdup": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsicmp": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsicmp_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsicoll": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsicoll_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsinc": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsinc_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbslen": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbslen_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbslwr": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbslwr_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbslwr_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbslwr_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcat": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcat_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcat_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcat_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcmp": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcmp_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcnt": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcnt_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcoll": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcoll_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcpy": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcpy_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcpy_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbcpy_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbicmp": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbicmp_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbicoll": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbicoll_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbset": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbset_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbset_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnbset_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncat": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncat_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncat_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncat_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnccnt": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnccnt_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncmp": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncmp_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncoll": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncoll_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncpy": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncpy_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncpy_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsncpy_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnextc": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnextc_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnicmp": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnicmp_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnicoll": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnicoll_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsninc": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsninc_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnlen": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnlen_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnset": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnset_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnset_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsnset_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbspbrk": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbspbrk_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsrchr": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsrchr_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsrev": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsrev_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsset": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsset_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsset_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsset_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsspn": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsspn_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsspnp": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsspnp_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsstr": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsstr_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstok": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstok_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstok_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstok_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstowcs_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstowcs_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstrlen": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstrlen_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstrnlen": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbstrnlen_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsupr": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsupr_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsupr_s": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbsupr_s_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_mbtowc_l": "api-ms-win-crt-multibyte-l1-1-0.dll",
"_CreateFrameInfo": "api-ms-win-crt-private-l1-1-0.dll",
"_CxxThrowException": "api-ms-win-crt-private-l1-1-0.dll",
"_FindAndUnlinkFrame": "api-ms-win-crt-private-l1-1-0.dll",
"_GetImageBase": "api-ms-win-crt-private-l1-1-0.dll",
"_GetThrowImageBase": "api-ms-win-crt-private-l1-1-0.dll",
"_IsExceptionObjectToBeDestroyed": "api-ms-win-crt-private-l1-1-0.dll",
"_SetImageBase": "api-ms-win-crt-private-l1-1-0.dll",
"_SetThrowImageBase": "api-ms-win-crt-private-l1-1-0.dll",
"_SetWinRTOutOfMemoryExceptionCallback": "api-ms-win-crt-private-l1-1-0.dll",
"__AdjustPointer": "api-ms-win-crt-private-l1-1-0.dll",
"__BuildCatchObject": "api-ms-win-crt-private-l1-1-0.dll",
"__BuildCatchObjectHelper": "api-ms-win-crt-private-l1-1-0.dll",
"__C_specific_handler": "api-ms-win-crt-private-l1-1-0.dll",
"__C_specific_handler_noexcept": "api-ms-win-crt-private-l1-1-0.dll",
"__CxxDetectRethrow": "api-ms-win-crt-private-l1-1-0.dll",
"__CxxExceptionFilter": "api-ms-win-crt-private-l1-1-0.dll",
"__CxxFrameHandler": "api-ms-win-crt-private-l1-1-0.dll",
"__CxxFrameHandler2": "api-ms-win-crt-private-l1-1-0.dll",
"__CxxFrameHandler3": "api-ms-win-crt-private-l1-1-0.dll",
"__CxxFrameHandler4": "api-ms-win-crt-private-l1-1-0.dll",
"__CxxQueryExceptionSize": "api-ms-win-crt-private-l1-1-0.dll",
"__CxxRegisterExceptionObject": "api-ms-win-crt-private-l1-1-0.dll",
"__CxxUnregisterExceptionObject": "api-ms-win-crt-private-l1-1-0.dll",
"__DestructExceptionObject": "api-ms-win-crt-private-l1-1-0.dll",
"__FrameUnwindFilter": "api-ms-win-crt-private-l1-1-0.dll",
"__GetPlatformExceptionInfo": "api-ms-win-crt-private-l1-1-0.dll",
"__NLG_Dispatch2": "api-ms-win-crt-private-l1-1-0.dll",
"__NLG_Return2": "api-ms-win-crt-private-l1-1-0.dll",
"__RTCastToVoid": "api-ms-win-crt-private-l1-1-0.dll",
"__RTDynamicCast": "api-ms-win-crt-private-l1-1-0.dll",
"__RTtypeid": "api-ms-win-crt-private-l1-1-0.dll",
"__TypeMatch": "api-ms-win-crt-private-l1-1-0.dll",
"__current_exception": "api-ms-win-crt-private-l1-1-0.dll",
"__current_exception_context": "api-ms-win-crt-private-l1-1-0.dll",
"__dcrt_get_wide_environment_from_os": "api-ms-win-crt-private-l1-1-0.dll",
"__dcrt_initial_narrow_environment": "api-ms-win-crt-private-l1-1-0.dll",
"__intrinsic_setjmp": "api-ms-win-crt-private-l1-1-0.dll",
"__intrinsic_setjmpex": "api-ms-win-crt-private-l1-1-0.dll",
"__processing_throw": "api-ms-win-crt-private-l1-1-0.dll",
"__report_gsfailure": "api-ms-win-crt-private-l1-1-0.dll",
"__std_exception_copy": "api-ms-win-crt-private-l1-1-0.dll",
"__std_exception_destroy": "api-ms-win-crt-private-l1-1-0.dll",
"__std_terminate": "api-ms-win-crt-private-l1-1-0.dll",
"__std_type_info_compare": "api-ms-win-crt-private-l1-1-0.dll",
"__std_type_info_destroy_list": "api-ms-win-crt-private-l1-1-0.dll",
"__std_type_info_hash": "api-ms-win-crt-private-l1-1-0.dll",
"__std_type_info_name": "api-ms-win-crt-private-l1-1-0.dll",
"__unDName": "api-ms-win-crt-private-l1-1-0.dll",
"__unDNameEx": "api-ms-win-crt-private-l1-1-0.dll",
"__uncaught_exception": "api-ms-win-crt-private-l1-1-0.dll",
"__uncaught_exceptions": "api-ms-win-crt-private-l1-1-0.dll",
"_get_purecall_handler": "api-ms-win-crt-private-l1-1-0.dll",
"_get_unexpected": "api-ms-win-crt-private-l1-1-0.dll",
"_is_exception_typeof": "api-ms-win-crt-private-l1-1-0.dll",
"_local_unwind": "api-ms-win-crt-private-l1-1-0.dll",
"_o__Getdays": "api-ms-win-crt-private-l1-1-0.dll",
"_o__Getmonths": "api-ms-win-crt-private-l1-1-0.dll",
"_o__Gettnames": "api-ms-win-crt-private-l1-1-0.dll",
"_o__Strftime": "api-ms-win-crt-private-l1-1-0.dll",
"_o__W_Getdays": "api-ms-win-crt-private-l1-1-0.dll",
"_o__W_Getmonths": "api-ms-win-crt-private-l1-1-0.dll",
"_o__W_Gettnames": "api-ms-win-crt-private-l1-1-0.dll",
"_o__Wcsftime": "api-ms-win-crt-private-l1-1-0.dll",
"_o____lc_codepage_func": "api-ms-win-crt-private-l1-1-0.dll",
"_o____lc_collate_cp_func": "api-ms-win-crt-private-l1-1-0.dll",
"_o____lc_locale_name_func": "api-ms-win-crt-private-l1-1-0.dll",
"_o____mb_cur_max_func": "api-ms-win-crt-private-l1-1-0.dll",
"_o___acrt_iob_func": "api-ms-win-crt-private-l1-1-0.dll",
"_o___conio_common_vcprintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___conio_common_vcprintf_p": "api-ms-win-crt-private-l1-1-0.dll",
"_o___conio_common_vcprintf_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o___conio_common_vcscanf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___conio_common_vcwprintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___conio_common_vcwprintf_p": "api-ms-win-crt-private-l1-1-0.dll",
"_o___conio_common_vcwprintf_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o___conio_common_vcwscanf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___daylight": "api-ms-win-crt-private-l1-1-0.dll",
"_o___dstbias": "api-ms-win-crt-private-l1-1-0.dll",
"_o___fpe_flt_rounds": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p___argc": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p___argv": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p___wargv": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__acmdln": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__commode": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__environ": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__fmode": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__mbcasemap": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__mbctype": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__pgmptr": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__wcmdln": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__wenviron": "api-ms-win-crt-private-l1-1-0.dll",
"_o___p__wpgmptr": "api-ms-win-crt-private-l1-1-0.dll",
"_o___pctype_func": "api-ms-win-crt-private-l1-1-0.dll",
"_o___pwctype_func": "api-ms-win-crt-private-l1-1-0.dll",
"_o___std_exception_copy": "api-ms-win-crt-private-l1-1-0.dll",
"_o___std_exception_destroy": "api-ms-win-crt-private-l1-1-0.dll",
"_o___std_type_info_destroy_list": "api-ms-win-crt-private-l1-1-0.dll",
"_o___std_type_info_name": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vfprintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vfprintf_p": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vfprintf_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vfscanf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vfwprintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vfwprintf_p": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vfwprintf_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vfwscanf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vsnprintf_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vsnwprintf_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vsprintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vsprintf_p": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vsprintf_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vsscanf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vswprintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vswprintf_p": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vswprintf_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o___stdio_common_vswscanf": "api-ms-win-crt-private-l1-1-0.dll",
"_o___timezone": "api-ms-win-crt-private-l1-1-0.dll",
"_o___tzname": "api-ms-win-crt-private-l1-1-0.dll",
"_o___wcserror": "api-ms-win-crt-private-l1-1-0.dll",
"_o__access": "api-ms-win-crt-private-l1-1-0.dll",
"_o__access_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__aligned_free": "api-ms-win-crt-private-l1-1-0.dll",
"_o__aligned_malloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__aligned_msize": "api-ms-win-crt-private-l1-1-0.dll",
"_o__aligned_offset_malloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__aligned_offset_realloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__aligned_offset_recalloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__aligned_realloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__aligned_recalloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atodbl": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atodbl_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atof_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atoflt": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atoflt_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atoi64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atoi64_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atoi_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atol_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atoldbl": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atoldbl_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__atoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__beep": "api-ms-win-crt-private-l1-1-0.dll",
"_o__beginthread": "api-ms-win-crt-private-l1-1-0.dll",
"_o__beginthreadex": "api-ms-win-crt-private-l1-1-0.dll",
"_o__cabs": "api-ms-win-crt-private-l1-1-0.dll",
"_o__callnewh": "api-ms-win-crt-private-l1-1-0.dll",
"_o__calloc_base": "api-ms-win-crt-private-l1-1-0.dll",
"_o__cexit": "api-ms-win-crt-private-l1-1-0.dll",
"_o__cgets": "api-ms-win-crt-private-l1-1-0.dll",
"_o__cgets_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__cgetws": "api-ms-win-crt-private-l1-1-0.dll",
"_o__cgetws_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__chdir": "api-ms-win-crt-private-l1-1-0.dll",
"_o__chdrive": "api-ms-win-crt-private-l1-1-0.dll",
"_o__chmod": "api-ms-win-crt-private-l1-1-0.dll",
"_o__chsize": "api-ms-win-crt-private-l1-1-0.dll",
"_o__chsize_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__close": "api-ms-win-crt-private-l1-1-0.dll",
"_o__commit": "api-ms-win-crt-private-l1-1-0.dll",
"_o__configthreadlocale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__configure_narrow_argv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__configure_wide_argv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__controlfp_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__cputs": "api-ms-win-crt-private-l1-1-0.dll",
"_o__cputws": "api-ms-win-crt-private-l1-1-0.dll",
"_o__creat": "api-ms-win-crt-private-l1-1-0.dll",
"_o__create_locale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__crt_atexit": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ctime32_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ctime64_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__cwait": "api-ms-win-crt-private-l1-1-0.dll",
"_o__d_int": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dclass": "api-ms-win-crt-private-l1-1-0.dll",
"_o__difftime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__difftime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dlog": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dnorm": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dpcomp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dpoly": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dscale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dsign": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dsin": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dtest": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dunscale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dup": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dup2": "api-ms-win-crt-private-l1-1-0.dll",
"_o__dupenv_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ecvt": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ecvt_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__endthread": "api-ms-win-crt-private-l1-1-0.dll",
"_o__endthreadex": "api-ms-win-crt-private-l1-1-0.dll",
"_o__eof": "api-ms-win-crt-private-l1-1-0.dll",
"_o__errno": "api-ms-win-crt-private-l1-1-0.dll",
"_o__except1": "api-ms-win-crt-private-l1-1-0.dll",
"_o__execute_onexit_table": "api-ms-win-crt-private-l1-1-0.dll",
"_o__execv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__execve": "api-ms-win-crt-private-l1-1-0.dll",
"_o__execvp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__execvpe": "api-ms-win-crt-private-l1-1-0.dll",
"_o__exit": "api-ms-win-crt-private-l1-1-0.dll",
"_o__expand": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fclose_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fcloseall": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fcvt": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fcvt_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fd_int": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fdclass": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fdexp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fdlog": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fdopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fdpcomp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fdpoly": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fdscale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fdsign": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fdsin": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fflush_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fgetc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fgetchar": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fgetwc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fgetwchar": "api-ms-win-crt-private-l1-1-0.dll",
"_o__filelength": "api-ms-win-crt-private-l1-1-0.dll",
"_o__filelengthi64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fileno": "api-ms-win-crt-private-l1-1-0.dll",
"_o__findclose": "api-ms-win-crt-private-l1-1-0.dll",
"_o__findfirst32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__findfirst32i64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__findfirst64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__findfirst64i32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__findnext32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__findnext32i64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__findnext64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__findnext64i32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__flushall": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fpclass": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fpclassf": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fputc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fputchar": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fputwc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fputwchar": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fread_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fread_nolock_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__free_base": "api-ms-win-crt-private-l1-1-0.dll",
"_o__free_locale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fseek_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fseeki64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fseeki64_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fsopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fstat32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fstat32i64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fstat64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fstat64i32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ftell_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ftelli64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ftelli64_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ftime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ftime32_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ftime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ftime64_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fullpath": "api-ms-win-crt-private-l1-1-0.dll",
"_o__futime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__futime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__fwrite_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__gcvt": "api-ms-win-crt-private-l1-1-0.dll",
"_o__gcvt_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_daylight": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_doserrno": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_dstbias": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_errno": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_fmode": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_heap_handle": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_initial_narrow_environment": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_initial_wide_environment": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_invalid_parameter_handler": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_narrow_winmain_command_line": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_osfhandle": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_pgmptr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_stream_buffer_pointers": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_terminate": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_thread_local_invalid_parameter_handler": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_timezone": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_tzname": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_wide_winmain_command_line": "api-ms-win-crt-private-l1-1-0.dll",
"_o__get_wpgmptr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getch": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getch_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getche": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getche_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getcwd": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getdcwd": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getdiskfree": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getdllprocaddr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getdrive": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getdrives": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getmbcp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getsystime": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getw": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getwc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getwch": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getwch_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getwche": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getwche_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getws": "api-ms-win-crt-private-l1-1-0.dll",
"_o__getws_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__gmtime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__gmtime32_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__gmtime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__gmtime64_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__heapchk": "api-ms-win-crt-private-l1-1-0.dll",
"_o__heapmin": "api-ms-win-crt-private-l1-1-0.dll",
"_o__hypot": "api-ms-win-crt-private-l1-1-0.dll",
"_o__hypotf": "api-ms-win-crt-private-l1-1-0.dll",
"_o__i64toa": "api-ms-win-crt-private-l1-1-0.dll",
"_o__i64toa_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__i64tow": "api-ms-win-crt-private-l1-1-0.dll",
"_o__i64tow_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__initialize_narrow_environment": "api-ms-win-crt-private-l1-1-0.dll",
"_o__initialize_onexit_table": "api-ms-win-crt-private-l1-1-0.dll",
"_o__initialize_wide_environment": "api-ms-win-crt-private-l1-1-0.dll",
"_o__invalid_parameter_noinfo": "api-ms-win-crt-private-l1-1-0.dll",
"_o__invalid_parameter_noinfo_noreturn": "api-ms-win-crt-private-l1-1-0.dll",
"_o__isatty": "api-ms-win-crt-private-l1-1-0.dll",
"_o__isctype": "api-ms-win-crt-private-l1-1-0.dll",
"_o__isctype_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__isleadbyte_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbalnum": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbalnum_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbalpha": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbalpha_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbblank": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbblank_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbgraph": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbgraph_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbkalnum": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbkalnum_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbkana": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbkana_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbkprint": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbkprint_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbkpunct": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbkpunct_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbblead": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbblead_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbprint": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbprint_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbpunct": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbpunct_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbtrail": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbbtrail_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcalnum": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcalnum_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcalpha": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcalpha_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcblank": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcblank_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcdigit": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcdigit_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcgraph": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcgraph_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbchira": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbchira_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbckata": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbckata_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcl0": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcl0_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcl1": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcl1_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcl2": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcl2_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbclegal": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbclegal_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbclower": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbclower_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcprint": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcprint_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcpunct": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcpunct_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcspace": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcspace_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcsymbol": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcsymbol_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcupper": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbcupper_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbslead": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbslead_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbstrail": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ismbstrail_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__iswctype_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__itoa": "api-ms-win-crt-private-l1-1-0.dll",
"_o__itoa_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__itow": "api-ms-win-crt-private-l1-1-0.dll",
"_o__itow_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__j0": "api-ms-win-crt-private-l1-1-0.dll",
"_o__j1": "api-ms-win-crt-private-l1-1-0.dll",
"_o__jn": "api-ms-win-crt-private-l1-1-0.dll",
"_o__kbhit": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ld_int": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldclass": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldexp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldlog": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldpcomp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldpoly": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldscale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldsign": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldsin": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldtest": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ldunscale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__lfind": "api-ms-win-crt-private-l1-1-0.dll",
"_o__lfind_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__loaddll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__localtime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__localtime32_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__localtime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__localtime64_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__lock_file": "api-ms-win-crt-private-l1-1-0.dll",
"_o__locking": "api-ms-win-crt-private-l1-1-0.dll",
"_o__logb": "api-ms-win-crt-private-l1-1-0.dll",
"_o__logbf": "api-ms-win-crt-private-l1-1-0.dll",
"_o__lsearch": "api-ms-win-crt-private-l1-1-0.dll",
"_o__lsearch_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__lseek": "api-ms-win-crt-private-l1-1-0.dll",
"_o__lseeki64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ltoa": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ltoa_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ltow": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ltow_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__makepath": "api-ms-win-crt-private-l1-1-0.dll",
"_o__makepath_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__malloc_base": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbbtombc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbbtombc_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbbtype": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbbtype_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbccpy": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbccpy_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbccpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbccpy_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbcjistojms": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbcjistojms_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbcjmstojis": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbcjmstojis_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbclen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbclen_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctohira": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctohira_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctokata": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctokata_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctolower": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctolower_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctombb": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctombb_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctoupper": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbctoupper_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mblen_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsbtype": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsbtype_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscat_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscat_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbschr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbschr_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscpy_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscspn": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbscspn_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsdec": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsdec_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsicmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsicmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsicoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsicoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsinc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsinc_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbslen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbslen_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbslwr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbslwr_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbslwr_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbslwr_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcat": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcat_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcat_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcat_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcnt": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcnt_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcpy": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcpy_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbcpy_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbicmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbicmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbicoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbicoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbset": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbset_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbset_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnbset_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncat": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncat_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncat_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncat_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnccnt": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnccnt_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncpy": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncpy_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsncpy_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnextc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnextc_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnicmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnicmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnicoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnicoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsninc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsninc_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnlen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnlen_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnset": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnset_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnset_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsnset_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbspbrk": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbspbrk_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsrchr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsrchr_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsrev": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsrev_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsset": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsset_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsset_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsset_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsspn": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsspn_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsspnp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsspnp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsstr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsstr_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstok": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstok_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstok_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstok_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstowcs_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstowcs_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstrlen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstrlen_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstrnlen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbstrnlen_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsupr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsupr_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsupr_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbsupr_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mbtowc_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__memicmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__memicmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mkdir": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mkgmtime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mkgmtime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mktemp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mktemp_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mktime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__mktime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__msize": "api-ms-win-crt-private-l1-1-0.dll",
"_o__nextafter": "api-ms-win-crt-private-l1-1-0.dll",
"_o__nextafterf": "api-ms-win-crt-private-l1-1-0.dll",
"_o__open_osfhandle": "api-ms-win-crt-private-l1-1-0.dll",
"_o__pclose": "api-ms-win-crt-private-l1-1-0.dll",
"_o__pipe": "api-ms-win-crt-private-l1-1-0.dll",
"_o__popen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__purecall": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putch": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putch_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putenv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putenv_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putw": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putwc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putwch": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putwch_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__putws": "api-ms-win-crt-private-l1-1-0.dll",
"_o__read": "api-ms-win-crt-private-l1-1-0.dll",
"_o__realloc_base": "api-ms-win-crt-private-l1-1-0.dll",
"_o__recalloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o__register_onexit_function": "api-ms-win-crt-private-l1-1-0.dll",
"_o__resetstkoflw": "api-ms-win-crt-private-l1-1-0.dll",
"_o__rmdir": "api-ms-win-crt-private-l1-1-0.dll",
"_o__rmtmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__scalb": "api-ms-win-crt-private-l1-1-0.dll",
"_o__scalbf": "api-ms-win-crt-private-l1-1-0.dll",
"_o__searchenv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__searchenv_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__seh_filter_dll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__seh_filter_exe": "api-ms-win-crt-private-l1-1-0.dll",
"_o__set_abort_behavior": "api-ms-win-crt-private-l1-1-0.dll",
"_o__set_app_type": "api-ms-win-crt-private-l1-1-0.dll",
"_o__set_doserrno": "api-ms-win-crt-private-l1-1-0.dll",
"_o__set_errno": "api-ms-win-crt-private-l1-1-0.dll",
"_o__set_fmode": "api-ms-win-crt-private-l1-1-0.dll",
"_o__set_invalid_parameter_handler": "api-ms-win-crt-private-l1-1-0.dll",
"_o__set_new_handler": "api-ms-win-crt-private-l1-1-0.dll",
"_o__set_new_mode": "api-ms-win-crt-private-l1-1-0.dll",
"_o__set_thread_local_invalid_parameter_handler": "api-ms-win-crt-private-l1-1-0.dll",
"_o__seterrormode": "api-ms-win-crt-private-l1-1-0.dll",
"_o__setmbcp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__setmode": "api-ms-win-crt-private-l1-1-0.dll",
"_o__setsystime": "api-ms-win-crt-private-l1-1-0.dll",
"_o__sleep": "api-ms-win-crt-private-l1-1-0.dll",
"_o__sopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__sopen_dispatch": "api-ms-win-crt-private-l1-1-0.dll",
"_o__sopen_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__spawnv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__spawnve": "api-ms-win-crt-private-l1-1-0.dll",
"_o__spawnvp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__spawnvpe": "api-ms-win-crt-private-l1-1-0.dll",
"_o__splitpath": "api-ms-win-crt-private-l1-1-0.dll",
"_o__splitpath_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__stat32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__stat32i64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__stat64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__stat64i32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strcoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strdate": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strdate_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strdup": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strerror": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strerror_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strftime_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__stricmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__stricmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__stricoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__stricoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strlwr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strlwr_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strlwr_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strlwr_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strncoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strncoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strnicmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strnicmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strnicoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strnicoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strnset_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strset_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtime": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtime_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtod_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtof_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtoi64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtoi64_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtol_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtold_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtoui64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtoui64_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtoul_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strtoull_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strupr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strupr_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strupr_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strupr_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__strxfrm_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__swab": "api-ms-win-crt-private-l1-1-0.dll",
"_o__tell": "api-ms-win-crt-private-l1-1-0.dll",
"_o__telli64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__timespec32_get": "api-ms-win-crt-private-l1-1-0.dll",
"_o__timespec64_get": "api-ms-win-crt-private-l1-1-0.dll",
"_o__tolower": "api-ms-win-crt-private-l1-1-0.dll",
"_o__tolower_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__toupper": "api-ms-win-crt-private-l1-1-0.dll",
"_o__toupper_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__towlower_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__towupper_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__tzset": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ui64toa": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ui64toa_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ui64tow": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ui64tow_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ultoa": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ultoa_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ultow": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ultow_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__umask": "api-ms-win-crt-private-l1-1-0.dll",
"_o__umask_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ungetc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ungetch": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ungetch_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ungetwc_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ungetwch": "api-ms-win-crt-private-l1-1-0.dll",
"_o__ungetwch_nolock": "api-ms-win-crt-private-l1-1-0.dll",
"_o__unlink": "api-ms-win-crt-private-l1-1-0.dll",
"_o__unloaddll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__unlock_file": "api-ms-win-crt-private-l1-1-0.dll",
"_o__utime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__utime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__waccess": "api-ms-win-crt-private-l1-1-0.dll",
"_o__waccess_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wasctime": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wasctime_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wchdir": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wchmod": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcreat": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcreate_locale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcscoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsdup": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcserror": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcserror_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsftime_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsicmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsicmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsicoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsicoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcslwr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcslwr_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcslwr_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcslwr_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsncoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsncoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsnicmp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsnicmp_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsnicoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsnicoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsnset": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsnset_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsset": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsset_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstod_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstof_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstoi64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstoi64_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstol_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstold_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstombs_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstombs_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstoui64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstoui64_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstoul_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcstoull_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsupr": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsupr_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsupr_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsupr_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wcsxfrm_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wctime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wctime32_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wctime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wctime64_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wctomb_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wctomb_s_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wdupenv_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wexecv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wexecve": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wexecvp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wexecvpe": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfdopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfindfirst32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfindfirst32i64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfindfirst64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfindfirst64i32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfindnext32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfindnext32i64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfindnext64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfindnext64i32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfopen_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfreopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfreopen_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfsopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wfullpath": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wgetcwd": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wgetdcwd": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wgetenv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wgetenv_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wmakepath": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wmakepath_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wmkdir": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wmktemp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wmktemp_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wperror": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wpopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wputenv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wputenv_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wremove": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wrename": "api-ms-win-crt-private-l1-1-0.dll",
"_o__write": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wrmdir": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wsearchenv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wsearchenv_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wsetlocale": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wsopen_dispatch": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wsopen_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wspawnv": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wspawnve": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wspawnvp": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wspawnvpe": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wsplitpath": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wsplitpath_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wstat32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wstat32i64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wstat64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wstat64i32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wstrdate": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wstrdate_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wstrtime": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wstrtime_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wsystem": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtmpnam_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtof": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtof_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtoi": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtoi64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtoi64_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtoi_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtol": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtol_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wtoll_l": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wunlink": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wutime32": "api-ms-win-crt-private-l1-1-0.dll",
"_o__wutime64": "api-ms-win-crt-private-l1-1-0.dll",
"_o__y0": "api-ms-win-crt-private-l1-1-0.dll",
"_o__y1": "api-ms-win-crt-private-l1-1-0.dll",
"_o__yn": "api-ms-win-crt-private-l1-1-0.dll",
"_o_abort": "api-ms-win-crt-private-l1-1-0.dll",
"_o_acos": "api-ms-win-crt-private-l1-1-0.dll",
"_o_acosf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_acosh": "api-ms-win-crt-private-l1-1-0.dll",
"_o_acoshf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_acoshl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_asctime": "api-ms-win-crt-private-l1-1-0.dll",
"_o_asctime_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_asin": "api-ms-win-crt-private-l1-1-0.dll",
"_o_asinf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_asinh": "api-ms-win-crt-private-l1-1-0.dll",
"_o_asinhf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_asinhl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atan": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atan2": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atan2f": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atanf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atanh": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atanhf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atanhl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atof": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atoi": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atol": "api-ms-win-crt-private-l1-1-0.dll",
"_o_atoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o_bsearch": "api-ms-win-crt-private-l1-1-0.dll",
"_o_bsearch_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_btowc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_calloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_cbrt": "api-ms-win-crt-private-l1-1-0.dll",
"_o_cbrtf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_ceil": "api-ms-win-crt-private-l1-1-0.dll",
"_o_ceilf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_clearerr": "api-ms-win-crt-private-l1-1-0.dll",
"_o_clearerr_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_cos": "api-ms-win-crt-private-l1-1-0.dll",
"_o_cosf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_cosh": "api-ms-win-crt-private-l1-1-0.dll",
"_o_coshf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_erf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_erfc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_erfcf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_erfcl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_erff": "api-ms-win-crt-private-l1-1-0.dll",
"_o_erfl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_exit": "api-ms-win-crt-private-l1-1-0.dll",
"_o_exp": "api-ms-win-crt-private-l1-1-0.dll",
"_o_exp2": "api-ms-win-crt-private-l1-1-0.dll",
"_o_exp2f": "api-ms-win-crt-private-l1-1-0.dll",
"_o_exp2l": "api-ms-win-crt-private-l1-1-0.dll",
"_o_expf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fabs": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fabsf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fclose": "api-ms-win-crt-private-l1-1-0.dll",
"_o_feof": "api-ms-win-crt-private-l1-1-0.dll",
"_o_ferror": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fflush": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fgetc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fgetpos": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fgets": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fgetwc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fgetws": "api-ms-win-crt-private-l1-1-0.dll",
"_o_floor": "api-ms-win-crt-private-l1-1-0.dll",
"_o_floorf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fma": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fmaf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fmal": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fmod": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fmodf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fopen_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fputc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fputs": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fputwc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fputws": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fread": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fread_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_free": "api-ms-win-crt-private-l1-1-0.dll",
"_o_freopen": "api-ms-win-crt-private-l1-1-0.dll",
"_o_freopen_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_frexp": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fseek": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fsetpos": "api-ms-win-crt-private-l1-1-0.dll",
"_o_ftell": "api-ms-win-crt-private-l1-1-0.dll",
"_o_fwrite": "api-ms-win-crt-private-l1-1-0.dll",
"_o_getc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_getchar": "api-ms-win-crt-private-l1-1-0.dll",
"_o_getenv": "api-ms-win-crt-private-l1-1-0.dll",
"_o_getenv_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_gets": "api-ms-win-crt-private-l1-1-0.dll",
"_o_gets_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_getwc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_getwchar": "api-ms-win-crt-private-l1-1-0.dll",
"_o_hypot": "api-ms-win-crt-private-l1-1-0.dll",
"_o_is_wctype": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isalnum": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isalpha": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isblank": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iscntrl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isdigit": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isgraph": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isleadbyte": "api-ms-win-crt-private-l1-1-0.dll",
"_o_islower": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isprint": "api-ms-win-crt-private-l1-1-0.dll",
"_o_ispunct": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isspace": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isupper": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswalnum": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswalpha": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswascii": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswblank": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswcntrl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswctype": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswdigit": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswgraph": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswlower": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswprint": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswpunct": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswspace": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswupper": "api-ms-win-crt-private-l1-1-0.dll",
"_o_iswxdigit": "api-ms-win-crt-private-l1-1-0.dll",
"_o_isxdigit": "api-ms-win-crt-private-l1-1-0.dll",
"_o_ldexp": "api-ms-win-crt-private-l1-1-0.dll",
"_o_lgamma": "api-ms-win-crt-private-l1-1-0.dll",
"_o_lgammaf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_lgammal": "api-ms-win-crt-private-l1-1-0.dll",
"_o_llrint": "api-ms-win-crt-private-l1-1-0.dll",
"_o_llrintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_llrintl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_llround": "api-ms-win-crt-private-l1-1-0.dll",
"_o_llroundf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_llroundl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_localeconv": "api-ms-win-crt-private-l1-1-0.dll",
"_o_log": "api-ms-win-crt-private-l1-1-0.dll",
"_o_log10": "api-ms-win-crt-private-l1-1-0.dll",
"_o_log10f": "api-ms-win-crt-private-l1-1-0.dll",
"_o_log1p": "api-ms-win-crt-private-l1-1-0.dll",
"_o_log1pf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_log1pl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_log2": "api-ms-win-crt-private-l1-1-0.dll",
"_o_log2f": "api-ms-win-crt-private-l1-1-0.dll",
"_o_log2l": "api-ms-win-crt-private-l1-1-0.dll",
"_o_logb": "api-ms-win-crt-private-l1-1-0.dll",
"_o_logbf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_logbl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_logf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_lrint": "api-ms-win-crt-private-l1-1-0.dll",
"_o_lrintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_lrintl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_lround": "api-ms-win-crt-private-l1-1-0.dll",
"_o_lroundf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_lroundl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_malloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mblen": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mbrlen": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mbrtoc16": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mbrtoc32": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mbrtowc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mbsrtowcs": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mbsrtowcs_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mbstowcs": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mbstowcs_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_mbtowc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_memcpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_memset": "api-ms-win-crt-private-l1-1-0.dll",
"_o_modf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_modff": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nan": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nanf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nanl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nearbyint": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nearbyintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nearbyintl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nextafter": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nextafterf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nextafterl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nexttoward": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nexttowardf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_nexttowardl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_pow": "api-ms-win-crt-private-l1-1-0.dll",
"_o_powf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_putc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_putchar": "api-ms-win-crt-private-l1-1-0.dll",
"_o_puts": "api-ms-win-crt-private-l1-1-0.dll",
"_o_putwc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_putwchar": "api-ms-win-crt-private-l1-1-0.dll",
"_o_qsort": "api-ms-win-crt-private-l1-1-0.dll",
"_o_qsort_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_raise": "api-ms-win-crt-private-l1-1-0.dll",
"_o_rand": "api-ms-win-crt-private-l1-1-0.dll",
"_o_rand_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_realloc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_remainder": "api-ms-win-crt-private-l1-1-0.dll",
"_o_remainderf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_remainderl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_remove": "api-ms-win-crt-private-l1-1-0.dll",
"_o_remquo": "api-ms-win-crt-private-l1-1-0.dll",
"_o_remquof": "api-ms-win-crt-private-l1-1-0.dll",
"_o_remquol": "api-ms-win-crt-private-l1-1-0.dll",
"_o_rename": "api-ms-win-crt-private-l1-1-0.dll",
"_o_rewind": "api-ms-win-crt-private-l1-1-0.dll",
"_o_rint": "api-ms-win-crt-private-l1-1-0.dll",
"_o_rintf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_rintl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_round": "api-ms-win-crt-private-l1-1-0.dll",
"_o_roundf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_roundl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_scalbln": "api-ms-win-crt-private-l1-1-0.dll",
"_o_scalblnf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_scalblnl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_scalbn": "api-ms-win-crt-private-l1-1-0.dll",
"_o_scalbnf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_scalbnl": "api-ms-win-crt-private-l1-1-0.dll",
"_o_set_terminate": "api-ms-win-crt-private-l1-1-0.dll",
"_o_setbuf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_setlocale": "api-ms-win-crt-private-l1-1-0.dll",
"_o_setvbuf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_sin": "api-ms-win-crt-private-l1-1-0.dll",
"_o_sinf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_sinh": "api-ms-win-crt-private-l1-1-0.dll",
"_o_sinhf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_sqrt": "api-ms-win-crt-private-l1-1-0.dll",
"_o_sqrtf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_srand": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strcat_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strcoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strcpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strerror": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strerror_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strftime": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strncat_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strncpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strtod": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strtof": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strtok": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strtok_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strtol": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strtold": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strtoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strtoul": "api-ms-win-crt-private-l1-1-0.dll",
"_o_strtoull": "api-ms-win-crt-private-l1-1-0.dll",
"_o_system": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tan": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tanf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tanh": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tanhf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_terminate": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tgamma": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tgammaf": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tgammal": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tmpfile_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tmpnam_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_tolower": "api-ms-win-crt-private-l1-1-0.dll",
"_o_toupper": "api-ms-win-crt-private-l1-1-0.dll",
"_o_towlower": "api-ms-win-crt-private-l1-1-0.dll",
"_o_towupper": "api-ms-win-crt-private-l1-1-0.dll",
"_o_ungetc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_ungetwc": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcrtomb": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcrtomb_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcscat_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcscoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcscpy": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcscpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcsftime": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcsncat_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcsncpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcsrtombs": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcsrtombs_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstod": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstof": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstok": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstok_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstol": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstold": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstoll": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstombs": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstombs_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstoul": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wcstoull": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wctob": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wctomb": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wctomb_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wmemcpy_s": "api-ms-win-crt-private-l1-1-0.dll",
"_o_wmemmove_s": "api-ms-win-crt-private-l1-1-0.dll",
"_purecall": "api-ms-win-crt-private-l1-1-0.dll",
"_set_purecall_handler": "api-ms-win-crt-private-l1-1-0.dll",
"_set_se_translator": "api-ms-win-crt-private-l1-1-0.dll",
"longjmp": "api-ms-win-crt-private-l1-1-0.dll",
"memchr": "api-ms-win-crt-private-l1-1-0.dll",
"memcmp": "api-ms-win-crt-private-l1-1-0.dll",
"memcpy": "api-ms-win-crt-private-l1-1-0.dll",
"memmove": "api-ms-win-crt-private-l1-1-0.dll",
"set_unexpected": "api-ms-win-crt-private-l1-1-0.dll",
"setjmp": "api-ms-win-crt-private-l1-1-0.dll",
"strchr": "api-ms-win-crt-private-l1-1-0.dll",
"strrchr": "api-ms-win-crt-private-l1-1-0.dll",
"strstr": "api-ms-win-crt-private-l1-1-0.dll",
"unexpected": "api-ms-win-crt-private-l1-1-0.dll",
"wcschr": "api-ms-win-crt-private-l1-1-0.dll",
"wcsrchr": "api-ms-win-crt-private-l1-1-0.dll",
"wcsstr": "api-ms-win-crt-private-l1-1-0.dll",
"_beep": "api-ms-win-crt-process-l1-1-0.dll",
"_cwait": "api-ms-win-crt-process-l1-1-0.dll",
"_execl": "api-ms-win-crt-process-l1-1-0.dll",
"_execle": "api-ms-win-crt-process-l1-1-0.dll",
"_execlp": "api-ms-win-crt-process-l1-1-0.dll",
"_execlpe": "api-ms-win-crt-process-l1-1-0.dll",
"_execv": "api-ms-win-crt-process-l1-1-0.dll",
"_execve": "api-ms-win-crt-process-l1-1-0.dll",
"_execvp": "api-ms-win-crt-process-l1-1-0.dll",
"_execvpe": "api-ms-win-crt-process-l1-1-0.dll",
"_loaddll": "api-ms-win-crt-process-l1-1-0.dll",
"_spawnl": "api-ms-win-crt-process-l1-1-0.dll",
"_spawnle": "api-ms-win-crt-process-l1-1-0.dll",
"_spawnlp": "api-ms-win-crt-process-l1-1-0.dll",
"_spawnlpe": "api-ms-win-crt-process-l1-1-0.dll",
"_spawnv": "api-ms-win-crt-process-l1-1-0.dll",
"_spawnve": "api-ms-win-crt-process-l1-1-0.dll",
"_spawnvp": "api-ms-win-crt-process-l1-1-0.dll",
"_spawnvpe": "api-ms-win-crt-process-l1-1-0.dll",
"_unloaddll": "api-ms-win-crt-process-l1-1-0.dll",
"_wexecl": "api-ms-win-crt-process-l1-1-0.dll",
"_wexecle": "api-ms-win-crt-process-l1-1-0.dll",
"_wexeclp": "api-ms-win-crt-process-l1-1-0.dll",
"_wexeclpe": "api-ms-win-crt-process-l1-1-0.dll",
"_wexecv": "api-ms-win-crt-process-l1-1-0.dll",
"_wexecve": "api-ms-win-crt-process-l1-1-0.dll",
"_wexecvp": "api-ms-win-crt-process-l1-1-0.dll",
"_wexecvpe": "api-ms-win-crt-process-l1-1-0.dll",
"_wspawnl": "api-ms-win-crt-process-l1-1-0.dll",
"_wspawnle": "api-ms-win-crt-process-l1-1-0.dll",
"_wspawnlp": "api-ms-win-crt-process-l1-1-0.dll",
"_wspawnlpe": "api-ms-win-crt-process-l1-1-0.dll",
"_wspawnv": "api-ms-win-crt-process-l1-1-0.dll",
"_wspawnve": "api-ms-win-crt-process-l1-1-0.dll",
"_wspawnvp": "api-ms-win-crt-process-l1-1-0.dll",
"_wspawnvpe": "api-ms-win-crt-process-l1-1-0.dll",
"_Exit": "api-ms-win-crt-runtime-l1-1-0.dll",
"__doserrno": "api-ms-win-crt-runtime-l1-1-0.dll",
"__fpe_flt_rounds": "api-ms-win-crt-runtime-l1-1-0.dll",
"__fpecode": "api-ms-win-crt-runtime-l1-1-0.dll",
"__p___argc": "api-ms-win-crt-runtime-l1-1-0.dll",
"__p___argv": "api-ms-win-crt-runtime-l1-1-0.dll",
"__p___wargv": "api-ms-win-crt-runtime-l1-1-0.dll",
"__p__acmdln": "api-ms-win-crt-runtime-l1-1-0.dll",
"__p__pgmptr": "api-ms-win-crt-runtime-l1-1-0.dll",
"__p__wcmdln": "api-ms-win-crt-runtime-l1-1-0.dll",
"__p__wpgmptr": "api-ms-win-crt-runtime-l1-1-0.dll",
"__pxcptinfoptrs": "api-ms-win-crt-runtime-l1-1-0.dll",
"__sys_errlist": "api-ms-win-crt-runtime-l1-1-0.dll",
"__sys_nerr": "api-ms-win-crt-runtime-l1-1-0.dll",
"__threadhandle": "api-ms-win-crt-runtime-l1-1-0.dll",
"__threadid": "api-ms-win-crt-runtime-l1-1-0.dll",
"__wcserror": "api-ms-win-crt-runtime-l1-1-0.dll",
"__wcserror_s": "api-ms-win-crt-runtime-l1-1-0.dll",
"_assert": "api-ms-win-crt-runtime-l1-1-0.dll",
"_beginthread": "api-ms-win-crt-runtime-l1-1-0.dll",
"_beginthreadex": "api-ms-win-crt-runtime-l1-1-0.dll",
"_c_exit": "api-ms-win-crt-runtime-l1-1-0.dll",
"_cexit": "api-ms-win-crt-runtime-l1-1-0.dll",
"_clearfp": "api-ms-win-crt-runtime-l1-1-0.dll",
"_configure_narrow_argv": "api-ms-win-crt-runtime-l1-1-0.dll",
"_configure_wide_argv": "api-ms-win-crt-runtime-l1-1-0.dll",
"_control87": "api-ms-win-crt-runtime-l1-1-0.dll",
"_controlfp": "api-ms-win-crt-runtime-l1-1-0.dll",
"_controlfp_s": "api-ms-win-crt-runtime-l1-1-0.dll",
"_crt_at_quick_exit": "api-ms-win-crt-runtime-l1-1-0.dll",
"_crt_atexit": "api-ms-win-crt-runtime-l1-1-0.dll",
"_endthread": "api-ms-win-crt-runtime-l1-1-0.dll",
"_endthreadex": "api-ms-win-crt-runtime-l1-1-0.dll",
"_errno": "api-ms-win-crt-runtime-l1-1-0.dll",
"_execute_onexit_table": "api-ms-win-crt-runtime-l1-1-0.dll",
"_exit": "api-ms-win-crt-runtime-l1-1-0.dll",
"_fpieee_flt": "api-ms-win-crt-runtime-l1-1-0.dll",
"_fpreset": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_doserrno": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_errno": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_initial_narrow_environment": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_initial_wide_environment": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_invalid_parameter_handler": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_narrow_winmain_command_line": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_pgmptr": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_terminate": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_thread_local_invalid_parameter_handler": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_wide_winmain_command_line": "api-ms-win-crt-runtime-l1-1-0.dll",
"_get_wpgmptr": "api-ms-win-crt-runtime-l1-1-0.dll",
"_getdllprocaddr": "api-ms-win-crt-runtime-l1-1-0.dll",
"_getpid": "api-ms-win-crt-runtime-l1-1-0.dll",
"_initialize_narrow_environment": "api-ms-win-crt-runtime-l1-1-0.dll",
"_initialize_onexit_table": "api-ms-win-crt-runtime-l1-1-0.dll",
"_initialize_wide_environment": "api-ms-win-crt-runtime-l1-1-0.dll",
"_initterm": "api-ms-win-crt-runtime-l1-1-0.dll",
"_initterm_e": "api-ms-win-crt-runtime-l1-1-0.dll",
"_invalid_parameter_noinfo": "api-ms-win-crt-runtime-l1-1-0.dll",
"_invalid_parameter_noinfo_noreturn": "api-ms-win-crt-runtime-l1-1-0.dll",
"_invoke_watson": "api-ms-win-crt-runtime-l1-1-0.dll",
"_query_app_type": "api-ms-win-crt-runtime-l1-1-0.dll",
"_register_onexit_function": "api-ms-win-crt-runtime-l1-1-0.dll",
"_register_thread_local_exe_atexit_callback": "api-ms-win-crt-runtime-l1-1-0.dll",
"_resetstkoflw": "api-ms-win-crt-runtime-l1-1-0.dll",
"_seh_filter_dll": "api-ms-win-crt-runtime-l1-1-0.dll",
"_seh_filter_exe": "api-ms-win-crt-runtime-l1-1-0.dll",
"_set_abort_behavior": "api-ms-win-crt-runtime-l1-1-0.dll",
"_set_app_type": "api-ms-win-crt-runtime-l1-1-0.dll",
"_set_controlfp": "api-ms-win-crt-runtime-l1-1-0.dll",
"_set_doserrno": "api-ms-win-crt-runtime-l1-1-0.dll",
"_set_errno": "api-ms-win-crt-runtime-l1-1-0.dll",
"_set_error_mode": "api-ms-win-crt-runtime-l1-1-0.dll",
"_set_invalid_parameter_handler": "api-ms-win-crt-runtime-l1-1-0.dll",
"_set_new_handler": "api-ms-win-crt-runtime-l1-1-0.dll",
"_set_thread_local_invalid_parameter_handler": "api-ms-win-crt-runtime-l1-1-0.dll",
"_seterrormode": "api-ms-win-crt-runtime-l1-1-0.dll",
"_sleep": "api-ms-win-crt-runtime-l1-1-0.dll",
"_statusfp": "api-ms-win-crt-runtime-l1-1-0.dll",
"_strerror": "api-ms-win-crt-runtime-l1-1-0.dll",
"_strerror_s": "api-ms-win-crt-runtime-l1-1-0.dll",
"_wassert": "api-ms-win-crt-runtime-l1-1-0.dll",
"_wcserror": "api-ms-win-crt-runtime-l1-1-0.dll",
"_wcserror_s": "api-ms-win-crt-runtime-l1-1-0.dll",
"_wperror": "api-ms-win-crt-runtime-l1-1-0.dll",
"_wsystem": "api-ms-win-crt-runtime-l1-1-0.dll",
"abort": "api-ms-win-crt-runtime-l1-1-0.dll",
"exit": "api-ms-win-crt-runtime-l1-1-0.dll",
"feclearexcept": "api-ms-win-crt-runtime-l1-1-0.dll",
"fegetenv": "api-ms-win-crt-runtime-l1-1-0.dll",
"fegetexceptflag": "api-ms-win-crt-runtime-l1-1-0.dll",
"fegetround": "api-ms-win-crt-runtime-l1-1-0.dll",
"feholdexcept": "api-ms-win-crt-runtime-l1-1-0.dll",
"fesetenv": "api-ms-win-crt-runtime-l1-1-0.dll",
"fesetexceptflag": "api-ms-win-crt-runtime-l1-1-0.dll",
"fesetround": "api-ms-win-crt-runtime-l1-1-0.dll",
"fetestexcept": "api-ms-win-crt-runtime-l1-1-0.dll",
"perror": "api-ms-win-crt-runtime-l1-1-0.dll",
"quick_exit": "api-ms-win-crt-runtime-l1-1-0.dll",
"raise": "api-ms-win-crt-runtime-l1-1-0.dll",
"set_terminate": "api-ms-win-crt-runtime-l1-1-0.dll",
"signal": "api-ms-win-crt-runtime-l1-1-0.dll",
"strerror": "api-ms-win-crt-runtime-l1-1-0.dll",
"strerror_s": "api-ms-win-crt-runtime-l1-1-0.dll",
"system": "api-ms-win-crt-runtime-l1-1-0.dll",
"terminate": "api-ms-win-crt-runtime-l1-1-0.dll",
"__acrt_iob_func": "api-ms-win-crt-stdio-l1-1-0.dll",
"__p__commode": "api-ms-win-crt-stdio-l1-1-0.dll",
"__p__fmode": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vfprintf": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vfprintf_p": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vfprintf_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vfscanf": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vfwprintf": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vfwprintf_p": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vfwprintf_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vfwscanf": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vsnprintf_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vsnwprintf_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vsprintf": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vsprintf_p": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vsprintf_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vsscanf": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vswprintf": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vswprintf_p": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vswprintf_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"__stdio_common_vswscanf": "api-ms-win-crt-stdio-l1-1-0.dll",
"_chsize": "api-ms-win-crt-stdio-l1-1-0.dll",
"_chsize_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"_close": "api-ms-win-crt-stdio-l1-1-0.dll",
"_commit": "api-ms-win-crt-stdio-l1-1-0.dll",
"_creat": "api-ms-win-crt-stdio-l1-1-0.dll",
"_dup": "api-ms-win-crt-stdio-l1-1-0.dll",
"_dup2": "api-ms-win-crt-stdio-l1-1-0.dll",
"_eof": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fclose_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fcloseall": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fflush_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fgetc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fgetchar": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fgetwc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fgetwchar": "api-ms-win-crt-stdio-l1-1-0.dll",
"_filelength": "api-ms-win-crt-stdio-l1-1-0.dll",
"_filelengthi64": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fileno": "api-ms-win-crt-stdio-l1-1-0.dll",
"_flushall": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fputc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fputchar": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fputwc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fputwchar": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fread_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fread_nolock_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fseek_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fseeki64": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fseeki64_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fsopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_ftell_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_ftelli64": "api-ms-win-crt-stdio-l1-1-0.dll",
"_ftelli64_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_fwrite_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_get_fmode": "api-ms-win-crt-stdio-l1-1-0.dll",
"_get_osfhandle": "api-ms-win-crt-stdio-l1-1-0.dll",
"_get_printf_count_output": "api-ms-win-crt-stdio-l1-1-0.dll",
"_get_stream_buffer_pointers": "api-ms-win-crt-stdio-l1-1-0.dll",
"_getc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_getcwd": "api-ms-win-crt-stdio-l1-1-0.dll",
"_getdcwd": "api-ms-win-crt-stdio-l1-1-0.dll",
"_getmaxstdio": "api-ms-win-crt-stdio-l1-1-0.dll",
"_getw": "api-ms-win-crt-stdio-l1-1-0.dll",
"_getwc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_getws": "api-ms-win-crt-stdio-l1-1-0.dll",
"_getws_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"_isatty": "api-ms-win-crt-stdio-l1-1-0.dll",
"_kbhit": "api-ms-win-crt-stdio-l1-1-0.dll",
"_locking": "api-ms-win-crt-stdio-l1-1-0.dll",
"_lseek": "api-ms-win-crt-stdio-l1-1-0.dll",
"_lseeki64": "api-ms-win-crt-stdio-l1-1-0.dll",
"_mktemp": "api-ms-win-crt-stdio-l1-1-0.dll",
"_mktemp_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"_open": "api-ms-win-crt-stdio-l1-1-0.dll",
"_open_osfhandle": "api-ms-win-crt-stdio-l1-1-0.dll",
"_pclose": "api-ms-win-crt-stdio-l1-1-0.dll",
"_pipe": "api-ms-win-crt-stdio-l1-1-0.dll",
"_popen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_putc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_putw": "api-ms-win-crt-stdio-l1-1-0.dll",
"_putwc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_putws": "api-ms-win-crt-stdio-l1-1-0.dll",
"_read": "api-ms-win-crt-stdio-l1-1-0.dll",
"_rmtmp": "api-ms-win-crt-stdio-l1-1-0.dll",
"_set_fmode": "api-ms-win-crt-stdio-l1-1-0.dll",
"_set_printf_count_output": "api-ms-win-crt-stdio-l1-1-0.dll",
"_setmaxstdio": "api-ms-win-crt-stdio-l1-1-0.dll",
"_setmode": "api-ms-win-crt-stdio-l1-1-0.dll",
"_sopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_sopen_dispatch": "api-ms-win-crt-stdio-l1-1-0.dll",
"_sopen_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"_tell": "api-ms-win-crt-stdio-l1-1-0.dll",
"_telli64": "api-ms-win-crt-stdio-l1-1-0.dll",
"_tempnam": "api-ms-win-crt-stdio-l1-1-0.dll",
"_ungetc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_ungetwc_nolock": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wcreat": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wfdopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wfopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wfopen_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wfreopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wfreopen_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wfsopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wmktemp": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wmktemp_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wpopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_write": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wsopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wsopen_dispatch": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wsopen_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wtempnam": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wtmpnam": "api-ms-win-crt-stdio-l1-1-0.dll",
"_wtmpnam_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"clearerr": "api-ms-win-crt-stdio-l1-1-0.dll",
"clearerr_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"fclose": "api-ms-win-crt-stdio-l1-1-0.dll",
"feof": "api-ms-win-crt-stdio-l1-1-0.dll",
"ferror": "api-ms-win-crt-stdio-l1-1-0.dll",
"fflush": "api-ms-win-crt-stdio-l1-1-0.dll",
"fgetc": "api-ms-win-crt-stdio-l1-1-0.dll",
"fgetpos": "api-ms-win-crt-stdio-l1-1-0.dll",
"fgets": "api-ms-win-crt-stdio-l1-1-0.dll",
"fgetwc": "api-ms-win-crt-stdio-l1-1-0.dll",
"fgetws": "api-ms-win-crt-stdio-l1-1-0.dll",
"fopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"fopen_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"fputc": "api-ms-win-crt-stdio-l1-1-0.dll",
"fputs": "api-ms-win-crt-stdio-l1-1-0.dll",
"fputwc": "api-ms-win-crt-stdio-l1-1-0.dll",
"fputws": "api-ms-win-crt-stdio-l1-1-0.dll",
"fread": "api-ms-win-crt-stdio-l1-1-0.dll",
"fread_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"freopen": "api-ms-win-crt-stdio-l1-1-0.dll",
"freopen_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"fseek": "api-ms-win-crt-stdio-l1-1-0.dll",
"fsetpos": "api-ms-win-crt-stdio-l1-1-0.dll",
"ftell": "api-ms-win-crt-stdio-l1-1-0.dll",
"fwrite": "api-ms-win-crt-stdio-l1-1-0.dll",
"getc": "api-ms-win-crt-stdio-l1-1-0.dll",
"getchar": "api-ms-win-crt-stdio-l1-1-0.dll",
"gets": "api-ms-win-crt-stdio-l1-1-0.dll",
"gets_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"getwc": "api-ms-win-crt-stdio-l1-1-0.dll",
"getwchar": "api-ms-win-crt-stdio-l1-1-0.dll",
"putc": "api-ms-win-crt-stdio-l1-1-0.dll",
"putchar": "api-ms-win-crt-stdio-l1-1-0.dll",
"puts": "api-ms-win-crt-stdio-l1-1-0.dll",
"putwc": "api-ms-win-crt-stdio-l1-1-0.dll",
"putwchar": "api-ms-win-crt-stdio-l1-1-0.dll",
"rewind": "api-ms-win-crt-stdio-l1-1-0.dll",
"setbuf": "api-ms-win-crt-stdio-l1-1-0.dll",
"setvbuf": "api-ms-win-crt-stdio-l1-1-0.dll",
"tmpfile": "api-ms-win-crt-stdio-l1-1-0.dll",
"tmpfile_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"tmpnam": "api-ms-win-crt-stdio-l1-1-0.dll",
"tmpnam_s": "api-ms-win-crt-stdio-l1-1-0.dll",
"ungetc": "api-ms-win-crt-stdio-l1-1-0.dll",
"ungetwc": "api-ms-win-crt-stdio-l1-1-0.dll",
"__isascii": "api-ms-win-crt-string-l1-1-0.dll",
"__iscsym": "api-ms-win-crt-string-l1-1-0.dll",
"__iscsymf": "api-ms-win-crt-string-l1-1-0.dll",
"__iswcsym": "api-ms-win-crt-string-l1-1-0.dll",
"__iswcsymf": "api-ms-win-crt-string-l1-1-0.dll",
"__strncnt": "api-ms-win-crt-string-l1-1-0.dll",
"__wcsncnt": "api-ms-win-crt-string-l1-1-0.dll",
"_isalnum_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isalpha_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isblank_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iscntrl_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isctype": "api-ms-win-crt-string-l1-1-0.dll",
"_isctype_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isdigit_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isgraph_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isleadbyte_l": "api-ms-win-crt-string-l1-1-0.dll",
"_islower_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isprint_l": "api-ms-win-crt-string-l1-1-0.dll",
"_ispunct_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isspace_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isupper_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswalnum_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswalpha_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswblank_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswcntrl_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswcsym_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswcsymf_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswctype_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswdigit_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswgraph_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswlower_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswprint_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswpunct_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswspace_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswupper_l": "api-ms-win-crt-string-l1-1-0.dll",
"_iswxdigit_l": "api-ms-win-crt-string-l1-1-0.dll",
"_isxdigit_l": "api-ms-win-crt-string-l1-1-0.dll",
"_memccpy": "api-ms-win-crt-string-l1-1-0.dll",
"_memicmp": "api-ms-win-crt-string-l1-1-0.dll",
"_memicmp_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strcoll_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strdup": "api-ms-win-crt-string-l1-1-0.dll",
"_stricmp": "api-ms-win-crt-string-l1-1-0.dll",
"_stricmp_l": "api-ms-win-crt-string-l1-1-0.dll",
"_stricoll": "api-ms-win-crt-string-l1-1-0.dll",
"_stricoll_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strlwr": "api-ms-win-crt-string-l1-1-0.dll",
"_strlwr_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strlwr_s": "api-ms-win-crt-string-l1-1-0.dll",
"_strlwr_s_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strncoll": "api-ms-win-crt-string-l1-1-0.dll",
"_strncoll_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strnicmp": "api-ms-win-crt-string-l1-1-0.dll",
"_strnicmp_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strnicoll": "api-ms-win-crt-string-l1-1-0.dll",
"_strnicoll_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strnset": "api-ms-win-crt-string-l1-1-0.dll",
"_strnset_s": "api-ms-win-crt-string-l1-1-0.dll",
"_strrev": "api-ms-win-crt-string-l1-1-0.dll",
"_strset": "api-ms-win-crt-string-l1-1-0.dll",
"_strset_s": "api-ms-win-crt-string-l1-1-0.dll",
"_strupr": "api-ms-win-crt-string-l1-1-0.dll",
"_strupr_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strupr_s": "api-ms-win-crt-string-l1-1-0.dll",
"_strupr_s_l": "api-ms-win-crt-string-l1-1-0.dll",
"_strxfrm_l": "api-ms-win-crt-string-l1-1-0.dll",
"_tolower": "api-ms-win-crt-string-l1-1-0.dll",
"_tolower_l": "api-ms-win-crt-string-l1-1-0.dll",
"_toupper": "api-ms-win-crt-string-l1-1-0.dll",
"_toupper_l": "api-ms-win-crt-string-l1-1-0.dll",
"_towlower_l": "api-ms-win-crt-string-l1-1-0.dll",
"_towupper_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcscoll_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsdup": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsicmp": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsicmp_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsicoll": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsicoll_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcslwr": "api-ms-win-crt-string-l1-1-0.dll",
"_wcslwr_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcslwr_s": "api-ms-win-crt-string-l1-1-0.dll",
"_wcslwr_s_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsncoll": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsncoll_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsnicmp": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsnicmp_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsnicoll": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsnicoll_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsnset": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsnset_s": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsrev": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsset": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsset_s": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsupr": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsupr_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsupr_s": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsupr_s_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wcsxfrm_l": "api-ms-win-crt-string-l1-1-0.dll",
"_wctype": "api-ms-win-crt-string-l1-1-0.dll",
"is_wctype": "api-ms-win-crt-string-l1-1-0.dll",
"isalnum": "api-ms-win-crt-string-l1-1-0.dll",
"isalpha": "api-ms-win-crt-string-l1-1-0.dll",
"isblank": "api-ms-win-crt-string-l1-1-0.dll",
"iscntrl": "api-ms-win-crt-string-l1-1-0.dll",
"isdigit": "api-ms-win-crt-string-l1-1-0.dll",
"isgraph": "api-ms-win-crt-string-l1-1-0.dll",
"isleadbyte": "api-ms-win-crt-string-l1-1-0.dll",
"islower": "api-ms-win-crt-string-l1-1-0.dll",
"isprint": "api-ms-win-crt-string-l1-1-0.dll",
"ispunct": "api-ms-win-crt-string-l1-1-0.dll",
"isspace": "api-ms-win-crt-string-l1-1-0.dll",
"isupper": "api-ms-win-crt-string-l1-1-0.dll",
"iswalnum": "api-ms-win-crt-string-l1-1-0.dll",
"iswalpha": "api-ms-win-crt-string-l1-1-0.dll",
"iswascii": "api-ms-win-crt-string-l1-1-0.dll",
"iswblank": "api-ms-win-crt-string-l1-1-0.dll",
"iswcntrl": "api-ms-win-crt-string-l1-1-0.dll",
"iswctype": "api-ms-win-crt-string-l1-1-0.dll",
"iswdigit": "api-ms-win-crt-string-l1-1-0.dll",
"iswgraph": "api-ms-win-crt-string-l1-1-0.dll",
"iswlower": "api-ms-win-crt-string-l1-1-0.dll",
"iswprint": "api-ms-win-crt-string-l1-1-0.dll",
"iswpunct": "api-ms-win-crt-string-l1-1-0.dll",
"iswspace": "api-ms-win-crt-string-l1-1-0.dll",
"iswupper": "api-ms-win-crt-string-l1-1-0.dll",
"iswxdigit": "api-ms-win-crt-string-l1-1-0.dll",
"isxdigit": "api-ms-win-crt-string-l1-1-0.dll",
"mblen": "api-ms-win-crt-string-l1-1-0.dll",
"mbrlen": "api-ms-win-crt-string-l1-1-0.dll",
"memcpy_s": "api-ms-win-crt-string-l1-1-0.dll",
"memmove_s": "api-ms-win-crt-string-l1-1-0.dll",
"memset": "api-ms-win-crt-string-l1-1-0.dll",
"strcat": "api-ms-win-crt-string-l1-1-0.dll",
"strcat_s": "api-ms-win-crt-string-l1-1-0.dll",
"strcmp": "api-ms-win-crt-string-l1-1-0.dll",
"strcoll": "api-ms-win-crt-string-l1-1-0.dll",
"strcpy": "api-ms-win-crt-string-l1-1-0.dll",
"strcpy_s": "api-ms-win-crt-string-l1-1-0.dll",
"strcspn": "api-ms-win-crt-string-l1-1-0.dll",
"strlen": "api-ms-win-crt-string-l1-1-0.dll",
"strncat": "api-ms-win-crt-string-l1-1-0.dll",
"strncat_s": "api-ms-win-crt-string-l1-1-0.dll",
"strncmp": "api-ms-win-crt-string-l1-1-0.dll",
"strncpy": "api-ms-win-crt-string-l1-1-0.dll",
"strncpy_s": "api-ms-win-crt-string-l1-1-0.dll",
"strnlen": "api-ms-win-crt-string-l1-1-0.dll",
"strpbrk": "api-ms-win-crt-string-l1-1-0.dll",
"strspn": "api-ms-win-crt-string-l1-1-0.dll",
"strtok": "api-ms-win-crt-string-l1-1-0.dll",
"strtok_s": "api-ms-win-crt-string-l1-1-0.dll",
"strxfrm": "api-ms-win-crt-string-l1-1-0.dll",
"tolower": "api-ms-win-crt-string-l1-1-0.dll",
"toupper": "api-ms-win-crt-string-l1-1-0.dll",
"towctrans": "api-ms-win-crt-string-l1-1-0.dll",
"towlower": "api-ms-win-crt-string-l1-1-0.dll",
"towupper": "api-ms-win-crt-string-l1-1-0.dll",
"wcscat": "api-ms-win-crt-string-l1-1-0.dll",
"wcscat_s": "api-ms-win-crt-string-l1-1-0.dll",
"wcscmp": "api-ms-win-crt-string-l1-1-0.dll",
"wcscoll": "api-ms-win-crt-string-l1-1-0.dll",
"wcscpy": "api-ms-win-crt-string-l1-1-0.dll",
"wcscpy_s": "api-ms-win-crt-string-l1-1-0.dll",
"wcscspn": "api-ms-win-crt-string-l1-1-0.dll",
"wcslen": "api-ms-win-crt-string-l1-1-0.dll",
"wcsncat": "api-ms-win-crt-string-l1-1-0.dll",
"wcsncat_s": "api-ms-win-crt-string-l1-1-0.dll",
"wcsncmp": "api-ms-win-crt-string-l1-1-0.dll",
"wcsncpy": "api-ms-win-crt-string-l1-1-0.dll",
"wcsncpy_s": "api-ms-win-crt-string-l1-1-0.dll",
"wcsnlen": "api-ms-win-crt-string-l1-1-0.dll",
"wcspbrk": "api-ms-win-crt-string-l1-1-0.dll",
"wcsspn": "api-ms-win-crt-string-l1-1-0.dll",
"wcstok": "api-ms-win-crt-string-l1-1-0.dll",
"wcstok_s": "api-ms-win-crt-string-l1-1-0.dll",
"wcsxfrm": "api-ms-win-crt-string-l1-1-0.dll",
"wctype": "api-ms-win-crt-string-l1-1-0.dll",
"wmemcpy_s": "api-ms-win-crt-string-l1-1-0.dll",
"wmemmove_s": "api-ms-win-crt-string-l1-1-0.dll",
"_Getdays": "api-ms-win-crt-time-l1-1-0.dll",
"_Getmonths": "api-ms-win-crt-time-l1-1-0.dll",
"_Gettnames": "api-ms-win-crt-time-l1-1-0.dll",
"_Strftime": "api-ms-win-crt-time-l1-1-0.dll",
"_W_Getdays": "api-ms-win-crt-time-l1-1-0.dll",
"_W_Getmonths": "api-ms-win-crt-time-l1-1-0.dll",
"_W_Gettnames": "api-ms-win-crt-time-l1-1-0.dll",
"_Wcsftime": "api-ms-win-crt-time-l1-1-0.dll",
"__daylight": "api-ms-win-crt-time-l1-1-0.dll",
"__dstbias": "api-ms-win-crt-time-l1-1-0.dll",
"__timezone": "api-ms-win-crt-time-l1-1-0.dll",
"__tzname": "api-ms-win-crt-time-l1-1-0.dll",
"_ctime32": "api-ms-win-crt-time-l1-1-0.dll",
"_ctime32_s": "api-ms-win-crt-time-l1-1-0.dll",
"_ctime64": "api-ms-win-crt-time-l1-1-0.dll",
"_ctime64_s": "api-ms-win-crt-time-l1-1-0.dll",
"_difftime32": "api-ms-win-crt-time-l1-1-0.dll",
"_difftime64": "api-ms-win-crt-time-l1-1-0.dll",
"_ftime32": "api-ms-win-crt-time-l1-1-0.dll",
"_ftime32_s": "api-ms-win-crt-time-l1-1-0.dll",
"_ftime64": "api-ms-win-crt-time-l1-1-0.dll",
"_ftime64_s": "api-ms-win-crt-time-l1-1-0.dll",
"_futime32": "api-ms-win-crt-time-l1-1-0.dll",
"_futime64": "api-ms-win-crt-time-l1-1-0.dll",
"_get_daylight": "api-ms-win-crt-time-l1-1-0.dll",
"_get_dstbias": "api-ms-win-crt-time-l1-1-0.dll",
"_get_timezone": "api-ms-win-crt-time-l1-1-0.dll",
"_get_tzname": "api-ms-win-crt-time-l1-1-0.dll",
"_getsystime": "api-ms-win-crt-time-l1-1-0.dll",
"_gmtime32": "api-ms-win-crt-time-l1-1-0.dll",
"_gmtime32_s": "api-ms-win-crt-time-l1-1-0.dll",
"_gmtime64": "api-ms-win-crt-time-l1-1-0.dll",
"_gmtime64_s": "api-ms-win-crt-time-l1-1-0.dll",
"_localtime32": "api-ms-win-crt-time-l1-1-0.dll",
"_localtime32_s": "api-ms-win-crt-time-l1-1-0.dll",
"_localtime64": "api-ms-win-crt-time-l1-1-0.dll",
"_localtime64_s": "api-ms-win-crt-time-l1-1-0.dll",
"_mkgmtime32": "api-ms-win-crt-time-l1-1-0.dll",
"_mkgmtime64": "api-ms-win-crt-time-l1-1-0.dll",
"_mktime32": "api-ms-win-crt-time-l1-1-0.dll",
"_mktime64": "api-ms-win-crt-time-l1-1-0.dll",
"_setsystime": "api-ms-win-crt-time-l1-1-0.dll",
"_strdate": "api-ms-win-crt-time-l1-1-0.dll",
"_strdate_s": "api-ms-win-crt-time-l1-1-0.dll",
"_strftime_l": "api-ms-win-crt-time-l1-1-0.dll",
"_strtime": "api-ms-win-crt-time-l1-1-0.dll",
"_strtime_s": "api-ms-win-crt-time-l1-1-0.dll",
"_time32": "api-ms-win-crt-time-l1-1-0.dll",
"_time64": "api-ms-win-crt-time-l1-1-0.dll",
"_timespec32_get": "api-ms-win-crt-time-l1-1-0.dll",
"_timespec64_get": "api-ms-win-crt-time-l1-1-0.dll",
"_tzset": "api-ms-win-crt-time-l1-1-0.dll",
"_utime32": "api-ms-win-crt-time-l1-1-0.dll",
"_utime64": "api-ms-win-crt-time-l1-1-0.dll",
"_wasctime": "api-ms-win-crt-time-l1-1-0.dll",
"_wasctime_s": "api-ms-win-crt-time-l1-1-0.dll",
"_wcsftime_l": "api-ms-win-crt-time-l1-1-0.dll",
"_wctime32": "api-ms-win-crt-time-l1-1-0.dll",
"_wctime32_s": "api-ms-win-crt-time-l1-1-0.dll",
"_wctime64": "api-ms-win-crt-time-l1-1-0.dll",
"_wctime64_s": "api-ms-win-crt-time-l1-1-0.dll",
"_wstrdate": "api-ms-win-crt-time-l1-1-0.dll",
"_wstrdate_s": "api-ms-win-crt-time-l1-1-0.dll",
"_wstrtime": "api-ms-win-crt-time-l1-1-0.dll",
"_wstrtime_s": "api-ms-win-crt-time-l1-1-0.dll",
"_wutime32": "api-ms-win-crt-time-l1-1-0.dll",
"_wutime64": "api-ms-win-crt-time-l1-1-0.dll",
"asctime": "api-ms-win-crt-time-l1-1-0.dll",
"asctime_s": "api-ms-win-crt-time-l1-1-0.dll",
"clock": "api-ms-win-crt-time-l1-1-0.dll",
"strftime": "api-ms-win-crt-time-l1-1-0.dll",
"wcsftime": "api-ms-win-crt-time-l1-1-0.dll",
"_abs64": "api-ms-win-crt-utility-l1-1-0.dll",
"_byteswap_uint64": "api-ms-win-crt-utility-l1-1-0.dll",
"_byteswap_ulong": "api-ms-win-crt-utility-l1-1-0.dll",
"_byteswap_ushort": "api-ms-win-crt-utility-l1-1-0.dll",
"_lfind": "api-ms-win-crt-utility-l1-1-0.dll",
"_lfind_s": "api-ms-win-crt-utility-l1-1-0.dll",
"_lrotl": "api-ms-win-crt-utility-l1-1-0.dll",
"_lrotr": "api-ms-win-crt-utility-l1-1-0.dll",
"_lsearch": "api-ms-win-crt-utility-l1-1-0.dll",
"_lsearch_s": "api-ms-win-crt-utility-l1-1-0.dll",
"_rotl": "api-ms-win-crt-utility-l1-1-0.dll",
"_rotl64": "api-ms-win-crt-utility-l1-1-0.dll",
"_rotr": "api-ms-win-crt-utility-l1-1-0.dll",
"_rotr64": "api-ms-win-crt-utility-l1-1-0.dll",
"_swab": "api-ms-win-crt-utility-l1-1-0.dll",
"abs": "api-ms-win-crt-utility-l1-1-0.dll",
"bsearch": "api-ms-win-crt-utility-l1-1-0.dll",
"bsearch_s": "api-ms-win-crt-utility-l1-1-0.dll",
"div": "api-ms-win-crt-utility-l1-1-0.dll",
"imaxabs": "api-ms-win-crt-utility-l1-1-0.dll",
"imaxdiv": "api-ms-win-crt-utility-l1-1-0.dll",
"labs": "api-ms-win-crt-utility-l1-1-0.dll",
"ldiv": "api-ms-win-crt-utility-l1-1-0.dll",
"llabs": "api-ms-win-crt-utility-l1-1-0.dll",
"lldiv": "api-ms-win-crt-utility-l1-1-0.dll",
"qsort": "api-ms-win-crt-utility-l1-1-0.dll",
"qsort_s": "api-ms-win-crt-utility-l1-1-0.dll",
"rand": "api-ms-win-crt-utility-l1-1-0.dll",
"rand_s": "api-ms-win-crt-utility-l1-1-0.dll",
"srand": "api-ms-win-crt-utility-l1-1-0.dll",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment